<?xml version="1.0"?> <doc> <assembly> <name>DocumentFormat.OpenXml</name> </assembly> <members> <member name="T:DocumentFormat.OpenXml.AlternateContent"> <summary> class for mc:AlternateContent element of markup compatibility </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlCompositeElement"> <summary> Defines the OpenXmlCompositeElement - base class for composite elements. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlElement"> <summary> Defines the OpenXmlElement - base class for all elements in Open XML document. </summary> <remarks> Annotations will not be cloned when calling .Clone() and .CloneNode(bool) </remarks> <summary> Defines the OpenXmlElement - base class for all elements in Open XML document. </summary> <remarks> Annotations will not be cloned when calling .Clone() and .CloneNode(bool) </remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.#ctor"> <summary> Initializes a new instance of the OpenXmlElement. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.#ctor(System.String)"> <summary> Initializes a new instance of the OpenXmlElement. </summary> <param name="outerXml">The outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetAttribute(System.String,System.String)"> <summary> Gets a Open XML attribute with the specifed tag name and namespace URI. </summary> <param name="localName">The tag name.</param> <param name="namespaceUri">The namespace URI.</param> <returns>Returns a clone of the OpenXmlAttribute which local name is "localName" and namespace URI is "namespaceUri".</returns> <exception cref="T:System.ArgumentOutOfRangeException">When the "localName" is emtpy.</exception> <exception cref="T:System.Collections.Generic.KeyNotFoundException">When the element does not have the specifed attribute.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetAttributes"> <summary> Get a copy of all the attributes </summary> <returns>A copy of the attributes list. Return empty list if there is no attributes.</returns> <remarks>The returned list is a copy, non-live.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetAttributes(System.Collections.Generic.ICollection{DocumentFormat.OpenXml.OpenXmlAttribute})"> <summary> Get a copy of all the attributes </summary> <param name="attributes">The collectino to hold the copy of the attributes.</param> <remarks>The returned list is a copy, non-live.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.SetAttribute(DocumentFormat.OpenXml.OpenXmlAttribute)"> <summary> Set an attribute to the element. If the attribute is a known attribute, the value of the attribute is set. If the attribute is an extended attribute, the 'openxmlAttribute' is added to the extended attributes list. </summary> <param name="openXmlAttribute">The attribute to be set on the element.</param> <exception cref="T:System.ArgumentNullException">Thrown when the LocalName of the "openxmlAttribute" parameter is null or empty.</exception> <exception cref="T:System.InvalidOperationException">Thrown when attempting to set a namespace declaration.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.RemoveAttribute(System.String,System.String)"> <summary> Remove the attribute from the element. </summary> <param name="localName">The local name of the attribute.</param> <param name="namespaceUri">The namesapce URI of the attribute.</param> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the localName is empty.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.SetAttributes(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute})"> <summary> Set a bunch of attributes to the element. If a attribute is a known attribute, the value of the attribute is set. If a attribute is an extended attribute, the 'openxmlAttribute' is added to the extended attributes list. </summary> <param name="openXmlAttributes">The attributes to be set on the element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.ClearAllAttributes"> <summary> Clear all the attributes ( known attributes + extended attributes ) </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.AddNamespaceDeclaration(System.String,System.String)"> <summary> Adds a namepace declaration to the current node. </summary> <param name="prefix">The Prefix</param> <param name="uri">The Uri</param> <exception cref="T:System.InvalidOperationException">Thrown if the prefix is already used in the current node.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.RemoveNamespaceDeclaration(System.String)"> <summary> Removes namespace declaration for a specific prefix. do nothing if the prefix is not existed. </summary> <param name="prefix"></param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetFirstChild``1"> <summary> Find the first child element in type T </summary> <typeparam name="T">Type of element</typeparam> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.PreviousSibling"> <summary> Gets the OpenXmlElement immediately preceding this OpenXmlElement. If there is no such preceding OpenXmlElement, a null reference (Nothing in Visual Basic) is returned. </summary> <returns>The OpenXmlElement immediately preceding this OpenXmlElement.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.PreviousSibling``1"> <summary> Gets the specified type OpenXmlElement preceding this OpenXmlElement. If there is no preceding OpenXmlElement, a null reference (Nothing in Visual Basic) is returned. </summary> <returns>The OpenXmlElement in the specified type preceding this OpenXmlElement.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.NextSibling"> <summary> Gets the OpenXmlElement immediately following this OpenXmlElement. If there is no next OpenXmlElement, a null reference (Nothing in Visual Basic) is returned. </summary> <returns>The OpenXmlElement immediately preceding this OpenXmlElement.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.NextSibling``1"> <summary> Gets the specified type OpenXmlElement following this OpenXmlElement. If there is no such following OpenXmlElement, a null reference (Nothing in Visual Basic) is returned. </summary> <returns>The OpenXmlElement in the specified type following this OpenXmlElement.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Ancestors"> <summary> Enumerate all the ancestor nodes of this element. </summary> <returns>An IEnumerable of OpenXmlElement of the ancestor elements of this element.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Ancestors``1"> <summary> Enumerate for specific type of elements in ancestor elements </summary> <typeparam name="T">Type of element.</typeparam> <returns>An IEnumerable of OpenXmlElement of the ancestor elements of this element.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Elements``1"> <summary> Enumerate for specific type of elements in child elements </summary> <typeparam name="T">Type of element.</typeparam> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Elements"> <summary> Enumerate all the child nodes of this element. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Descendants``1"> <summary> Enumerate all the descendants elements (which type is T) of this element. Preorder traversering. </summary> <typeparam name="T">Type of element.</typeparam> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Descendants"> <summary> Enumerate all the descendants elements of this element. Preorder traversering. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.ElementsBefore"> <summary> Enumerate all the sibling elements before this element in same parent. </summary> <returns>An IEnumerable of OpenXmlElement of all the sibling elements before this element in same parent.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.ElementsAfter"> <summary> Enumerate all the sibling elements after this element in same parent. </summary> <returns>An IEnumerable of OpenXmlElement of all the sibling elements after this element in same parent.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.CloneNode(System.Boolean)"> <summary> When overridden in a derived class, creates a duplicate of the node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>The cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.WriteTo(System.Xml.XmlWriter)"> <summary> Saves the current node to the specified XmlWriter. </summary> <param name="xmlWriter">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Append(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Adds the elements to the end of the list of child nodes, of this element. </summary> <param name="newChildren">The OpenXmlElement's to be appended.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Append(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Adds the elements to the end of the list of child nodes, of this element. </summary> <param name="newChildren">The OpenXmlElement's to be appended.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.AppendChild``1(``0)"> <summary> Adds the specified element to the end of the list of child nodes, of this element. </summary> <param name="newChild">The OpenXmlElement to append.</param> <returns>The OpenXmlElement being appended. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.InsertAfter``1(``0,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Inserts the specified element immediately after the specified reference element. </summary> <param name="newChild">The OpenXmlElement to insert.</param> <param name="refChild">The OpenXmlElement that is the reference node. The newChild is placed after the refChild. </param> <returns>The OpenXmlElement being inserted.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.InsertBefore``1(``0,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Inserts the specified element immediately before the specified reference element. </summary> <param name="newChild">The OpenXmlElement to insert.</param> <param name="refChild">The OpenXmlElement that is the reference node. The newChild is placed before this OpenXmlElement.</param> <returns>The OpenXmlElement being inserted.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.InsertAfterSelf``1(``0)"> <summary> Inserts the specified element immediately after this element. </summary> <param name="newElement">The new element to be inserted as a sibling.</param> <returns>The inserted element.</returns> <exception cref="T:System.ArgumentNullException">Thrown when the "newElement" parameter is a null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the parent is a null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.InsertBeforeSelf``1(``0)"> <summary> Inserts the specified element immediately before this element. </summary> <param name="newElement">The new element to be inserted as a sibling.</param> <returns>The inserted element.</returns> <exception cref="T:System.ArgumentNullException">Thrown when the "newElement" parameter is a null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the parent is a null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.InsertAt``1(``0,System.Int32)"> <summary> Inserts the specified element at the specified index in children. </summary> <param name="newChild">The OpenXmlElement to be inserted.</param> <param name="index">The zero-based index at which element should be inserted.</param> <returns>The OpenXmlElement being inserted.</returns> <remarks>No change if the (newChild == null). Just return null.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.PrependChild``1(``0)"> <summary> Adds the specified element to the beginning of the list of child nodes for this element. </summary> <param name="newChild">The OpenXmlElement to add.</param> <returns>The OpenXmlElement added.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.RemoveChild``1(``0)"> <summary> Removes specified child element. </summary> <param name="oldChild">The element being removed. </param> <returns>The element removed. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.ReplaceChild``1(DocumentFormat.OpenXml.OpenXmlElement,``0)"> <summary> Replaces the child OpenXmlElement oldChild with newChild OpenXmlElement. </summary> <param name="newChild">The new OpenXmlElement to put in the child list.</param> <param name="oldChild">The OpenXmlElement being replaced in the list.</param> <returns>The OpenXmlElement replaced.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.RemoveAllChildren"> <summary> Remove all the child elements. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.RemoveAllChildren``1"> <summary> Remove all the child elements which type is T. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Remove"> <summary> Removes this element from its parent. </summary> <exception cref="T:System.InvalidOperationException">Thrown when the parent is a null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.IsAfter(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Determines if the current element appears after a specified element in document order. </summary> <param name="element">The element to compare for order.</param> <returns>true if this element apperas after the specified element in document order; otherwise false.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.IsBefore(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Determines if the current element appears before a specified element in document order. </summary> <param name="element">The element to compare for order.</param> <returns>true if this element apperas before the specified element in document order; otherwise false.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetOrder(DocumentFormat.OpenXml.OpenXmlElement,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Get the order of the 2 elements in document order. </summary> <param name="element1">The first element.</param> <param name="element2">The second element to compare for order.</param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.WriteContentTo(System.Xml.XmlWriter)"> <summary> Saves all the children of the node to the specified XmlWriter. </summary> <param name="w">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.TrySetFixedAttribute(System.String,System.String,System.String)"> <summary> Try set the attribute to known attribute. </summary> <param name="localName"></param> <param name="namespaceUri"></param> <param name="value"></param> <returns>true if the attribute is a known attribute.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.PushMcContext(System.Xml.XmlReader)"> <summary> Read MC attributes from the xmlReader and than push MC Context on needed. This xmlReader will keeps on the element start after this method. </summary> <param name="xmlReader">This method screen all attribute from xmlReader, and then set the xmlReader back to the element start.</param> <returns>Returns true if a MCAttributes is pushed.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.CheckMustUnderstandAttr(System.Xml.XmlReader,DocumentFormat.OpenXml.MarkupCompatibilityAttributes,DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessSettings)"> <summary> if this is a normal node, check mustunderstand attr in loading time </summary> <param name="reader">The XmlReader.</param> <param name="mcAttributes">The MarkupCompatibilityAttributes.</param> <param name="mcSettings">The MarkupCompatibilityProcessSettings.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.CheckMustUnderstandAttr"> <summary> if this is a node in ACB, check mustunderstand after loaded </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. For strong typed element, the return value will be generated according to the schema. For OpenXmlUnknownElement element, always return false, no matter what the version is. For OpenXmlMiscNode element, always return true, no matter what the version is. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.AddAnnotation(System.Object)"> <summary> Adds an object to the annotation list of this OpenXmlElement. </summary> <param name="annotation">The annotation to add to this OpenXmlElement.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Annotation``1"> <summary> Get the first annotation object of the specified type from this OpenXmlElement. </summary> <typeparam name="T">The type of the annotation to retrieve.</typeparam> <returns>The first annotation object of the specified type.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Annotation(System.Type)"> <summary> Get the first annotation object of the specified type from this OpenXmlElement. </summary> <param name="type">The type of the annotation to retrieve.</param> <returns>The first annotation object of the specified type.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Annotations``1"> <summary> Gets a collection of annotations of the specified type for this OpenXmlElement. </summary> <typeparam name="T">The type of the annotations to retrieve.</typeparam> <returns>An IEnumerable(T) of object that contains the annotations for this OpenXmlElement.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Annotations(System.Type)"> <summary> Gets a collection of annotations of the specified type for this OpenXmlElement. </summary> <param name="type">The Type of the annotations to retrieve.</param> <returns>An IEnumerable(T) of object that contains the annotations for this OpenXmlElement.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.RemoveAnnotations``1"> <summary> Removes the annotations of the specified type from this OpenXmlElement. </summary> <typeparam name="T">The Type of the annotations to remove.</typeparam> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.RemoveAnnotations(System.Type)"> <summary> Removes the annotations of the specified type from this OpenXmlElement. </summary> <param name="type">The Type of the annotations to remove.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetEnumerator"> <summary> Returns an enumerator that iterates through the child collection. </summary> <returns>An IEnumerator object that can be used to iterate through the child collection. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.Clone"> <summary> Creates a duplicate of this node. </summary> <remarks> Cloning an OpenXmlNode copies all attributes and their values, including those generated by the XML processor to represent defaulted attributes. This method recursively clones the node and the subtree underneath it. Clone is equivalent to calling CloneNode(true). </remarks> <returns>The cloned node.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.IsXmlnsUri(System.String)"> <summary> Test whether the nsUri == @"http://www.w3.org/2000/xmlns/". </summary> <param name="nsUri">The nsUri to test.</param> <returns>True if nsUri == @"http://www.w3.org/2000/xmlns/".</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.IsKnownNamespace(System.String)"> <summary> Test whether the namespace is a known namespace. </summary> <param name="namespaceUri"></param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.IsKnownElement(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Return true when element is not OpenXmlUnknownElement and element is not OpenXmlMiscNode </summary> <param name="element"></param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.LoadMCAttribute(System.Xml.XmlReader)"> <summary> Load MC attributes from the xmlReader. This xmlReader will keeps on the element start after this method. </summary> <param name="xmlReader">This method screen all attribute from xmlReader, and then set the xmlReader back to the element start.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.AddMCAttributes(System.Collections.Generic.ICollection{DocumentFormat.OpenXml.OpenXmlAttribute})"> <summary> Add the MC attributes into the "attributes" collection. </summary> <param name="attributes"></param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetMCAttribute(System.String)"> <summary> Find the corresponding MC attribute from the attribute name. </summary> <param name="localName"></param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.LookupNamespace(System.String)"> <summary> Resolve the namespace prefix in the context of current node </summary> <param name="prefix">The prefix to be resolved</param> <returns>The resolved namespace. Null if the prefix cannot be resolved</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.LookupPrefix(System.String)"> <summary> Finds the corresponding prefix for a namespace uri in the current element scope. </summary> <param name="namespaceUri">The namespace uri.</param> <returns>The corresponding prefix. Null if not found.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetNextNonMiscElementSibling"> <summary> Returns the next sibling element which is not OpenXmlMiscNode. </summary> <returns>The next sibling element which is not OpenXmlMiscNode.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetFirstNonMiscElementChild"> <summary> Returns the first child element which is not OpenXmlMiscNode. </summary> <returns>The first child element which is not OpenXmlMiscNode.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElement.GetPartRootElement"> <summary> Gets the root element of this OpenXmlElement. </summary> <returns> The root element if the root element is OpenXmlPartRootElement. Returns self if this is an OpenXmlPartRootElement. Returns null if this element has no parent or the root element is not OpenXmlPartRootElement. </returns> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.next"> <summary> Next element in the linked list. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.XmlParsed"> <summary> True if the inner raw xml is parsed. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.RawOuterXml"> <summary> Raw OuterXml. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.FixedAttributesArray"> <summary> Array of fixed attributes (attributes defined in schema). The field data. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.Attributes"> <summary> Array of fixed attributes. The attributes will be parsed out if not yet. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.NamespaceId"> <summary> Namespace ID of this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.AttributeTagNames"> <summary> Tag names of attributes </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.AttributeNamespaceIds"> <summary> Namespace IDs of attributes </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.ElementTypeId"> <summary> The type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.OpenXmlElementContext"> <summary> Gets the OpenXmlEementContext. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.RootElementContext"> <summary> Gets the OpenXmlEementContext from root element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.FirstChild"> <summary> Gets the first child of the OpenXmlElement. If there is no such OpenXmlElement, a null reference (Nothing in Visual Basic) is returned. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.LastChild"> <summary> Gets the last child of the OpenXmlElement. If there is no such OpenXmlElement, a null reference (Nothing in Visual Basic) is returned. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.HasAttributes"> <summary> Gets a boolean value indicating whether the current element has any attributes. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.ExtendedAttributes"> <summary> Gets all extended attributes (attributes not defined in schema) of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.HasChildren"> <summary> Gets a value indicating whether this element has any child elements. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.ChildElements"> <summary> Gets all the child nodes of this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.Parent"> <summary> Gets the parent of this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.NamespaceUri"> <summary> Gets the namespace URI of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.LocalName"> <summary> Gets the local name of the node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.Prefix"> <summary> Gets the namespace prefix of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.NamespaceDeclarations"> <summary> Gets all the namespace declarations defined in the current element. Return an empty enumerator if there is no namespace declaration. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.XmlQualifiedName"> <summary> Gets the qualified name of the node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.InnerText"> <summary> Gets the concatenated values of the node and all its children. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.InnerXml"> <summary> Gets or sets the markup representing only the child nodes of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.OuterXml"> <summary> Gets the markup representing this element and all its child elements. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElement.MCAttributes"> <summary> Markup Compatibility Attributes Set. Return null if there is no Markup Compatibility Attribute defined in this element. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.#ctor"> <summary> Initializes a new instance of the OpenXmlCompositeElement. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.#ctor(System.String)"> <summary> Initializes a new instance of the OpenXmlCompositeElement. </summary> <param name="outerXml">The outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.#ctor(System.Collections.IEnumerable)"> <summary> Initializes a new instance of the OpenXmlCompositeElement. </summary> <param name="childrenElements">Elements to be the children of the new element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OpenXmlCompositeElement. </summary> <param name="childrenElements">Elements to be the children of the new element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OpenXmlCompositeElement. </summary> <param name="childrenElements">Elements to be the children of the new element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.AppendChild``1(``0)"> <summary> Adds the specified element to the end of the list of child nodes, of this element. </summary> <param name="newChild">The OpenXmlElement to append.</param> <returns>The OpenXmlElement being appended. </returns> <remarks>No change if the (newChild == null). Just return null.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.InsertAfter``1(``0,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Inserts the specified element immediately after the specified reference element. </summary> <param name="newChild">The OpenXmlElement to insert.</param> <param name="refChild">The OpenXmlElement that is the reference node. The newChild is placed after the refChild. </param> <returns>The OpenXmlElement being inserted.</returns> <remarks>No change if the (newChild == null). Just return null.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.InsertBefore``1(``0,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Inserts the specified element immediately before the specified reference element. </summary> <param name="newChild">The OpenXmlElement to insert.</param> <param name="refChild">The OpenXmlElement that is the reference node. The newChild is placed before this OpenXmlElement.</param> <returns>The OpenXmlElement being inserted.</returns> <remarks>No change if the (newChild == null). Just return null.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.InsertAt``1(``0,System.Int32)"> <summary> Inserts the specified element at the specified index in children. </summary> <param name="newChild">The OpenXmlElement to be inserted.</param> <param name="index">The zero-based index at which element should be inserted.</param> <returns>The OpenXmlElement being inserted.</returns> <remarks>No change if the (newChild == null). Just return null.</remarks> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when index is less than 0 or index is greater than the count of children.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.PrependChild``1(``0)"> <summary> Adds the specified element to the beginning of the list of child nodes for this element. </summary> <param name="newChild">The OpenXmlElement to add.</param> <returns>The OpenXmlElement added.</returns> <remarks>No change if the (newChild == null). Just return null.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.RemoveChild``1(``0)"> <summary> Removes specified child element. </summary> <param name="oldChild">The element being removed. </param> <returns>The element removed. </returns> <remarks>No change if the (newChild == null). Just return null.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.RemoveAllChildren"> <summary> Remove all the child elements </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.ReplaceChild``1(DocumentFormat.OpenXml.OpenXmlElement,``0)"> <summary> Replaces the child OpenXmlElement oldChild with newChild OpenXmlElement. </summary> <param name="newChild">The new OpenXmlElement to put in the child list.</param> <param name="oldChild">The OpenXmlElement being replaced in the list.</param> <returns>The OpenXmlElement replaced.</returns> <remarks>No change if the (newChild == null). Just return null.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.WriteContentTo(System.Xml.XmlWriter)"> <summary> Saves all the children of the node to the specified XmlWriter. </summary> <param name="w">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.ElementInsertingEvent(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Fire the ElementInserting Event. </summary> <param name="element">The OpenXmlElement to be inserted.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.ElementInsertedEvent(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Fire the ElementInserted Event. </summary> <param name="element">The OpenXmlElement be inserted.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.ElementRemovingEvent(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Fire the ElementRemoving Event. </summary> <param name="element">The OpenXmlElement to be removed.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.ElementRemovedEvent(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Fire the ElementRemoved Event. </summary> <param name="element">The OpenXmlElement be removed.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.Populate(System.Xml.XmlReader,DocumentFormat.OpenXml.OpenXmlLoadMode)"> <summary> Populate the xml into strong typed DOM tree. </summary> <param name="xmlReader">The XmlReader to read the xml content.</param> <param name="loadMode">The load mode - lazy or full.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlCompositeElement.GetElement``1(System.Int32)"> <summary> Get the child element by the sequence number. Sequence number are generated by code generator. </summary> <param name="sequenceNumber">The sequence number of the element.</param> <returns>The element. Null if not found.</returns> <remarks> May returns null if there are invalide children. </remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlCompositeElement.FirstChild"> <summary> Gets the first child of the OpenXmlElement. If there is no such OpenXmlElement, a null reference (Nothing in Visual Basic) is returned. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlCompositeElement.LastChild"> <summary> Gets the last child of the OpenXmlElement. If there is no such OpenXmlElement, a null reference (Nothing in Visual Basic) is returned. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlCompositeElement.HasChildren"> <summary> Gets a value indicating whether this element has any child elements. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlCompositeElement.InnerText"> <summary> Gets or sets the concatenated values of the node and all its children. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlCompositeElement.InnerXml"> <summary> Gets or sets the markup representing only the child nodes of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlCompositeElement.ElementTagNames"> <summary> Gets the tag names of children elements. </summary> <remarks> Will be overrided in generated classes. </remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlCompositeElement.ElementNamespaceIds"> <summary> Gets the Namespace IDs of children elements. </summary> <remarks> Will be overrided in generated classes. </remarks> </member> <member name="M:DocumentFormat.OpenXml.AlternateContent.#ctor"> <summary> default constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.AlternateContent.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> AlternateContent constructor </summary> <param name="childElements">All child elements</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContent.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> AlternateContent constructor </summary> <param name="childElements">All child elements</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContent.#ctor(System.String)"> <summary> AlternateContent constructor </summary> <param name="outerXml">The outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContent.AppendNewAlternateContentChoice"> <summary> Append a new child with type AlternateContentChoice to this element </summary> </member> <member name="M:DocumentFormat.OpenXml.AlternateContent.AppendNewAlternateContentFallback"> <summary> Append a new child with type AlternateContentFallback to this element </summary> </member> <member name="M:DocumentFormat.OpenXml.AlternateContent.CloneNode(System.Boolean)"> <summary> When overridden in a derived class, creates a duplicate of the node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>The cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.AlternateContent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. Always return true since AlternateContent is allowed in every version. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.AlternateContent.MarkupCompatibilityNamespace"> <summary> The namespace of markup compatibility "http://schemas.openxmlformats.org/markup-compatibility/2006" </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContent.MarkupCompatibilityNamespaceId"> <summary> The namespace ID of the markup compatibility namespace </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContent.TagName"> <summary> The tag name of the AlternateContent element </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContent.LocalName"> <summary> the local name of the element </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContent.ElementTypeId"> <summary> The type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.AlternateContentChoice"> <summary> AlternateContentChoice - class for "mc:Choice" in "mc:AlternateContent" </summary> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentChoice.#ctor"> <summary> default constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentChoice.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> AlternateContentChoice constructor </summary> <param name="childElements">All child elements</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentChoice.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> AlternateContentChoice constructor </summary> <param name="childElements">All child elements</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentChoice.#ctor(System.String)"> <summary> AlternateContentChoice constructor </summary> <param name="outerXml">The outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentChoice.CloneNode(System.Boolean)"> <summary> When overridden in a derived class, creates a duplicate of the node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>The cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentChoice.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. Always return true since AlternateContentFallback is allowed in every version. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.AlternateContentChoice.TagName"> <summary> The tag name of the Choice element </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContentChoice.LocalName"> <summary> the local name of the element </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContentChoice.Requires"> <summary> <para> Defines a whitespace-delimited list of namespace prefixes that identify the namespaces that a markup consumer needs to understand to select that Choice and process the content.</para> <para>Represents the attribte in schema: requires </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContentChoice.ElementTypeId"> <summary> The type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.AlternateContentFallback"> <summary> AlternateContentChoice - class for "mc:Fallback" in "mc:AlternateContent" </summary> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentFallback.#ctor"> <summary> default constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentFallback.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> AlternateContentFallback constructor </summary> <param name="childElements">All child elements</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentFallback.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> AlternateContentFallback constructor </summary> <param name="childElements">All child elements</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentFallback.#ctor(System.String)"> <summary> AlternateContentFallback constructor </summary> <param name="outerXml">The outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentFallback.CloneNode(System.Boolean)"> <summary> When overridden in a derived class, creates a duplicate of the node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>The cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.AlternateContentFallback.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. Always return true since AlternateContentFallback is allowed in every version. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.AlternateContentFallback.TagName"> <summary> The tag name of the Fallback element </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContentFallback.LocalName"> <summary> the local name of the element </summary> </member> <member name="P:DocumentFormat.OpenXml.AlternateContentFallback.ElementTypeId"> <summary> The type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.MarkupCompatibilityAttributes"> <summary> Defines the Markup Compatiblity Attributes. </summary> </member> <member name="P:DocumentFormat.OpenXml.MarkupCompatibilityAttributes.Ignorable"> <summary> Defines a whitespace-delimited list of namespace prefixes, where each namespace prefix identifies an ignorable namespace. </summary> </member> <member name="P:DocumentFormat.OpenXml.MarkupCompatibilityAttributes.ProcessContent"> <summary> Defines a whitespace-delimited list of element-qualified names identifying the expanded names of elements whose content shall be processed, even if the elements themselves are ignored </summary> </member> <member name="P:DocumentFormat.OpenXml.MarkupCompatibilityAttributes.PreserveElements"> <summary> Defines a whitespace-delimited list of element qualified names identifying the expanded names of elements that a markup producer suggests for preservation by markup editors, even if the elements themselves are ignored. </summary> </member> <member name="P:DocumentFormat.OpenXml.MarkupCompatibilityAttributes.PreserveAttributes"> <summary> Defines a whitespace-delimited list of attribute qualified names identifying the expanded names of attributes that a markup producer suggests for preservation by markup editors. </summary> </member> <member name="P:DocumentFormat.OpenXml.MarkupCompatibilityAttributes.MustUnderstand"> <summary> Defines a whitespace-delimited list of namespace prefixes identifying a set of namespace names. </summary> </member> <member name="M:DocumentFormat.OpenXml.MCContext.PushMCAttributes2(DocumentFormat.OpenXml.MarkupCompatibilityAttributes,DocumentFormat.OpenXml.MCContext.LookupNamespace)"> <summary> This method is for MC validation use. Only push Ignorable and ProcessContent </summary> <param name="attr"></param> <param name="lookupNamespaceDelegate"></param> </member> <member name="M:DocumentFormat.OpenXml.MCContext.PopMCAttributes2"> <summary> This method is for MC validation use. </summary> </member> <member name="M:DocumentFormat.OpenXml.MCContext.OnMcContextError(System.String)"> <summary> Be called in ParseIgnorable() and ParseProcessContent() </summary> <param name="value">The value in the attribute.</param> <returns>true to stop parsing, false to continue.</returns> </member> <member name="T:DocumentFormat.OpenXml.MCContext.OnInvalidValue"> <summary> Be called in ParseQNameList() and ParsePrefixList() </summary> <param name="value">The value in the attribute.</param> <returns>true to stop parsing, false to continue.</returns> </member> <member name="T:DocumentFormat.OpenXml.InvalidMCContentException"> <summary> InvalidMCContentException, exception class for Markup Compatibility content errors. </summary> </member> <member name="M:DocumentFormat.OpenXml.InvalidMCContentException.#ctor"> <summary> Initializes a new instance of the InvalidMCContentException class. </summary> </member> <member name="M:DocumentFormat.OpenXml.InvalidMCContentException.#ctor(System.String)"> <summary> Initializes a new instance of the InvalidMCContentException class with a specified error message. </summary> <param name="message">The message that describes the error. </param> </member> <member name="M:DocumentFormat.OpenXml.InvalidMCContentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the InvalidMCContentException class with serialized data. </summary> <param name="info">The SerializationInfo that holds the serialized object data about the exception being thrown.</param> <param name="context">The StreamingContext that contains contextual information about the source or destination.</param> </member> <member name="M:DocumentFormat.OpenXml.InvalidMCContentException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the InvalidMCContentException class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message">The error message that explains the reason for the exception.</param> <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param> </member> <member name="T:DocumentFormat.OpenXml.NamespaceNotUnderstandException"> <summary> InvalidMCContentException, exception class for Markup Compatibility content errors. </summary> </member> <member name="M:DocumentFormat.OpenXml.NamespaceNotUnderstandException.#ctor"> <summary> Initializes a new instance of the InvalidMCContentException class. </summary> </member> <member name="M:DocumentFormat.OpenXml.NamespaceNotUnderstandException.#ctor(System.String)"> <summary> Initializes a new instance of the InvalidMCContentException class with a specified error message. </summary> <param name="message">The message that describes the error. </param> </member> <member name="M:DocumentFormat.OpenXml.NamespaceNotUnderstandException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the InvalidMCContentException class with serialized data. </summary> <param name="info">The SerializationInfo that holds the serialized object data about the exception being thrown.</param> <param name="context">The StreamingContext that contains contextual information about the source or destination.</param> </member> <member name="M:DocumentFormat.OpenXml.NamespaceNotUnderstandException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the InvalidMCContentException class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message">The error message that explains the reason for the exception.</param> <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param> </member> <member name="T:DocumentFormat.OpenXml.FileFormatVersions"> <summary> The Open XML format. </summary> </member> <member name="F:DocumentFormat.OpenXml.FileFormatVersions.None"> <summary> Invalid value and it will cause exception </summary> </member> <member name="F:DocumentFormat.OpenXml.FileFormatVersions.Office2007"> <summary> Microsoft Office 2007 </summary> </member> <member name="F:DocumentFormat.OpenXml.FileFormatVersions.Office2010"> <summary> Microsoft Office 2010 </summary> </member> <member name="M:DocumentFormat.OpenXml.FileFormatExtension.Includes(DocumentFormat.OpenXml.FileFormatVersions,DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Test whether the source FileForamt includes the target FileFormatVersions. </summary> <param name="source">The source FileFormatVersions to be tested.</param> <param name="target">The target FileFormatVersions be tested against.</param> <returns>Returns true when (source & target) == target.</returns> </member> <member name="M:DocumentFormat.OpenXml.FileFormatExtension.ThrowExceptionIfNot2007Or2010(DocumentFormat.OpenXml.FileFormatVersions,System.String)"> <summary> Throw ArgumentOutOfRangeException if the specified FileFormatVersions is not Office2007 or Office2010. </summary> <param name="fileFormat">The specified FileFormatVersions.</param> <param name="parameterName">The name of the parameter for ArgumentOutOfRangeException.</param> <remarks> Throw exception for 0, Office2007 | Office2010, etc. </remarks> </member> <member name="T:DocumentFormat.OpenXml.OfficeAvailabilityAttribute"> <summary> The OfficeAvailabilityAttribute to indicate whether the property is available in a specific version of office application </summary> </member> <member name="M:DocumentFormat.OpenXml.OfficeAvailabilityAttribute.#ctor(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Initializes an instance of OfficeAvailabilityAttribute class. </summary> <param name="officeVersion">The office version where this class or property is available, use bitwize or to specify multiple versions</param> </member> <member name="P:DocumentFormat.OpenXml.OfficeAvailabilityAttribute.OfficeVersion"> <summary> Gets the office version in which the entity is available. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"> <summary> Defines DataPartRelationship - represents internal reference relationship to a DataPart. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ReferenceRelationship"> <summary> Defines ReferenceRelationship - represents reference relationship. Reference relationship can be internal or external. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.#ctor"> <summary> Initializes a new instance of the ReferenceRelationship. </summary> <remarks> Must call Initialize() after calling this constructor. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.#ctor(System.IO.Packaging.PackageRelationship)"> <summary> Initializes a new instance of the ReferenceRelationship. </summary> <param name="packageRelationship">The source PackageRelationship.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.#ctor(System.Uri,System.Boolean,System.String,System.String)"> <summary> Initializes a new instance of the ReferenceRelationship. </summary> <param name="relationshipType">The relationship type of the relationship.</param> <param name="targetUri">The target uri of the relationship.</param> <param name="id">The relationship ID.</param> <param name="isExternal">A value that indicates whether the target of the relationship is Internal or External to the Package.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.Initialize(System.Uri,System.Boolean,System.String,System.String)"> <summary> Initializes this instance of the ReferenceRelationship. </summary> <param name="relationshipType">The relationship type of the relationship.</param> <param name="targetUri">The target uri of the relationship.</param> <param name="id">The relationship ID.</param> <param name="isExternal">A value that indicates whether the target of the relationship is Internal or External to the Package.</param> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.Container"> <summary> Gets the owner <see cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer"/> that holds the <see cref="T:DocumentFormat.OpenXml.Packaging.ReferenceRelationship"/>. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.RelationshipType"> <summary> Gets the relationship type. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.IsExternal"> <summary> Gets a value indeicates whether the target of the relationship is Internal or External to the <see cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackage"/>. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.Id"> <summary> Gets the relationship ID. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ReferenceRelationship.Uri"> <summary> Gets the target URI of the replationship. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship.#ctor"> <summary> Initializes a new instance of the DataPartReferenceRelationship. </summary> <remarks> Must call Initialize() after calling this constructor. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship.#ctor(DocumentFormat.OpenXml.Packaging.DataPart,System.String,System.String)"> <summary> Initializes a new instance of the DataPartRelationship. </summary> <param name="dataPart">The target DataPart of the reference relationship.</param> <param name="relationshipType">The relationship type of the reference relationship.</param> <param name="id">The relationship ID.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship.Initialize(DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer,DocumentFormat.OpenXml.Packaging.DataPart,System.String,System.String)"> <summary> Initializes this instance of the DataPartRelationship. </summary> <param name="containter">The owner <see cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer"/> that holds the <see cref="T:DocumentFormat.OpenXml.Packaging.ReferenceRelationship"/>.</param> <param name="dataPart">The target DataPart of the reference relationship.</param> <param name="relationshipType">The relationship type of the reference relationship.</param> <param name="id">The relationship ID.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship.CreateDataPartReferenceRelationship(DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer,DocumentFormat.OpenXml.Packaging.DataPart,System.String,System.String)"> <summary> Create a new instance of the DataPartRelationship based on the relationship type. </summary> <param name="containter">The owner <see cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer"/> that holds the <see cref="T:DocumentFormat.OpenXml.Packaging.ReferenceRelationship"/>.</param> <param name="dataPart">The target DataPart of the reference relationship.</param> <param name="relationshipType">The relationship type of the reference relationship.</param> <param name="id">The relationship ID.</param> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship.DataPart"> <summary> Gets the referenced target DataPart. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"> <summary> Defines MediaReferenceRelationship - represents internal Media reference relationship to a MediaDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship.RelationshipTypeConst"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship.#ctor"> <summary> Initializes a new instance of the MediaReferenceRelationship. </summary> <remarks> Must call Initialize() after calling this constructor. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship.#ctor(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Initializes a new instance of the MediaReferenceRelationship. </summary> <param name="mediaDataPart">The target DataPart of the reference relationship.</param> <param name="id">The relationship ID.</param> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship.MediaReferenceRelationshipType"> <summary> Gets the source relationship type for media reference. Defined as "http://schemas.microsoft.com/office/2007/relationships/media". </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship.RelationshipType"> <summary> Gets the relationship type. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"> <summary> Defines AudioReferenceRelationship - represents internal Audio reference relationship to a MediaDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship.RelationshipTypeConst"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship.#ctor"> <summary> Initializes a new instance of the AudioReferenceRelationship. </summary> <remarks> Must call Initialize() after calling this constructor. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship.#ctor(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Initializes a new instance of the AudioReferenceRelationship. </summary> <param name="mediaDataPart">The target DataPart of the reference relationship.</param> <param name="id">The relationship ID.</param> </member> <member name="P:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship.AudioReferenceRelationshipType"> <summary> Gets the source relationship type for audio reference. Defined as "http://schemas.openxmlformats.org/officeDocument/2006/relationships/audio". </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship.RelationshipType"> <summary> Gets the relationship type. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"> <summary> Defines VideoReferenceRelationship - represents internal Video reference relationship to a MediaDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship.RelationshipTypeConst"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship.#ctor"> <summary> Initializes a new instance of the VideoReferenceRelationship. </summary> <remarks> Must call Initialize() after calling this constructor. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship.#ctor(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Initializes a new instance of the VideoReferenceRelationship. </summary> <param name="mediaDataPart">The target DataPart of the reference relationship.</param> <param name="id">The relationship ID.</param> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship.VideoReferenceRelationshipType"> <summary> Gets the source relationship type for audio reference. Defined as "http://schemas.openxmlformats.org/officeDocument/2006/relationships/video". </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship.RelationshipType"> <summary> Gets the relationship type. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExceptionMessages"> <summary> A strongly-typed resource class, for looking up localized strings, etc. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ResourceManager"> <summary> Returns the cached ResourceManager instance used by this class. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.Culture"> <summary> Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.AddedPartIsNotAllowed"> <summary> Looks up a localized string similar to The part cannot be added here.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotChangeDocumentType"> <summary> Looks up a localized string similar to Cannot change the document type.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotChangeDocumentTypeSerious"> <summary> Looks up a localized string similar to Cannot change the document type. The document may be corrupt.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotFindAttribute"> <summary> Looks up a localized string similar to The element does not allow the specified attribute.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotLoadRootElement"> <summary> Looks up a localized string similar to Cannot load the root element from the part. The part contains invalid data.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotReloadDomTreeWithoutAssociatedPart"> <summary> Looks up a localized string similar to Cannot reload the DOM tree since this element is not associated with an OpenXmlPart.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotSaveDomTreeWithoutAssociatedPart"> <summary> Looks up a localized string similar to Cannot save DOM tree since this element is not associated with an OpenXmlPart.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotSetAttribute"> <summary> Looks up a localized string similar to Cannot set xml namespace declaration here. Use AddNamespaceDeclaration method instead.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotValidateAcbElement"> <summary> Looks up a localized string similar to The OpenXmlValidator cannot validate against AlternateContent, AlternateContentChoice and AlternateContentFallback.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotValidateMiscNode"> <summary> Looks up a localized string similar to The OpenXmlValidator cannot validate against OpenXmlMiscNode.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CannotValidateUnknownElement"> <summary> Looks up a localized string similar to The OpenXmlValidator cannot validate against OpenXmlUnknownElement.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.CycleReference"> <summary> Looks up a localized string similar to A circular reference has been detected.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.DataPartIsInUse"> <summary> Looks up a localized string similar to The specified DataPart is referenced by other parts.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.DataPartReferenceIsNotAllowed"> <summary> Looks up a localized string similar to The specified DataPartReferenceRelationship is not allowed with this parent.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.DocumentFileFormatVersionMismatch"> <summary> Looks up a localized string similar to You should not validate document preprocessed based on FileFormatVersions.{0} against FileFormatVersions.{1} constraints. The preprocessing file format version is set in OpenSettings. Also check the file format version setting in the OpenXmlValidator.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.DocumentTooBig"> <summary> Looks up a localized string similar to The document has exceeded the size limit. Its type cannot be changed.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.DuplicatedPrefix"> <summary> Looks up a localized string similar to The prefix "{0}" is already defined in current node.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ElementIsNotChild"> <summary> Looks up a localized string similar to The specified oldChild is not a child of this element.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ElementIsNotInOffice2007"> <summary> Looks up a localized string similar to The validator is set to validate content based on Microsoft Office 2007 rules. The passed in element is not defined in Microsoft Office 2007.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ElementIsNotInOffice2010"> <summary> Looks up a localized string similar to The validator is set to validate content based on Microsoft Office 2010 rules. The passed in element is not defined in Microsoft Office 2010.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ElementIsPartOfTree"> <summary> Looks up a localized string similar to Cannot insert the OpenXmlElement "newChild" because it is part of a tree. . </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.EmptyCollection"> <summary> Looks up a localized string similar to Empty collection.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ErrorContentType"> <summary> Looks up a localized string similar to The contentType parameter has incorrect value.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ExtendedPartIsOpenXmlPart"> <summary> Looks up a localized string similar to An ExtendedPart was encountered with a relationship type that starts with "http://schemas.openxmlformats.org". Expected a defined part instead based on the relationship type.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ExtendedPartNotAllowed"> <summary> Looks up a localized string similar to ExtendedPart must be added by AddExtendedPart( ).. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ExternalRelationshipIsNotReferenced"> <summary> Looks up a localized string similar to The specified ExternalRelationship is not referenced by this part.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.FileFormatShouldBe2007Or2010"> <summary> Looks up a localized string similar to The specified FileFormatVersions parameter has an invalid value: {0}. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.Fmt_PartRootIsInvalid"> <summary> Looks up a localized string similar to The root xml element "{0}" in the part is incorrect. The expected root xml element is: "{1}".. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ForeignDataPart"> <summary> Looks up a localized string similar to The specified DataPart is not in this document.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ForeignMediaDataPart"> <summary> Looks up a localized string similar to The specified MediaDataPart is not in this document.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ForeignOpenXmlPart"> <summary> Looks up a localized string similar to The specified OpenXmlPart is not referenced by this part.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.HyperlinkRelationshipIsNotReferenced"> <summary> Looks up a localized string similar to The specified ExternalRelationship is not referenced by this part.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ImplicitConversionExceptionOnNull"> <summary> Looks up a localized string similar to Error in implicit conversion. Cannot convert null object.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InnerXmlCannotBeSet"> <summary> Looks up a localized string similar to This OpenXmlElement's InnerXml cannot be set.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidContentTypePart"> <summary> Looks up a localized string similar to The content type of the part is invalid. The expected content type is: {0}.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidEnumValue"> <summary> Looks up a localized string similar to The specified value is not valid according to the specified enum type.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidMainPartContentType"> <summary> Looks up a localized string similar to Cannot set the MainPartContentType property to this value because it is not valid for this type of document.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidMCMode"> <summary> Looks up a localized string similar to The specified MarkupCompatibilityProcessSettings.TargetFileFormatVersions is invalid to process the extensibility markup.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidOuterXml"> <summary> Looks up a localized string similar to The xml has invalid content and cannot be constructed as an element.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidOuterXmlForMiscNode"> <summary> Looks up a localized string similar to The xml has invalid content and cannot be constructed as an element.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidPackageType"> <summary> Looks up a localized string similar to The specified package is not valid.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidPartContentType"> <summary> Looks up a localized string similar to The document cannot be opened because there is an invalid part with an unexpected content type. [Part Uri={0}], [Content Type={1}], [Expected Content Type={2}].. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidWriteStringCall"> <summary> Looks up a localized string similar to Text string can only be written out in OpenXmlLeafTextElement.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.InvalidXmlIDStringException"> <summary> Looks up a localized string similar to An invalid Xml ID string. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.LeafElementInnerXmlCannotBeSet"> <summary> Looks up a localized string similar to This OpenXmlLeafElement's InnerXml can only be set to null or to an empty string.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.LocalNameIsNull"> <summary> Looks up a localized string similar to LocalName is null or empty.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.MainPartIsDifferent"> <summary> Looks up a localized string similar to The part cannot be added to this package because its content type is not allowed in this type of document.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.MediaDataPartShouldNotReferenceOtherParts"> <summary> Looks up a localized string similar to An Audio / Video part shall not have implicit or explicit relationships to other parts defined by Open XML Standard.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.MultipleRelationshipsToSamePart"> <summary> Looks up a localized string similar to There are more than one relationship references that target the specified part.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.NoMainPart"> <summary> Looks up a localized string similar to The specified package is invalid. The main part is missing.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.NonCompositeNoChild"> <summary> Looks up a localized string similar to Non-composite elements do not have child elements.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.NonImplemented"> <summary> Looks up a localized string similar to The method or operation has not been implemented.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.NoSpecifiedExternalRelationship"> <summary> Looks up a localized string similar to No external relationship with the specified ID was found.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.NoSpecifiedHyperlinkRelationship"> <summary> Looks up a localized string similar to No hyperlink relationship with the specified ID was found.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.NoSpecifiedReferenceRelationship"> <summary> Looks up a localized string similar to No ReferenceRelationship with the specified ID was found.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.NsNotUnderStand"> <summary> Looks up a localized string similar to Current Markup Compatibility mode does not understand namespace prefix "{0}".. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.OnlyOnePartAllowed"> <summary> Looks up a localized string similar to Only one instance of the type is allowed for this parent.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PackageAccessModeIsReadonly"> <summary> Looks up a localized string similar to This operation requires that the document be opened with ReadWrite (or Write) access.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PackageMustCanBeRead"> <summary> Looks up a localized string similar to This operation requires that the package be opened with Read access.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PackageRelatedArgumentNullException"> <summary> Looks up a localized string similar to Arguments openXmlPackage and its parent cannot be null at same time.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ParentIsNull"> <summary> Looks up a localized string similar to The parent of this element is null.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartExistsWithDifferentRelationshipId"> <summary> Looks up a localized string similar to The specified part is already referenced as a target part by a relationship with a different ID.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartIsDestroyed"> <summary> Looks up a localized string similar to The part has been destroyed.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartIsEmpty"> <summary> Looks up a localized string similar to The xml content is empty.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartIsNotAllowed"> <summary> Looks up a localized string similar to The specified part is not allowed with this parent.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartIsNotInOffice2007"> <summary> Looks up a localized string similar to The validator is set to validate content based on Microsoft Office 2007 rules. The passed in part is not defined in Microsoft Office 2007.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartNotInSamePackage"> <summary> Looks up a localized string similar to A relationship can only be created between two parts in a package.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartNotInVersion"> <summary> Looks up a localized string similar to The OpenXmlPart is not a valid part in the specified FileFormat version.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartRootAlreadyHasAssociation"> <summary> Looks up a localized string similar to Cannot set the given root element to this part. The given part root element has already been associated with another OpenXmlPart.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PartUnknown"> <summary> Looks up a localized string similar to The xml content is unknown. Cannot create an OpenXmlReader on that content.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.PropertyMutualExclusive"> <summary> Looks up a localized string similar to The {0} property cannot be set when the {1} property is not null.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ReaderInEndState"> <summary> Looks up a localized string similar to The reader is now positioned at the end element tag.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ReaderInEofState"> <summary> Looks up a localized string similar to The reader is now positioned at EOF.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ReaderInNullState"> <summary> Looks up a localized string similar to The reader is now positioned before the first element. Call OpenXmlReader.Read() before this operation.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ReferenceRelationshipIsNotReferenced"> <summary> Looks up a localized string similar to The specified ReferenceRelationship is not referenced by this part.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.RelationshipIdConflict"> <summary> Looks up a localized string similar to Id conflicts with the Id of an existing relationship.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.RequiredPartDoNotExist"> <summary> Looks up a localized string similar to A required part is missing. The class name is stored in the PartClassName property.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.SamePartWithDifferentRelationshipType"> <summary> Looks up a localized string similar to A shared part is referenced by multiple source parts with a different relationship type.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.StreamAccessModeShouldBeWrite"> <summary> Looks up a localized string similar to The stream was not opened for writing.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.StringArgumentEmptyException"> <summary> Looks up a localized string similar to The string argument cannot be empty.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.StringIsEmpty"> <summary> Looks up a localized string similar to The specified string is empty.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.TextIsInvalidEnumValue"> <summary> Looks up a localized string similar to The text value is not a valid enumeration value.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.TextIsInvalidOnOffValue"> <summary> Looks up a localized string similar to The text value is invalid. It can be only 'true', 'false', 'on', 'off', '0', '1'.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.TextIsInvalidTrueFalseBlankValue"> <summary> Looks up a localized string similar to The text value is invalid. It can be only 'true', 'false', 't', 'f', ''.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.TextIsInvalidTrueFalseValue"> <summary> Looks up a localized string similar to The text value is invalid. It can be only 'true', 'false', 't', 'f'.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.UnknowMCContent"> <summary> Looks up a localized string similar to There is invalid extensibility markup in "{0}".. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.UnknownPackage"> <summary> Looks up a localized string similar to The specified package is unknown.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.UseAddHyperlinkRelationship"> <summary> Looks up a localized string similar to Do not add hyperlink relationships through the AddExternalRelationship() method. Use AddHyperlinkRelationship() instead.. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExceptionMessages.ValidationException"> <summary> Looks up a localized string similar to The OpenXmlPackage.Validate method found an error in the document.. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.IFixedContentTypePart"> <summary> All parts of fixed content type should be derived from this interface </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DataPart"> <summary> Defines DataPart - different with OpenXmlPart, this type of parts will be referenced by <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/>. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPart.#ctor"> <summary> Initializes a new instance of the DataPart. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPart.GetDataPartReferenceRelationships"> <summary> Enumerates all the <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/> that referencing this data part. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPart.GetStream"> <summary> Returns the part content data stream. </summary> <returns>The content data stream for the part. </returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPart.GetStream(System.IO.FileMode)"> <summary> Returns the content stream opened in a specified I/O FileMode. </summary> <param name="mode">The I/O mode in which to open the content stream.</param> <returns>The content stream of the part. </returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPart.GetStream(System.IO.FileMode,System.IO.FileAccess)"> <summary> Returns the part content stream opened with a specified FileMode and 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 of the part. </returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPart.FeedData(System.IO.Stream)"> <summary> Feeds data into the part stream. The stream of the part will be truncated at first. </summary> <param name="sourceStream">The source stream to be read from.</param> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="sourceStream"/> is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DataPart.ThrowIfObjectDisposed"> <summary> Test whether the object is already destroyed (deleted from the package). </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DataPart.OpenXmlPackage"> <summary> Gets the OpenXmlPackage which contains this part. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DataPart.Uri"> <summary> Gets the internal part path in the package. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DataPart.ContentType"> <summary> Gets the content type (MIME type) of the data in the part. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DataPart.PackagePart"> <summary> Gets the internal metro PackagePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DataPart.TargetPath"> <summary> The internal path to be used for the part name. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DataPart.TargetName"> <summary> The file base name to be used for the part name in the package </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DataPart.TargetFileExtension"> <summary> The file extension to be used for the part in the package. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"> <summary> Defines MediaDataPart - class to represent media (Audio, Video) data part in document. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MediaDataPart.#ctor"> <summary> Initializes a new instance of the DataPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MediaDataPart.TargetPath"> <summary> The internal path to be used for the part name. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MediaDataPart.TargetName"> <summary> The file base name to be used for the part name in the package </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MediaDataPart.TargetFileExtension"> <summary> The file extension to be used for the part in the package. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.MediaDataPartType"> <summary> Defines MediaDataPartType. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Aiff"> <summary> Audio Interchange File Format (.aiff) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Midi"> <summary> MIDI Audio (.mid) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Mp3"> <summary> MP3 (.mp3) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.MpegUrl"> <summary> MP3 Playlist File (.m3u) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Wav"> <summary> WAV audio (.wav) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Wma"> <summary> Windows Media Audio File (.wma) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.MpegAudio"> <summary> Mpeg audio (.mpeg) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.OggAudio"> <summary> Ogg Vorbis (.ogg) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Asx"> <summary> Advanced Stream Redirector File (.asx) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Avi"> <summary> Audio Video Interleave File (.avi) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Mpg"> <summary> MPEG 1 System Stream (.mpg) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.MpegVideo"> <summary> MPEG 1 System Stream (.mpeg) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Wmv"> <summary> Windows Media File (.wmv) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Wmx"> <summary> Windows Media Player A/V Shortcut (.wmx) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Wvx"> <summary> Windows Media Redirector (.wvx) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.Quicktime"> <summary> QuickTime video (.mov) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.OggVideo"> <summary> Ogg Stream (.ogg) </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MediaDataPartType.VC1"> <summary> VC-1 Stream (.wmv) </summary> </member> <member name="M:DocumentFormat.OpenXml.NamespaceIdMap.GetNamespaceUri(System.Byte)"> <summary> Namespace URI for the specified namespace ID </summary> <param name="namespaceId"></param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.NamespaceIdMap.GetNamespaceUri(System.String)"> <summary> Get NamespaceUri for the specified prefix </summary> <param name="prefix"></param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.NamespaceIdMap.GetNamespacePrefix(System.Byte)"> <summary> Gets the default namespace prefix of the namespaceId </summary> <param name="namespaceId"></param> <returns></returns> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlAttribute"> <summary> OpenXmlAttribute - xml attribute </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlAttribute.#ctor(System.String,System.String,System.String)"> <summary> OpenXmlAttribute constructor </summary> <param name="qualifiedName">Qualified attribute name.</param> <param name="namespaceUri">Namespace URN of the attribute.</param> <param name="value">Text value of the attribute.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlAttribute.#ctor(System.String,System.String,System.String,System.String)"> <summary> OpenXmlAttribute constructor </summary> <param name="prefix">The namespace prefix of the attribute. </param> <param name="localName">Local name of the attribute.</param> <param name="namespaceUri">Namespace URN of the attribute.</param> <param name="value">Text value of the attribute.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlAttribute.Equals(DocumentFormat.OpenXml.OpenXmlAttribute)"> <summary> Compares two OpenXmlAttribute structures for equality. </summary> <param name="other">The instance of OpenXmlAttribute to compare to this instance.</param> <returns>true if instances are equal; otherwise, false.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlAttribute.op_Equality(DocumentFormat.OpenXml.OpenXmlAttribute,DocumentFormat.OpenXml.OpenXmlAttribute)"> <summary> Compares two OpenXmlAttribute structures for equality. </summary> <param name="attribute1">The first OpenXmlAttribute structure to compare.</param> <param name="attribute2">The second OpenXmlAttribute structure to compare.</param> <returns>true if all LocalName, NamespaceUri, Prefix and Value of attribute1 and attribute2 are equal; otherwise, false.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlAttribute.op_Inequality(DocumentFormat.OpenXml.OpenXmlAttribute,DocumentFormat.OpenXml.OpenXmlAttribute)"> <summary> Compares two OpenXmlAttribute structures for inequality. </summary> <param name="attribute1">The first OpenXmlAttribute structure to compare.</param> <param name="attribute2">The second OpenXmlAttribute structure to compare.</param> <returns>true if all LocalName, NamespaceUri, Prefix and Value of attribute1 and attribute2 are different; otherwise, false.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlAttribute.Equals(System.Object)"> <summary> Determines whether the specified Object is a OpenXmlAttribute structure and if so, whether the specified Object are equal to this OpenXmlAttribute structure. </summary> <param name="obj">The Object to compare.</param> <returns>true if the instances are equal; otherwise, false. true if o (the passed Object) is a OpenXmlAttribute structure and if it is also identical to this OpenXmlAttribute structure; otherwise, false.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlAttribute.GetHashCode"> <summary> Gets a hash code for this OpenXmlAttribute structure. </summary> <returns>A hash code for this OpenXmlAttribute structure.</returns> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlAttribute.NamespaceUri"> <summary> Gets or sets the namespace URI of this attribute. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlAttribute.LocalName"> <summary> Gets or sets the local name of the attribute. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlAttribute.Prefix"> <summary> Gets or sets the namespace prefix of this attribute. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlAttribute.Value"> <summary> Gets or sets the text value of the attribute. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlAttribute.XmlQualifiedName"> <summary> When overridden in a derived class, gets the qualified name of the attribute. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.OpenXmlPart"> <summary> Abstract base class for all OpenXml parts. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer"> <summary> Defines OpenXmlPartContainer - base class for OpenXmlPackage and OpenXmlPart. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.#ctor"> <summary> Initializes OpenXmlPartContainer. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeleteReferenceRelationship(DocumentFormat.OpenXml.Packaging.ReferenceRelationship)"> <summary> Deletes the specified reference relationship. </summary> <param name="referenceRelationship">The reference relationship to be deleted.</param> <exception cref="T:System.ArgumentNullException">Thrown when "referenceRelationship" is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the reference relationship is not referenced by this part.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeleteReferenceRelationship(System.String)"> <summary> Deletes the sepcified reference relationship. </summary> <param name="id">The relationship ID of the ReferenceRelationship.</param> <exception cref="T:System.ArgumentNullException">Thrown when the "id" parameter is null.</exception> <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when there is no ReferenceRelationship with the specified relationship ID.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetReferenceRelationship(System.String)"> <summary> Gets the sepcified ReferenceRelationship. </summary> <param name="id">The relationship ID of the ReferenceRelationship.</param> <returns>Returns the ReferenceRelationship which has the relationship ID. </returns> <exception cref="T:System.ArgumentNullException">Thrown when the "id" parameter is null.</exception> <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when there is no ReferenceRelationship with the specified relationship ID.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddExternalRelationship(System.String,System.Uri)"> <summary> Adds external relationship. Do not add hyperlink relationships through this method. Use AddHyperlinkRelationship() instead. </summary> <param name="relationshipType">The relationship type.</param> <param name="externalUri">The external URI.</param> <returns>An ExternalRelationship with the relationship ID. </returns> <exception cref="T:System.ArgumentNullException">Thrown when "relationshipType" or the "externalUri" is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddExternalRelationship(System.String,System.Uri,System.String)"> <summary> Adds external relationship. Do not add hyperlink relationships through this method. Use AddHyperlinkRelationship() instead. </summary> <param name="relationshipType">The relationship type.</param> <param name="externalUri">The external URI.</param> <param name="id">The desired relationship ID. </param> <returns>An ExternalRelationship with the relationship ID. </returns> <exception cref="T:System.ArgumentNullException">Thrown when "relationshipType" or the "externalUri" is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the relatioship type is hyperlink relationship type (http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink). </exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeleteExternalRelationship(DocumentFormat.OpenXml.Packaging.ExternalRelationship)"> <summary> Deletes the specified external relationship. </summary> <param name="externalRelationship">The external relationship to be deleted.</param> <exception cref="T:System.ArgumentNullException">Thrown when "externalRelationship" is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the external relationship is not referenced by this part.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeleteExternalRelationship(System.String)"> <summary> Deletes the sepcified ExternalRelationship. </summary> <param name="id">The relationship ID of the ExternalRelationship.</param> <exception cref="T:System.ArgumentNullException">Thrown when the "id" parameter is null.</exception> <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when there is no ExternalRelationship with the specified relationship ID.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetExternalRelationship(System.String)"> <summary> Gets the sepcified ExternalRelationship. </summary> <param name="id">The relationship ID of the ExternalRelationship.</param> <returns>Returns the ExternalRelationship which has the relationship ID. </returns> <exception cref="T:System.ArgumentNullException">Thrown when the "id" parameter is null.</exception> <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when there is no ExternalRelationship with the specified relationship ID.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddHyperlinkRelationship(System.Uri,System.Boolean)"> <summary> Adds a new hyperlink relationship. </summary> <param name="hyperlinkUri">The URI of the hyperlink.</param> <param name="isExternal">Is the hyperlink external to the <see cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackage"/>.</param> <returns>An HyperlinkRelationship with the relationship ID. </returns> <exception cref="T:System.ArgumentNullException">Thrown when "hyperlinkUri" is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddHyperlinkRelationship(System.Uri,System.Boolean,System.String)"> <summary> Adds a new hyperlink relationship. </summary> <param name="hyperlinkUri">The URI of the hyperlink.</param> <param name="isExternal">Is the hyperlink external to the <see cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackage"/>.</param> <param name="id">The desired relationship ID. </param> <returns>An HyperlinkRelationship with the relationship ID. </returns> <exception cref="T:System.ArgumentNullException">Thrown when "hyperlinkUri" or "id" is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddDataPartReferenceRelationship``1(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/> relationship to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/> of the reference relationship.</param> <returns>An new <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/>. </returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddDataPartReferenceRelationship``1(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/> relationship to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/> of the reference relationship.</param> <param name="id">The desired relationship ID. </param> <returns>An new <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/> with the relationship ID. </returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddDataPartReferenceRelationship(DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/> relationship. </summary> <param name="dataPartReferenceRelationship">The <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/>.</param> <returns>The same <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/>. </returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="dataPartReferenceRelationship"/> is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetPartById(System.String)"> <summary> Gets the child part through the relationship ID. </summary> <param name="id">The relationship ID of the part.</param> <returns>The part.</returns> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part with the specified id does not exist.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetIdOfPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Gets the relationship ID of the part. </summary> <param name="part">The part.</param> <returns>The relationship ID of the part.</returns> <exception cref="T:System.ArgumentNullException">Thrown when "part" is null reference.</exception> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part does not exist.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.ChangeIdOfPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.String)"> <summary> Changes the relationship ID of the part. </summary> <param name="part">The target part.</param> <param name="newRelationshipId">The new relationship ID of the part.</param> <returns>The old relationship ID of the part.</returns> <exception cref="T:System.ArgumentNullException">Throw when "part" is null reference or the newRelationshipId is null reference.</exception> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part does not exist under this part.</exception> <exception cref="T:System.ArgumentException">Thrown when the specified relationship id is already used by another part.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddPart``1(``0)"> <summary> Adds the part to the document. Must use the returned part to opertate the part added to the doucment </summary> <typeparam name="T">Derived class from OpenXmlPart.</typeparam> <param name="part">The part to be added to the document.</param> <returns>The added part in the doucment. Different from the passed in part.</returns> <exception cref="T:System.ArgumentNullException">Thrown when "part" is null reference.</exception> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part is no allowed to be added.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when one instance of same type part already exists and multiple instance of that type is not allowed.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddPart``1(``0,System.String)"> <summary> Adds the part to the document with a given relationship identifier (ID). Must use the returned part to opertate the part added to the doucment </summary> <typeparam name="T">Derived class from OpenXmlPart.</typeparam> <param name="part">The part to be added to the document.</param> <param name="id">A unique relationship identifier.</param> <returns>The added part in the doucment. Different from the passed in part.</returns> <exception cref="T:System.ArgumentNullException">Thrown when "part" or the "id" is null reference.</exception> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part is no allowed to be added.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when one instance of same type part already exists and multiple instance of that type is not allowed.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.CreateRelationshipToPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Adds relationship for the specified part to this part. </summary> <param name="targetPart">The part to add relationship for.</param> <returns>A unique relationship identifier.</returns> <exception cref="T:System.ArgumentNullException">Thrown when "part" or the "id" is null reference.</exception> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part is no allowed to be added.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when one instance of same type part already exists and multiple instance of that type is not allowed.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the <paramref name="targetPart"/> and this part are not in the same OpenXmlPackage.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.CreateRelationshipToPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.String)"> <summary> Adds relationship for the specified part to this part. </summary> <param name="targetPart">The part to add relationship for.</param> <param name="id">A unique relationship identifier.</param> <returns>A unique relationship identifier.</returns> <exception cref="T:System.ArgumentNullException">Thrown when "part" or the "id" is null reference.</exception> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part is no allowed to be added.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when one instance of same type part already exists and multiple instance of that type is not allowed.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the <paramref name="targetPart"/> and this part are not in the same OpenXmlPackage.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddNewPart``1"> <summary> Adds a new part of type T </summary> <typeparam name="T">The class of the part.</typeparam> <returns>The added part.</returns> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">When the part is not allowed to be referenced by this part.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddNewPart``1(System.String)"> <summary> Adds a new part of type T </summary> <typeparam name="T">The class of the part.</typeparam> <param name="id">The relationship id.</param> <returns>The added part.</returns> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">When the part is not allowed to be referenced by this part.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddNewPart``1(System.String,System.String)"> <summary> Adds a new part of type T. </summary> <typeparam name="T">The class of the part.</typeparam> <param name="contentType">The content type of the part. Must match the defined content type if the part is fixed content type.</param> <param name="id">The relationship id. The id will be automaticly generated if this param is null.</param> <returns>The added part.</returns> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">When the part is not allowed to be referenced by this part.</exception> <exception cref="T:System.ArgumentOutOfRangeException">When the part is fixed content type and the passed in contentType does not match the defined content type.</exception> <exception cref="T:System.ArgumentNullException">Thrown when "contentType" is null reference.</exception> <remarks>Mainly used for adding not-fixed content type part - ImagePart, etc</remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddExtendedPart(System.String,System.String,System.String)"> <summary> Adds an extended part ( Application specific part ) </summary> <param name="relationshipType">The relationship type of the part.</param> <param name="contentType">The content type of the part.</param> <param name="targetExt">The desired part name extension in the package.</param> <returns>The new ExtendedPart.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddExtendedPart(System.String,System.String,System.String,System.String)"> <summary> Adds an extended part ( Application specific part ) </summary> <param name="relationshipType">The relationship type of the part.</param> <param name="contentType">The content type of the part.</param> <param name="targetExt">The desired part name extension in the package.</param> <param name="rId">The desired relationship ID.</param> <returns>The new ExtendedPart.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeletePart(System.String)"> <summary> Deletes the specified child part from this part. </summary> <param name="id">The relationship ID of the part to be deleted.</param> <returns>true if the part is successfully removed; otherwise, false. This method also returns false if the part was not found.</returns> <exception cref="T:System.ArgumentNullException">Thrown when "id" is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeletePart(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Deletes a specified part in the package root layer. </summary> <param name="part">The part to be deleted.</param> <returns>true if the part is successfully removed; otherwise, false. This method also returns false if the part was not found or the parameter is null.</returns> <exception cref="T:System.InvalidOperationException">Thrown when the part is not referenced by this part.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeleteParts``1(System.Collections.Generic.IEnumerable{``0})"> <summary> Deletes all the parts which in the passed in collection from the document. </summary> <param name="partsToBeDeleted">The parts to be deleted.</param> <exception cref="T:System.ArgumentNullException">Thrown when "partsToBeDeleted" is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetPartsCountOfType``1"> <summary> Gets the count of all parts in type T. </summary> <typeparam name="T">The type of the part.</typeparam> <returns>The count number of the parts.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddAnnotation(System.Object)"> <summary> Adds an object to the annotation list of this PartContainer </summary> <param name="annotation">The annotation to add to this PartContainer</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.Annotation``1"> <summary> Get the first annotation object of the specified type from this PartContainer </summary> <typeparam name="T">The type of the annotation to retrieve</typeparam> <returns>The first annotation object of the specified type</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.Annotation(System.Type)"> <summary> Get the first annotation object of the specified type from this PartContainer </summary> <param name="type">The type of the annotation to retrieve</param> <returns>The first annotation object of the specified type</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.Annotations``1"> <summary> Gets a collection of annotations of the specified type for this PartContainer </summary> <typeparam name="T">The type of the annotations to retrieve.</typeparam> <returns>An IEnumerable(T) of object that contains the annotations for this PartContainer</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.Annotations(System.Type)"> <summary> Gets a collection of annotations of the specified type for this PartContainer </summary> <param name="type">The Type of the annotations to retrieve.</param> <returns>An IEnumerable(T) of object that contains the annotations for this PartContainer</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.RemoveAnnotations``1"> <summary> Removes the annotations of the specified type from this PartContainer </summary> <typeparam name="T">The Type of the annotations to remove.</typeparam> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.RemoveAnnotations(System.Type)"> <summary> Removes the annotations of the specified type from this PartContainer </summary> <param name="type">The Type of the annotations to remove.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetPartsOfType``1"> <summary> Enumerates all the children parts of the specified type "T" of this part. </summary> <typeparam name="T">Derived class from OpenXmlPart.</typeparam> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetPartsOfType``1(System.Collections.Generic.ICollection{``0})"> <summary> Gets all the children parts of the specified type "T" into "partCollection" of this part. </summary> <typeparam name="T">Derived class from OpenXmlPart.</typeparam> <param name="partCollection">The part collection to be filled in.</param> <exception cref="T:System.ArgumentNullException">Thrown when "partCollection" is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddNewPartInternal``1"> <summary> Adds a new part of type T </summary> <typeparam name="T">The class of the part.</typeparam> <returns>The added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddNewPartInternal``1(System.String,System.String)"> <summary> Adds a new part of type T </summary> <typeparam name="T">The class of the part.</typeparam> <param name="contentType">The content type of the part.</param> <param name="id">The part relationship id.</param> <returns>The added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.InitPart``1(``0,System.String)"> <summary> Initilizes a new created part </summary> <typeparam name="T">The type of the part, must be derived from OpenXmlPart.</typeparam> <param name="newPart">The part to be initialized.</param> <param name="contentType">The content type of the part.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.InitPart``1(``0,System.String,System.String)"> <summary> Initilizes a new created part </summary> <typeparam name="T">The type of the part, must be derived from OpenXmlPart.</typeparam> <param name="newPart">The part to be initialized.</param> <param name="contentType">The content type of the part.</param> <param name="id">The relationship id.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddPartFrom(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.String)"> <summary> Adds a new part. </summary> <param name="subPart">The part to be added.</param> <param name="rId">A unique relationship identifier. null to create new id.</param> <returns>The added part. May diff with the passed in part.</returns> <exception cref="T:System.ArgumentNullException">Thrown when "subPart" is null reference.</exception> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part is no allowed to be added.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when one instance of same type part already exists and multiple instance of that type is not allowed.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.SetSubPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.String)"> <summary> Sets part which is only one in the parent </summary> <param name="part"></param> <param name="rId">A unique relationship identifier.</param> <returns>The part added to the parent. Different with the passed in part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AddSubPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.String)"> <summary> Adds the part to the parent. </summary> <param name="part"></param> <param name="rId">A unique relationship identifier.</param> <returns>The part added to the parent. Different with the passed in part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AttachChild(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Attachs the child to the package (create the relationship) </summary> <param name="part">The part to be attached.</param> <returns>The relationship ID.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.AttachChild(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.String)"> <summary> Attachs the child to the package (create the relationship) </summary> <param name="part">The part to be attached.</param> <param name="rId">The desired relationship ID.</param> <returns>The relationship ID.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeletePartCore(System.String)"> <summary> Deletes the specified part in the package root layer. </summary> <param name="id">The relationship ID of the part to be deleted.</param> <returns>true if the part is successfully removed; otherwise, false. This method also returns false if the part was not found.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeletePartsOfType``1"> <summary> Deletes all the parts of the specified type. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeletePartsRecursivelyOfTypeBase``1"> <summary> Deletes all the parts which is the specified part type from package recursively. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DeleteAllParts(System.Collections.Generic.Dictionary{DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.Boolean},System.Collections.Generic.Dictionary{DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.Boolean})"> <summary> Removes all child parts of this part. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetSubPart(System.String)"> <summary> Gets the sub part which is the specified relationship type. </summary> <param name="relationshipType">The relationship type of the part.</param> <returns>return null if no one.</returns> <remarks>Only used for maxOccurence=1 part.</remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.CreateOpenXmlPart(System.String)"> <summary> Creates an strong typed OpenXmlPart instance based on the relationship type. For and only for loading. </summary> <param name="relationshipType">The relationship type of the new part.</param> <returns>The created new part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.LoadReferencedPartsAndRelationships(DocumentFormat.OpenXml.Packaging.OpenXmlPackage,DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.IO.Packaging.PackageRelationshipCollection,System.Collections.Generic.Dictionary{System.Uri,DocumentFormat.OpenXml.Packaging.OpenXmlPart})"> <summary> Loads all children parts and relationships recursively. </summary> <param name="openXmlPackage">The OpenXmlPackage.</param> <param name="sourcePart">The source part. Be null if loading from the package root.</param> <param name="relationshipCollection">The relationships of the source part (or the package).</param> <param name="loadedParts">Temp collection to detect loaded (shared) parts.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.ValidateInternal(DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationSettings,System.Collections.Generic.Dictionary{DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.Boolean})"> <summary> Validates the package ( do not validate the xml content in each part ). </summary> <param name="validationSettings">OpenXmlPackageValidationSettings for validation events.</param> <param name="processedParts">Parts already processed.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetPartConstraint"> <summary> Get the constraint rule </summary> <returns>The constraint rule.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>The constraint rule.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.ThrowIfObjectDisposed"> <summary> Test whether the object is already disposed. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.CreatePartCore(System.String)"> <summary> Create the object of strong typed class according the relationshipType </summary> <param name="relationshipType">The relationship type of the class.</param> <returns>A new object of strong typed class.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.ChildrenParts"> <summary> Gets the children parts IDictionary. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.PartDictionary"> <summary> Gets or sets the children parts dictionary. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.ReferenceRelationshipList"> <summary> Gets the ReferenceRelationship list. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.ExternalRelationships"> <summary> Enumerates all external relationships. Hyperlink relationships are not included, use HyperlinkRelationship property to enumerate hyperlink relationships. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.HyperlinkRelationships"> <summary> Enumerates all hyperlink relationships. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.DataPartReferenceRelationships"> <summary> Enumerates all <see cref="T:DocumentFormat.OpenXml.Packaging.DataPartReferenceRelationship"/> relationships. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.Parts"> <summary> Enumerates all parts which are relationship targets of this part. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer.InternalOpenXmlPackage"> <summary> Internal OpenXmlPackage instance </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.#ctor"> <summary> OpenXmlPart constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.GetParentParts"> <summary> Enum all parents that reference this part anywhere in the document. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.GetStream"> <summary> Returns the part content data stream. </summary> <returns>The content data stream for the part. </returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.GetStream(System.IO.FileMode)"> <summary> Returns the content stream opened in a specified I/O FileMode. </summary> <param name="mode">The I/O mode in which to open the content stream.</param> <returns>The content stream of the part. </returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.GetStream(System.IO.FileMode,System.IO.FileAccess)"> <summary> Returns the part content stream opened with a specified FileMode and 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 of the part. </returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.FeedData(System.IO.Stream)"> <summary> Feed data into the part stream. The stream of the part will be truncated at first. </summary> <param name="sourceStream">The source stream to be read from.</param> <exception cref="T:System.ArgumentNullException">Thrown when "sourceStream" is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.ValidateXml(System.Xml.Schema.XmlSchemaSet,System.Xml.Schema.ValidationEventHandler)"> <summary> Validate the xml content of the part according the specified schema. </summary> <param name="schemas">The set of XML schemas to be used.</param> <param name="validationEventHandler">ValidationEventHandler for validation events.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.ValidateXml(System.String,System.Xml.Schema.ValidationEventHandler)"> <summary> Validate the xml content of the part according the specified schema. </summary> <param name="schemaFile">The XML schema to be used.</param> <param name="validationEventHandler">ValidationEventHandler for validation events.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the part is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.SetPartRootElementToNull"> <summary> Set the PartRootElement to be null. </summary> <returns></returns> <remarks> Used by validator. To releaase the DOM and so the memory can be GC'ed. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.LoadDomTree``1"> <summary> Load the DOM tree. And associate the DOM tree with this part. Only used for generated part classes which derive from this OpenXmlBasePart. </summary> <typeparam name="T">The type of the part root element.</typeparam> <remarks> The ._rootElement will be assigned if the DOM is loaded. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.SetDomTree(DocumentFormat.OpenXml.OpenXmlPartRootElement)"> <summary> Set the RootElement to be the given partRootElement. Only used for generated part classes which derive from this OpenXmlBasePart. </summary> <param name="partRootElement">The given partRootElement. Can be null.</param> <remarks> </remarks> <exception cref="T:System.ArgumentException">Thrown when the part root element has already be associated with another OpenXmlPart.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPart.ThrowIfObjectDisposed"> <summary> Test whether the object is already disposed. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.OpenXmlPackage"> <summary> The OpenXmlPackage contains this part </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.Uri"> <summary> The internal part path in the package </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.ContentType"> <summary> content type (MIME type) of the content data in the part. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.RelationshipType"> <summary> The relationship type of the part. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.RootElement"> <summary> Gets the root element of this part. Returns null when part is empty or is not xml content type. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.PackagePart"> <summary> The internal metro PackagePart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.MaxCharactersInPart"> <summary> Gets a value indicating the maximum allowable number of characters in an Open XML part. A zero (0) value means no limits on the size of the part. A non-zero value specifies the maximum size, in characters. </summary> <remarks> This property allows you to mitigate denial of service attacks where the attacker submits package with extremely large Opexn XML part. By limiting the size of a part, you can detect the attack and recover reliably. </remarks> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.TargetPath"> <summary> The internal path to be used for the part name. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.TargetName"> <summary> The file base name to be used for the part name in the package </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.TargetFileExtension"> <summary> The file extension to be used for the part in the package. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart._rootElement"> <summary> Gets or sets the root element field. Do not call this property outside of OpenXmlPart. </summary> <exception cref="T:System.InvalidOperationException">If the part does not have root element defined.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.PartRootElement"> <summary> Gets the root element of this part. </summary> <remarks>Returns null if the part is not a defined xml part.</remarks> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPart.IsRootElementLoaded"> <summary> Returns true when the root element is loaded from the part or it has been set. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlCompositeType"> <summary> The type of the children's occurence. Used in GetElement() / SetElement() for generated code. </summary> </member> <member name="F:DocumentFormat.OpenXml.OpenXmlCompositeType.OneSequence"> <summary> xsd:sequence, and maxOccurs=1. </summary> </member> <member name="F:DocumentFormat.OpenXml.OpenXmlCompositeType.OneChoice"> <summary> xsd:choice, and maxOccurs=1. </summary> </member> <member name="F:DocumentFormat.OpenXml.OpenXmlCompositeType.OneAll"> <summary> xsd:all. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlLoadMode"> <summary> OpenXmlLoadMode - load mode, default is Lazy Full - load all the OpenXmlElements recursively Lazy (default) - load N layer descendant elements from the current element, lazy load (cache OuterXml) for others default is populate 3 layers </summary> </member> <member name="F:DocumentFormat.OpenXml.OpenXmlLoadMode.Full"> <summary> Load all the OpenXmlElements recursively </summary> </member> <member name="F:DocumentFormat.OpenXml.OpenXmlLoadMode.Lazy"> <summary> Load only one layer element, cache OuterXml </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlElementContext"> <summary> OpenXmlElementContext - OpenXml loading context </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementContext.#ctor"> <summary> OpenXmlElementContext constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementContext.IsXmlnsUri(System.String)"> <summary> Test whether the nsUri == @"http://www.w3.org/2000/xmlns/". </summary> <param name="nsUri">The nsUri to test.</param> <returns>True if nsUri == @"http://www.w3.org/2000/xmlns/".</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementContext.ElementInsertingEvent(DocumentFormat.OpenXml.OpenXmlElement,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Fire the ElementInserting Event </summary> <param name="element">The OpenXmlElement to be inserted.</param> <param name="parent">The parent element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementContext.ElementInsertedEvent(DocumentFormat.OpenXml.OpenXmlElement,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Fire the ElementInserted Event </summary> <param name="element">The OpenXmlElement be inserted.</param> <param name="parent">The parent element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementContext.ElementRemovingEvent(DocumentFormat.OpenXml.OpenXmlElement,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Fire the ElementRemoving Event </summary> <param name="element">The OpenXmlElement to be removed.</param> <param name="parent">The parent element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementContext.ElementRemovedEvent(DocumentFormat.OpenXml.OpenXmlElement,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Fire the ElementRemoved Event </summary> <param name="element">The OpenXmlElement be removed.</param> <param name="parent">The parent element.</param> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElementContext.XmlNameTable"> <summary> The XmlNameTable to be used by internal XmlReader </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElementContext.XmlReaderSettings"> <summary> The XmlReaderSettings to be used by internal XmlReader </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElementContext.LoadMode"> <summary> Load mode </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElementContext.LazySteps"> <summary> Layers to be full populated, only effective when LoadMode==Lazy. Start from 0 (populate only the children layer). </summary> </member> <member name="E:DocumentFormat.OpenXml.OpenXmlElementContext.ElementInserting"> <summary> Occurs when element is about to be inserted </summary> </member> <member name="E:DocumentFormat.OpenXml.OpenXmlElementContext.ElementInserted"> <summary> Occurs when element has been inserted </summary> </member> <member name="E:DocumentFormat.OpenXml.OpenXmlElementContext.ElementRemoving"> <summary> Occurs when element is about to be removed </summary> </member> <member name="E:DocumentFormat.OpenXml.OpenXmlElementContext.ElementRemoved"> <summary> Occurs when paragraph has been removed </summary> </member> <member name="T:DocumentFormat.OpenXml.ElementEventArgs"> <summary> Argument for element events </summary> </member> <member name="M:DocumentFormat.OpenXml.ElementEventArgs.#ctor(DocumentFormat.OpenXml.OpenXmlElement,DocumentFormat.OpenXml.OpenXmlElement)"> <summary> ElementEventArgs constructor </summary> <param name="element">The element caused the event.</param> <param name="parentElement">The parent element of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.ElementEventArgs.Element"> <summary> The element caused the event. </summary> </member> <member name="P:DocumentFormat.OpenXml.ElementEventArgs.ParentElement"> <summary> The parent element of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlElementList"> <summary> OpenXmlElementList - Represents an ordered collection of OpenXmlElement's. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementList.#ctor"> <summary> ctor </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementList.GetItem(System.Int32)"> <summary> Retrieves a OpenXmlElement at the given index. </summary> <param name="index">Zero-based index into the list of elements. </param> <returns>The OpenXmlElement in the collection. If index is greater than or equal to the number of elements in the list, this returns a null reference (Nothing in Visual Basic).</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementList.First``1"> <summary> Find the first child element in type T </summary> <typeparam name="T"></typeparam> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementList.OfType``1"> <summary> Get IEnumerable for specific type of element </summary> <typeparam name="T">Type of element</typeparam> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlElementList.GetEnumerator"> <summary> Returns an enumerator that iterates through the collection. </summary> <returns>An IEnumerator object that can be used to iterate through the collection. </returns> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElementList.Count"> <summary> Gets the number of OpenXmlElement in the OpenXmlElementList. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlElementList.Item(System.Int32)"> <summary> Retrieves a node at the given index. </summary> <param name="i"></param> <returns></returns> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlChildElements"> <summary> Implement OpenXmlElementList </summary> </member> <member name="P:DocumentFormat.OpenXml.EmptyElementList.EmptyElementListSingleton"> <summary> Static singleton </summary> </member> <member name="T:DocumentFormat.OpenXml.EmptyEnumerator`1"> <summary> Empty Enumerator </summary> </member> <member name="P:DocumentFormat.OpenXml.EmptyEnumerator`1.EmptyEnumeratorSingleton"> <summary> Static singleton </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlLeafElement"> <summary> OpenXmlLeafElement - base class for leaf element </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlLeafElement.#ctor"> <summary> OpenXmlLeafElement constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlLeafElement.WriteContentTo(System.Xml.XmlWriter)"> <summary> Saves all the children of the node to the specified XmlWriter. </summary> <param name="w">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlLeafElement.RemoveAllChildren"> <summary> Remove all the child elements </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlLeafElement.ShadowElement"> <summary> Shadow element to hold children elements if there are any. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlLeafElement.HasChildren"> <summary> Gets a value indicating whether this element has any child elements. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlLeafElement.InnerXml"> <summary> Gets or sets the markup representing only the child nodes of this node. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlLeafTextElement"> <summary> OpenXmlLeafTextElement - base class for leaf element which has text. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlLeafTextElement.#ctor"> <summary> OpenXmlLeafTextElement constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlLeafTextElement.#ctor(System.String)"> <summary> OpenXmlLeafTextElement constructor </summary> <param name="text"></param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlLeafTextElement.InnerTextToValue(System.String)"> <summary> Convert the text into value (depends on the type defined in the schema). </summary> <param name="text">The text of to be converted.</param> <returns>The value in OpenXmlSimpleType.</returns> <remarks>All generated classes deverived from this class will have this method generated.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlLeafTextElement.WriteContentTo(System.Xml.XmlWriter)"> <summary> Saves all the children of the node to the specified XmlWriter. </summary> <param name="w">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlLeafTextElement.RemoveAllChildren"> <summary> Remove all the child elements </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlLeafTextElement.HasChildren"> <summary> Gets a value indicating whether this element has any child elements. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlLeafTextElement.InnerText"> <summary> Gets or sets the concatenated values of the node and all its children. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlLeafTextElement.InnerXml"> <summary> Gets or sets the markup representing only the child nodes of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlLeafTextElement.Text"> <summary> Gets or sets the text </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlMiscNode"> <summary> OpenXmlMiscNode - non element node (PT, Comments, Entity, Notation, XmlDeclaration) </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.#ctor(System.Xml.XmlNodeType)"> <summary> OpenXmlMiscNode constuctor </summary> <param name="nodeType">The XmlNodeType.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.#ctor(System.Xml.XmlNodeType,System.String)"> <summary> OpenXmlMiscNode constuctor </summary> <param name="nodeType">The XmlNodeType.</param> <param name="outerXml">The outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.CloneNode(System.Boolean)"> <summary> When overridden in a derived class, creates a duplicate of the node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>The cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.RemoveAllChildren"> <summary> Remove all the child elements </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.WriteContentTo(System.Xml.XmlWriter)"> <summary> Saves all the children of the node to the specified XmlWriter. </summary> <param name="w">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.WriteTo(System.Xml.XmlWriter)"> <summary> Saves the current node to the specified XmlWriter. </summary> <param name="xmlWriter">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.LoadOuterXml(System.Xml.XmlReader)"> <summary> Load the out xml from the XmlReader. </summary> <param name="xmlReader"></param> <remarks>The XmlReader not be moved.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.LoadAttributes(System.Xml.XmlReader)"> <summary> Do nothing for MiscNode. Override this method because the MC loading algorithm try to call this method in parent's Populate. While the OpenXmlElement.LoadAttributes() will cause the reader be moved which should not. </summary> <param name="xmlReader"></param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlMiscNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. For OpenXmlMiscNode, always return true, no matter what the version is. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.XmlNodeType"> <summary> Specifies the type of XML node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.ElementTypeId"> <summary> The type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.HasChildren"> <summary> Gets a value indicating whether this element has any child elements. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.LocalName"> <summary> When overridden in a derived class, gets the local name of the node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.NamespaceUri"> <summary> Gets the namespace URI of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.Prefix"> <summary> Gets or sets the namespace prefix of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.XmlQualifiedName"> <summary> When overridden in a derived class, gets the qualified name of the node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.InnerXml"> <summary> Gets or sets the markup representing only the child nodes of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlMiscNode.Value"> <summary> Holds the XmlReader.Value on loading. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackage"> <summary> Defines OpenXmlPackage - base class for strong typed Open XML document classes. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.#ctor"> <summary> Initializes a new instance of the OpenXmlPackage. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.OpenCore(System.IO.Packaging.Package)"> <summary> Initializes a new instance of the OpenXmlPackage class with access to a specified OpenXml Package. </summary> <param name="package">The target package for the OpenXmlPackage.</param> <exception cref="T:System.ArgumentNullException">Thrown when "package" is null reference.</exception> <exception cref="T:System.IO.IOException">Thrown when "package" is not opened with Read access.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when the package is not valid Open XML document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.CreateCore(System.IO.Packaging.Package)"> <summary> Initializes a new instance of the OpenXmlPackage class with access to a specified OpenXml Package. </summary> <param name="package">The target package for the OpenXmlPackage.</param> <exception cref="T:System.ArgumentNullException">Thrown when "package" is null reference.</exception> <exception cref="T:System.IO.IOException">Thrown when "package" is not opened with Write access.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when the package is not valid Open XML document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.OpenCore(System.IO.Stream,System.Boolean)"> <summary> Initializes / Create a new instance of the OpenXmlPackage class from the IO stream . </summary> <param name="stream">The IO stream on which to open the package.</param> <param name="readWriteMode">In ReadWrite mode. False for Read only mode.</param> <exception cref="T:System.IO.IOException">The package to open requires read or read/write permission and the specified stream is write-only.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.CreateCore(System.IO.Stream)"> <summary> Initializes / Create a new instance of the OpenXmlPackage class from the IO stream . </summary> <param name="stream">The IO stream on which to open the package.</param> <exception cref="T:System.IO.IOException">The package to open requires write or read/write permission and the specified stream is read-only.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.OpenCore(System.String,System.Boolean)"> <summary> Initializes / Create a new instance of the OpenXmlPackage class from the specified file. </summary> <param name="path">The path and file name of the target Package for the OpenXmlPackage.</param> <param name="readWriteMode">In ReadWrite mode. False for Read only mode.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.CreateCore(System.String)"> <summary> Initializes / Create a new instance of the OpenXmlPackage class from the specified file. </summary> <param name="path">The path and file name of the target Package for the OpenXmlPackage.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.Load"> <summary> Load the package. Must be called in constructor of derived class </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.AddPart``1(``0)"> <summary> Add the part to the document. Must use the returned part to opertate the part added to the doucment </summary> <typeparam name="T">Derived class from OpenXmlPart.</typeparam> <param name="part">The part to be added to the document.</param> <returns>The added part in the doucment. Different from the passed in part.</returns> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part is no allowed to be added.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when one instance of same type part already exists and multiple instance of that type is not allowed.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.DeletePartsRecursivelyOfType``1"> <summary> Delete all the parts which is the specified part type from package recursively. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.Close"> <summary> Saves and closes the OpenXml package plus all underlying part streams. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.CreateMediaDataPart(System.String)"> <summary> Creates a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/> to the document package. </summary> <param name="contentType">The content type of the the new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The added <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="contentType"/> is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.CreateMediaDataPart(System.String,System.String)"> <summary> Creates a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/> to the document package. </summary> <param name="contentType">The content type of the the new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="extension">The part name extension (.dat, etc.) of the new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The added <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="contentType"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="extension"/> is null reference.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.CreateMediaDataPart(DocumentFormat.OpenXml.Packaging.MediaDataPartType)"> <summary> Creates a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/> to the document package. </summary> <param name="mediaDataPartType">The content type of the the new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The added <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.DeletePart(DocumentFormat.OpenXml.Packaging.DataPart)"> <summary> Deletes the sepcified <see cref="T:DocumentFormat.OpenXml.Packaging.DataPart"/> from the document package. </summary> <param name="dataPart">The <see cref="T:DocumentFormat.OpenXml.Packaging.DataPart"/> to be deleted.</param> <returns>True if the part is successfully removed; otherwise, false. This method also returns false if the part was not found or the parameter is null.</returns> <exception cref="T:System.InvalidOperationException">Thrown when the <paramref name="dataPart"/> is referenced by other part in the document package.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.Validate(DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationSettings)"> <summary> Validate the package ( do not validate the xml content in each part ). </summary> <param name="validationSettings">OpenXmlPackageValidationSettings for validation events.</param> <remarks>If the validationSettings is null or no EventHandler is set, the default behavior is throw OpenXmlPackageException on validating error. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.Validate(DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationSettings,DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Validate the package ( do not validate the xml content in each part ). </summary> <param name="validationSettings">OpenXmlPackageValidationSettings for validation events.</param> <param name="fileFormatVersion">The target file format version.</param> <remarks>If the validationSettings is null or no EventHandler is set, the default behavior is throw OpenXmlPackageException on validating error. </remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.ReserveUri(System.String,System.Uri)"> <summary> Reserve the Uri of the loaded part. </summary> <param name="contentType"></param> <param name="partUri"></param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.GetUniquePartUri(System.String,System.Uri,System.String,System.String,System.String)"> <summary> Get a unique part Uri for new created part. </summary> <param name="contentType">The content type of the part.</param> <param name="parentUri">The uri of the parent part.</param> <param name="targetPath"></param> <param name="targetName"></param> <param name="targetExt"></param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.GetUniquePartUri(System.String,System.Uri,System.Uri)"> <summary> Get a unique part Uri for new created part. </summary> <param name="contentType">The content type of the part.</param> <param name="parentUri">The uri of the parent part.</param> <param name="targetUri"></param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.ThrowIfObjectDisposed"> <summary> Throw if object is disposed. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.Dispose(System.Boolean)"> <summary> Flushes and saves the content, closes the document, and releases all resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.Dispose"> <summary> Flushes and saves the content, closes the document, and releases all resources. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.IsValidMainPartContentType(System.String)"> <summary> Test whether the content type is valid for main part of the package. </summary> <param name="contentType">The content type.</param> <returns>True is valid.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.ChangeDocumentTypeInternal``1"> <summary> Change the document type. </summary> <typeparam name="T">The type of the document's main part.</typeparam> <remarks>The MainDocumentPart will be changed.</remarks> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.DeleteUnusedDataPartOnClose"> <summary> Deleting all DataParts that are not referenced by any Media / Audio / Video reference relationship. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.FindDataPart(System.Uri)"> <summary> Find the DataPart from the part Uri. </summary> <param name="partUri">The part Uri.</param> <returns>Returns null if no DataPart with the specified Uri.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.Package"> <summary> Gets the Package of the document. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.FileOpenAccess"> <summary> Gets the FileAccess setting for the document. The current IO access setting: Read, Write, or ReadWrite. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.CompressionOption"> <summary> Get / Set the compression level for content of new part. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.PackageProperties"> <summary> Gets the core properties (PackageProperties) of the Open XML document (package). </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.PartExtensionProvider"> <summary> PartExtensionProvider which provide map from ContentType to part extension </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.MaxCharactersInPart"> <summary> Gets or sets a value indicating the maximum allowable number of characters in an Open XML part. A zero (0) value means no limits on the size of the part. A non-zero value specifies the maximum size, in characters. </summary> <remarks> This property allows you to mitigate denial of service attacks where the attacker submits package with extremely large Opexn XML part. By limiting the size of a part, you can detect the attack and recover reliably. </remarks> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.DataParts"> <summary> Enumerates all the <see cref="T:DocumentFormat.OpenXml.Packaging.DataPart"/> in the document package. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.MarkupCompatibilityProcessSettings"> <summary> Gets the markup compatibilty settings applied in loading time </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.AutoSave"> <summary> Gets the flag indicating whether the parts should be saved on disposing. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.MainPartRelationshipType"> <summary> Get the relationship type of the main part. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.MainPartContentType"> <summary> Get / Set the content type of the main part of the package. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackage.ValidMainPartContentTypes"> <summary> Get the list of valid content type for main part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationSettings"> <summary> Specifies the event handlers that will handle OpenXmlPackage validation events and the OpenXmlPackageValidationEventArgs. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationSettings.GetEventHandler"> <summary> Get the event handler </summary> <returns></returns> </member> <member name="E:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationSettings.EventHandler"> <summary> Represents the callback method that will handle OpenXmlPackage validation events and the OpenXmlPackageValidationEventArgs. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationSettings.FileFormat"> <summary> Gets or sets the file format version the validation is targeting to. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationEventArgs"> <summary> Defines OpenXmlPackageValidationEventArgs. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationEventArgs.Message"> <summary> Gets the message string of the event. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationEventArgs.PartClassName"> <summary> Gets the class name of the part in issue. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationEventArgs.SubPart"> <summary> Gets the part caused the event. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationEventArgs.Part"> <summary> Gets the part in which the validation is processing. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenXmlPackageValidationEventArgs.DataPartReferenceRelationship"> <summary> The DataPartReferenceRelationship caused the event. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException"> <summary> OpenXmlPackageException, exception class for errors. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException.#ctor"> <summary> Initializes a new instance of the OpenXmlPackageException class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException.#ctor(System.String)"> <summary> Initializes a new instance of the OpenXmlPackageException class with a specified error message. </summary> <param name="message">The message that describes the error. </param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the OpenXmlPackageException class with serialized data. </summary> <param name="info">The SerializationInfo that holds the serialized object data about the exception being thrown.</param> <param name="context">The StreamingContext that contains contextual information about the source or destination.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException.#ctor(System.String,System.Exception)"> <summary> Initializes a new instance of the OpenXmlPackageException class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary> <param name="message">The error message that explains the reason for the exception.</param> <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param> </member> <member name="T:DocumentFormat.OpenXml.Packaging.OpenSettings"> <summary> Defines OpenSettings - the settings when openning a document. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenSettings.AutoSave"> <summary> Gets/Sets the value on whether to autosave the modification on the document. Default is true. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenSettings.MarkupCompatibilityProcessSettings"> <summary> Gets/Sets the value on the MarkupCompatibility Processing Mode. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.OpenSettings.MaxCharactersInPart"> <summary> Gets or sets a value indicating the maximum allowable number of characters in an Open XML part. A zero (0) value means no limits on the size of the part. A non-zero value specifies the maximum size, in characters. </summary> <remarks> This property allows you to mitigate denial of service attacks where the attacker submits package with extremely large Opexn XML part. By limiting the size of a part, you can detect the attack and recover reliably. </remarks> </member> <member name="T:DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessSettings"> <summary> Defines MarkupCompatibilityProcessingSettings. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessSettings.#ctor(DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessMode,DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Create a MarkupCompatibilityProcessSettings </summary> <param name="processMode">The MarkupCompatibilityProcessMode</param> <param name="targetFileFormatVersions">The targetFileFormatVersion, it is ignored if the MarkupCompatibilityProcessMode is NoProcess</param> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessSettings.ProcessMode"> <summary> Gets the ProcessMode </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessSettings.TargetFileFormatVersions"> <summary> Gets the target file format versions </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessMode"> <summary> Defines MarkupCompatibilityProcessMode - the Mode on how to process the Markup Compatibility tags in the document. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessMode.NoProcess"> <summary> Do not process MarkupCompatibility tags. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessMode.ProcessLoadedPartsOnly"> <summary> Process the loaded parts. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessMode.ProcessAllParts"> <summary> Process all the parts in the package. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackagePartIterator"> <summary> Traversal parts in the <see cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackage"/> by breadth-first. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackagePartIterator.#ctor(DocumentFormat.OpenXml.Packaging.OpenXmlPackage)"> <summary> Constructor. </summary> <param name="package">The <see cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackage"/> to enumerate parts.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackagePartIterator.GetEnumerator"> <summary> Gets enumerator for parts in the whole package. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.OpenXmlPackagePartIterator.System#Collections#IEnumerable#GetEnumerator"> <summary> Gets enumerator for parts in the whole package. </summary> <returns></returns> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlPartRootElement"> <summary> OpenXmlPartRootElement - base class for all root elements. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.#ctor"> <summary> OpenXmlPartRootElement constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.#ctor(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> OpenXmlPartRootElement constructor </summary> <param name="openXmlPart"></param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.#ctor(System.String)"> <summary> OpenXmlPartRootElement constructor </summary> <param name="outerXml">The outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> OpenXmlPartRootElement constructor </summary> <param name="childElements">All child elements</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> OpenXmlPartRootElement constructor </summary> <param name="childElements">All child elements</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.LoadFromPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Load the DOM tree from the Open XML part. </summary> <param name="openXmlPart">The part this root element to be loaded from.</param> <exception cref="T:System.IO.InvalidDataException">Thrown when the part contains an incorrect root element.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.LoadFromPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.IO.Stream)"> <summary> Load the DOM tree from the Open XML part. </summary> <param name="openXmlPart">The part this root element to be loaded from.</param> <param name="partStream">The stream of the part.</param> <returns> Returns true when the part stream is loaded successfully into this root element. Returns false when the part stream does not contain any xml element. </returns> <exception cref="T:System.IO.InvalidDataException">Thrown when the part stream contains an incorrect root element.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.SaveToPart(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Save the DOM into the OpenXML part. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.Save(System.IO.Stream)"> <summary> Save the DOM tree to stream. </summary> <param name="stream">The stream the xml to be saved in.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.Save"> <summary> Saves the data in the DOM tree back to the part. It could be called multiple times as well. Each time it is called, the stream will be flushed. </summary> <remarks> User must call this method explicitly to save the changes in the DOM tree. </remarks> <exception cref="T:System.InvalidOperationException">Thrown when the tree is not associated with a part.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.Reload"> <summary> Reloads the part content into Open XML DOM tree. It could be called multiple times and each time it is called, the tree will be reloaded; previous changes on the tree are abandoned. </summary> <exception cref="T:System.InvalidOperationException">Thrown when the tree is not associated with a part.</exception> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartRootElement.WriteTo(System.Xml.XmlWriter)"> <summary> Saves the current node to the specified XmlWriter. </summary> <param name="xmlWriter">The XmlWriter to which you want to save. </param> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartRootElement.RootElementContext"> <summary> Gets the OpenXmlEementContext. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartRootElement.OpenXmlPart"> <summary> Get / set the part that is associated with the DOM tree. It returns null when the DOM tree is not associated with a part. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartRootElement.WriteAllNamespaceOnRoot"> <summary> If this property is true, then the Save method will try write all namespace declation on the root element. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlReader"> <summary> Defines the OpenXmlReader. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.#ctor"> <summary> Initializes a new instance of the OpenXmlReader. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.#ctor(System.Boolean)"> <summary> Initializes a new instance of the OpenXmlReader. </summary> <param name="readMiscNodes">Setting it to ¡®false¡¯ will define the reader¡¯s behavior to skip all miscellaneous nodes. The default value is ¡®false¡¯.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Create(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Create an OpenXmlReader from the OpenXmlPart. </summary> <param name="openXmlPart">The OpenXmlPart to be read.</param> <returns>The created OpenXmlReader.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Create(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.Boolean)"> <summary> Create an OpenXmlReader from the OpenXmlPart. </summary> <param name="openXmlPart">The OpenXmlPart to be read.</param> <param name="readMiscNodes">Setting it to ¡®false¡¯ will define the reader¡¯s behavior to skip all miscellaneous nodes. The default value is ¡®false¡¯.</param> <returns>The created OpenXmlReader.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Create(System.IO.Stream)"> <summary> Create an OpenXmlReader from the part stream </summary> <param name="partStream">part stream</param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Create(System.IO.Stream,System.Boolean)"> <summary> Create an OpenXmlReader from the part stream </summary> <param name="partStream">part stream</param> <param name="readMiscNodes">Setting it to ¡®false¡¯ will define the reader¡¯s behavior to skip all miscellaneous nodes. The default value is ¡®false¡¯.</param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Create(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Create an OpenXmlReader from the OpenXmlElement (travel the DOM tree). </summary> <param name="openXmlElement">The OpenXmlElement to be read.</param> <returns>The created OpenXmlReader.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Create(DocumentFormat.OpenXml.OpenXmlElement,System.Boolean)"> <summary> Create an OpenXmlReader from the OpenXmlElement (travel the DOM tree). </summary> <param name="openXmlElement">The OpenXmlElement to be read.</param> <param name="readMiscNodes">Setting it to ¡®false¡¯ will define the reader¡¯s behavior to skip all miscellaneous nodes. The default value is ¡®false¡¯.</param> <returns>The created OpenXmlReader.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Read"> <summary> Move to next element. </summary> <returns>true if the next element was read successfully; false if there are no more elements to read. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.ReadFirstChild"> <summary> Move to first child. </summary> <returns>true if the first child element was read successfully; false if there are no child elements to read. </returns> <remarks>Only can be called on element start. Current will move to the end tag if no child element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.ReadNextSibling"> <summary> Move to next sibling element. </summary> <returns>true if the next sibling element was read successfully; false if there are no more sibling elements to read. </returns> <remarks>Current will move to the end tag of the parent if no more sibling element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Skip"> <summary> Skips the children of the current node. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.LoadCurrentElement"> <summary> Load the element at current cursor. </summary> <returns>The OpenXmlElement.</returns> <exception cref="T:System.InvalidOperationException">When the current is element end.</exception> <remarks>The new current element is the end of the element after LoadCurrentElement().</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.GetText"> <summary> Gets the text of the element if the element is OpenXmlLeafTextElement. Return String.Empry for other elements. </summary> <returns> The text of the element if the element is OpenXmlLeafTextElement. Return String.Empry for other elements. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Close"> <summary> Close the reader. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.ThrowIfObjectDisposed"> <summary> Throw if object is disposed. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Dispose(System.Boolean)"> <summary> Closes the reader, and releases all resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlReader.Dispose"> <summary> Closes the reader, and releases all resources. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.ReadMiscNodes"> <summary> Get a value indicating whether the OpenXmlReader will read (or skip) all miscellaneous nodes. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.Encoding"> <summary> Gets the encoding of the XML file. </summary> <remarks> Returns null if encoding is no specified in the xml file. </remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.StandaloneXml"> <summary> Gets the standalone property in the XML declaration of the XML stream. Default is null. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.HasAttributes"> <summary> Gets a value indicating whether the current node has any attributes. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.Attributes"> <summary> Gets the list of attributes of the current element </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.NamespaceDeclarations"> <summary> Gets the namespace declarations in the current element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.ElementType"> <summary> Gets the type of the corresponding strong typed class of the current element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.IsMiscNode"> <summary> When overridden in a derived class, gets a value indicating whether the current node is an misc XML node (non element). </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.IsStartElement"> <summary> When overridden in a derived class, gets a value indicating whether the current node is an element start. </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.IsEndElement"> <summary> When overridden in a derived class, gets a value indicating whether the current node is an element end. </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.Depth"> <summary> Gets the depth of the current node in the XML document. The depth of the root element is 0. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.EOF"> <summary> When overridden in a derived class, gets a value indicating whether the reader is positioned at the end of the stream. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.LocalName"> <summary> When overridden in a derived class, gets the local name of the current node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.NamespaceUri"> <summary> When overridden in a derived class, gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlReader.Prefix"> <summary> When overridden in a derived class, gets the namespace prefix associated with the current node. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlPartReader"> <summary> Defines the OpenXmlPartReader. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.#ctor(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Initializes a new instance of the OpenXmlPartReader. </summary> <param name="openXmlPart">The OpenXmlPart to be read.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.#ctor(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.Boolean)"> <summary> Initializes a new instance of the OpenXmlPartReader. </summary> <param name="openXmlPart">The OpenXmlPart to be read.</param> <param name="readMiscNodes">Setting it to ¡®false¡¯ will define the reader¡¯s behavior to skip all miscellaneous nodes. The default value is ¡®false¡¯.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the OpenXmlPartReader. </summary> <param name="partStream">The part stream of the OpenXmlPart to be read.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.#ctor(System.IO.Stream,System.Boolean)"> <summary> Initializes a new instance of the OpenXmlPartReader. </summary> <param name="partStream">The part stream of the OpenXmlPart to be read.</param> <param name="readMiscNodes">Setting it to ¡®false¡¯ will define the reader¡¯s behavior to skip all miscellaneous nodes. The default value is ¡®false¡¯.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.Read"> <summary> Move to next element. </summary> <returns>true if the next element was read successfully; false if there are no more elements to read. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.ReadFirstChild"> <summary> Move to first child. </summary> <returns>true if the first child element was read successfully; false if there are no child elements to read. </returns> <remarks>Only can be called on element start. Current will move to the end tag if no child element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.ReadNextSibling"> <summary> Move to next sibling element. </summary> <returns>true if the next sibling element was read successfully; false if there are no more sibling elements to read. </returns> <remarks>Current will move to the end tag of the parent if no more sibling element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.Skip"> <summary> Skips the children of the current node. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.MoveToNextElement"> <summary> Move to next element </summary> <returns>true if the next element was read successfully; false if there are no more elements to read. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.MoveToFirstChild"> <summary> Move to first child </summary> <returns>true if the first child element was read successfully; false if there are no child elements to read. </returns> <remarks>Only can be called on element start. Current will move to the end tag if no child element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.MoveToNextSibling"> <summary> Move to next sibling element </summary> <returns>true if the next sibling element was read successfully; false if there are no more sibling elements to read. </returns> <remarks>Current will move to the end tag of the parent if no more sibling element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.InnerSkip"> <summary> Skips the children of the current node. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.LoadCurrentElement"> <summary> Load the element at current cursor. </summary> <returns>The OpenXmlElement.</returns> <exception cref="T:System.InvalidOperationException">When the current is element end.</exception> <remarks>The new current element is the end of the element after LoadCurrentElement().</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.GetText"> <summary> Gets the text of the element if the element is OpenXmlLeafTextElement. Return String.Empry for other elements. </summary> <returns> The text of the element if the element is OpenXmlLeafTextElement. Return String.Empry for other elements. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartReader.Close"> <summary> Close the reader. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.Encoding"> <summary> Gets the encoding of the XML file. </summary> <remarks> Returns null if encoding is no specified in the xml file. </remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.StandaloneXml"> <summary> Get the standalone property of the XML file. False if there is no "standalone" in the XML declaration stream. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.Attributes"> <summary> Gets the list of attributes of the current element </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.NamespaceDeclarations"> <summary> Gets the namespace declarations in the current element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.ElementType"> <summary> Gets the type of the corresponding strong typed class of the current element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.IsMiscNode"> <summary> Gets a value indicating whether the current node is an misc XML node (non element). </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.IsStartElement"> <summary> Gets a value indicating whether the current node is an element start. </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.IsEndElement"> <summary> Gets a value indicating whether the current node is an element end. </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.Depth"> <summary> Gets the depth of the current node in the XML document. The depth of the root element is 0. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.EOF"> <summary> Gets a value indicating whether the reader is positioned at the end of the stream. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.LocalName"> <summary> Gets the local name of the current node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.NamespaceUri"> <summary> Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlPartReader.Prefix"> <summary> Gets the namespace prefix associated with the current node. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlDomReader"> <summary> Defines the OpenXmlDomReader. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.#ctor(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Initializes a new instance of the OpenXmlDomReader. </summary> <param name="openXmlElement">The OpenXmlElement to be read.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.#ctor(DocumentFormat.OpenXml.OpenXmlElement,System.Boolean)"> <summary> Initializes a new instance of the OpenXmlDomReader. </summary> <param name="openXmlElement">The OpenXmlElement to be read.</param> <param name="readMiscNodes">Setting it to ¡®false¡¯ will define the reader¡¯s behavior to skip all miscellaneous nodes. The default value is ¡®false¡¯.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.Read"> <summary> Move to next element. </summary> <returns>true if the next element was read successfully; false if there are no more elements to read. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.ReadFirstChild"> <summary> Move to first child. </summary> <returns>true if the first child element was read successfully; false if there are no child elements to read. </returns> <remarks>Only can be called on element start. Current will move to the end tag if no child element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.ReadNextSibling"> <summary> Move to next sibling element. </summary> <returns>true if the next sibling element was read successfully; false if there are no more sibling elements to read. </returns> <remarks>Current will move to the end tag of the parent if no more sibling element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.Skip"> <summary> Skips the children of the current node. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.MoveToNextElement"> <summary> Move to next element </summary> <returns>true if the next element was read successfully; false if there are no more elements to read. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.MoveToFirstChild"> <summary> Move to first child </summary> <returns>true if the first child element was read successfully; false if there are no child elements to read. </returns> <remarks>Only can be called on element start. Current will move to the end tag if no child element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.MoveToNextSibling"> <summary> Move to next sibling element </summary> <returns>true if the next sibling element was read successfully; false if there are no more sibling elements to read. </returns> <remarks>Current will move to the end tag of the parent if no more sibling element.</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.InnerSkip"> <summary> Skips the children of the current node. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.LoadCurrentElement"> <summary> Load the element at current cursor. </summary> <returns>The OpenXmlElement.</returns> <exception cref="T:System.InvalidOperationException">When the current is element end.</exception> <remarks>The new current element is the end of the element after LoadCurrentElement().</remarks> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.GetText"> <summary> Gets the text of the element if the element is OpenXmlLeafTextElement. Return String.Empry for other elements. </summary> <returns> The text of the element if the element is OpenXmlLeafTextElement. Return String.Empry for other elements. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlDomReader.Close"> <summary> Close the reader. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.Attributes"> <summary> Gets the list of attributes of the current element </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.NamespaceDeclarations"> <summary> Gets the namespace declarations in the current element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.ElementType"> <summary> Gets the type of the corresponding strong typed class of the current element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.IsMiscNode"> <summary> Gets a value indicating whether the current node is an misc XML node (non element). </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.IsStartElement"> <summary> Gets a value indicating whether the current node is an element start. </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.IsEndElement"> <summary> Gets a value indicating whether the current node is an element end. </summary> <remarks>IsStartElement and IsEndElement will be false when IsMiscNode==true.</remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.Depth"> <summary> Gets the depth of the current node in the XML document. The depth of the root element is 0. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.EOF"> <summary> Gets a value indicating whether the reader is positioned at the end of the stream. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.LocalName"> <summary> Gets the local name of the current node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.NamespaceUri"> <summary> Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlDomReader.Prefix"> <summary> Gets the namespace prefix associated with the current node. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlSimpleType"> <summary> Defines the abstract base class for all simple types used in attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.#ctor"> <summary> Initializes a new instance of the OpenXmlSimpleType. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.#ctor(DocumentFormat.OpenXml.OpenXmlSimpleType)"> <summary> Initializes a new instance of the OpenXmlSimpleType. </summary> <param name="source">The source OpenXmlSimpleType.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.ToString"> <summary> Returns a String that represents the current value. </summary> <returns>A String that represents the current value. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.Clone"> <summary> Creates a duplicate of this value. </summary> <remarks> Deep copy clone. </remarks> <returns>The cloned value.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.op_Implicit(DocumentFormat.OpenXml.OpenXmlSimpleType)~System.String"> <summary> Implicit converter to String. </summary> <param name="xmlAttribute">The OpenXmlSimpleType instance.</param> <returns>The string value.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.GetListItems"> <summary> Only the ListValue will overrid this method. </summary> <returns>Returns items in list.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Test whether the value is allowed in the specified file format version. Only for EnumValue. </summary> <param name="fileFormat">The file format version.</param> <returns>True if the value is defined in the specified file format version.</returns> <remarks> Method to support enum validation in schema validation. </remarks> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlSimpleType.TextValue"> <summary> DON'T use this property. Only for OpenXmlSimpleType.cs internal use. The internal raw text value. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlSimpleType.HasValue"> <summary> Gets a value indicating whether underneath text value is valid value. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlSimpleType.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlSimpleValue`1"> <summary> Defines OpenXmlSimpleValue, a generic base class for simple value types (Int32, UInt32, Byte, struct, etc). </summary> <typeparam name="T">The type of the value.</typeparam> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleValue`1.#ctor"> <summary> Initializes a new instance of the OpenXmlSimpleValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleValue`1.#ctor(`0)"> <summary> Initializes a new instance of the OpenXmlSimpleValue. </summary> <param name="value">The value in type T.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleValue`1.#ctor(DocumentFormat.OpenXml.OpenXmlSimpleValue{`0})"> <summary> Initializes a new instance of the OpenXmlSimpleValue by deep copy. </summary> <param name="source">The source OpenXmlSimleValue.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlSimpleValue`1.op_Implicit(DocumentFormat.OpenXml.OpenXmlSimpleValue{`0})~`0"> <summary> Implicit converter to T. </summary> <param name="xmlAttribute">The OpenXmlSimpleValue instance.</param> <returns>The internal value in OpenXmlSimpleValue.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlSimpleValue`1.HasValue"> <summary> Gets a value indicating whether underneath text value is valid value. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlSimpleValue`1.Value"> <summary> Gets or sets the value of the simple value. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlSimpleValue`1.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.BooleanValue"> <summary> Defines BooleanValue - Boolean value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.#ctor"> <summary> Initializes a new instance of the BooleanValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.#ctor(System.Boolean)"> <summary> Initializes a new instance of the BooleanValue. </summary> <param name="value">The Boolean value.</param> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.#ctor(DocumentFormat.OpenXml.BooleanValue)"> <summary> Initializes a new instance of the BooleanValue by deep copy. </summary> <param name="source">The source BooleanValue.</param> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.op_Implicit(DocumentFormat.OpenXml.BooleanValue)~System.Boolean"> <summary> Implicit converter to Boolean. </summary> <param name="xmlAttribute">The BooleanValue to be converted.</param> <returns>The internal Boolean value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.op_Implicit(System.Boolean)~DocumentFormat.OpenXml.BooleanValue"> <summary> Implicit converter from Boolean. </summary> <param name="value">The specified value.</param> <returns>A new BooleanValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.FromBoolean(System.Boolean)"> <summary> Returns a new BooleanValue object created from Boolean. </summary> <param name="value">A Boolean value to create a new BooleanValue object from.</param> <returns>A BooleanValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.BooleanValue.ToBoolean(DocumentFormat.OpenXml.BooleanValue)"> <summary> Returns the internal Boolean representation of a BooleanValue object. </summary> <param name="xmlAttribute">A BooleanValue object to retrieve an internal Boolean representation.</param> <returns>A Boolean value that represents a BooleanValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.BooleanValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.ByteValue"> <summary> Defines ByteValue - Byte value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.#ctor"> <summary> Initializes a new instance of the ByteValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.#ctor(System.Byte)"> <summary> Initializes a new instance of the ByteValue. </summary> <param name="value">The Byte value.</param> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.#ctor(DocumentFormat.OpenXml.ByteValue)"> <summary> Initializes a new instance of the ByteValue by deep copy. </summary> <param name="source">The source ByteValue.</param> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.op_Implicit(DocumentFormat.OpenXml.ByteValue)~System.Byte"> <summary> Implicit converter to Byte. </summary> <param name="xmlAttribute">The ByteValue to be converted.</param> <returns>The internal Byte value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.op_Implicit(System.Byte)~DocumentFormat.OpenXml.ByteValue"> <summary> Implicit converter from Byte. </summary> <param name="value">The specified value.</param> <returns>A new ByteValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.FromByte(System.Byte)"> <summary> Returns a new ByteValue object created from Byte. </summary> <param name="value">A Byte value to create a new ByteValue object from.</param> <returns>A ByteValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.ByteValue.ToByte(DocumentFormat.OpenXml.ByteValue)"> <summary> Returns the internal Byte representation of a ByteValue object. </summary> <param name="xmlAttribute">A ByteValue object to retrieve an internal Byte representation.</param> <returns>A Byte value that represents a ByteValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.ByteValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.SByteValue"> <summary> Defines SByteValue - SByte value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.#ctor"> <summary> Initializes a new instance of the SByteValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.#ctor(System.SByte)"> <summary> Initializes a new instance of the SByteValue. </summary> <param name="value">The SByte value.</param> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.#ctor(DocumentFormat.OpenXml.SByteValue)"> <summary> Initializes a new instance of the SByteValue by deep copy. </summary> <param name="source">The source SByteValue.</param> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.op_Implicit(DocumentFormat.OpenXml.SByteValue)~System.SByte"> <summary> Implicit converter to SByte. </summary> <param name="xmlAttribute">The SByteValue to be converted.</param> <returns>The internal SByte value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.op_Implicit(System.SByte)~DocumentFormat.OpenXml.SByteValue"> <summary> Implicit converter from SByte. </summary> <param name="value">The specified value.</param> <returns>A new SByteValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.FromSByte(System.SByte)"> <summary> Returns a new SByteValue object created from Byte. </summary> <param name="value">A SByte value to create a new BSyteValue object from.</param> <returns>A SByteValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.SByteValue.ToSByte(DocumentFormat.OpenXml.SByteValue)"> <summary> Returns the internal SByte representation of a SByteValue object. </summary> <param name="xmlAttribute">A SByteValue object to retrieve an internal SByte representation.</param> <returns>A SByte value that represents a SByteValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.SByteValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.Int16Value"> <summary> Defines Int16Value - Int16 value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.#ctor"> <summary> Initializes a new instance of the Int16Value. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.#ctor(System.Int16)"> <summary> Initializes a new instance of the Int16Value. </summary> <param name="value">The Int16 value.</param> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.#ctor(DocumentFormat.OpenXml.Int16Value)"> <summary> Initializes a new instance of the Int16Value by deep copy. </summary> <param name="source">The source Int16Value.</param> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.op_Implicit(DocumentFormat.OpenXml.Int16Value)~System.Int16"> <summary> Implicit converter to Int16. </summary> <param name="xmlAttribute">The Int16Value to be converted.</param> <returns>The internal Int16 value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.op_Implicit(System.Int16)~DocumentFormat.OpenXml.Int16Value"> <summary> Implicit converter from Int16. </summary> <param name="value">The specified value.</param> <returns>A new Int16Value instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.FromInt16(System.Int16)"> <summary> Returns a new Int16Value object created from Int16. </summary> <param name="value">A Int16 value to create a new Int16Value object from.</param> <returns>A Int16Value that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.Int16Value.ToInt16(DocumentFormat.OpenXml.Int16Value)"> <summary> Returns the internal Int16 representation of a Int16Value object. </summary> <param name="xmlAttribute">A Int16Value object to retrieve an internal Int16 representation.</param> <returns>A Int16 value that represents a Int16Value object.</returns> </member> <member name="P:DocumentFormat.OpenXml.Int16Value.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.Int32Value"> <summary> Defines Int32Value - Int32 value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.#ctor"> <summary> Initializes a new instance of the Int32Value. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.#ctor(System.Int32)"> <summary> Initializes a new instance of the Int32Value. </summary> <param name="value">The Int32 value.</param> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.#ctor(DocumentFormat.OpenXml.Int32Value)"> <summary> Initializes a new instance of the Int32Value by deep copy. </summary> <param name="source">The source Int32Value.</param> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.op_Implicit(DocumentFormat.OpenXml.Int32Value)~System.Int32"> <summary> Implicit converter to Int32. </summary> <param name="xmlAttribute">The Int32Value to be converted.</param> <returns>The internal Int32 value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.op_Implicit(System.Int32)~DocumentFormat.OpenXml.Int32Value"> <summary> Implicit converter from Int32. </summary> <param name="value">The specified value.</param> <returns>A new Int32Value instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.FromInt32(System.Int32)"> <summary> Returns a new Int32Value object created from Int32. </summary> <param name="value">A Int32 value to create a new Int32Value object from.</param> <returns>A Int32Value that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.Int32Value.ToInt32(DocumentFormat.OpenXml.Int32Value)"> <summary> Returns the internal Int32 representation of a Int32Value object. </summary> <param name="xmlAttribute">A Int32Value object to retrieve an internal Int32 representation.</param> <returns>A Int32 value that represents a Int32Value object.</returns> </member> <member name="P:DocumentFormat.OpenXml.Int32Value.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.Int64Value"> <summary> Defines Int64Value - Int64 value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.#ctor"> <summary> Initializes a new instance of the Int64Value. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.#ctor(System.Int64)"> <summary> Initializes a new instance of the Int64Value. </summary> <param name="value">The Int64 value.</param> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.#ctor(DocumentFormat.OpenXml.Int64Value)"> <summary> Initializes a new instance of the Int64Value by deep copy. </summary> <param name="source">The source Int64Value.</param> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.op_Implicit(DocumentFormat.OpenXml.Int64Value)~System.Int64"> <summary> Implicit converter to Int64. </summary> <param name="xmlAttribute">The Int64Value to be converted.</param> <returns>The internal Int64 value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.op_Implicit(System.Int64)~DocumentFormat.OpenXml.Int64Value"> <summary> Implicit converter from Int64. </summary> <param name="value">The specified value.</param> <returns>A new Int64Value instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.FromInt64(System.Int64)"> <summary> Returns a new Int64Value object created from Int64. </summary> <param name="value">A Int64 value to create a new Int64Value object from.</param> <returns>A Int64Value that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.Int64Value.ToInt64(DocumentFormat.OpenXml.Int64Value)"> <summary> Returns the internal Int64 representation of a Int64Value object. </summary> <param name="xmlAttribute">A Int64Value object to retrieve an internal Int64 representation.</param> <returns>A Int64 value that represents a Int64Value object.</returns> </member> <member name="P:DocumentFormat.OpenXml.Int64Value.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.IntegerValue"> <summary> Defines IntegerValue - represent xsd:integer value for attributes. </summary> <remarks> integer is ¡¤derived¡¤ from decimal by fixing the value of ¡¤fractionDigits¡¤ to be 0 and disallowing the trailing decimal point. The ¡¤value space¡¤ of integer is the infinite set {...,-2,-1,0,1,2,...}. The ¡¤base type¡¤ of integer is decimal. We use Int64 as the internal type at now. TODO: Should we use decimal as the internal type? </remarks> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.#ctor"> <summary> Initializes a new instance of the IntegerValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.#ctor(System.Int64)"> <summary> Initializes a new instance of the IntegerValue. </summary> <param name="value">The Int64 value.</param> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.#ctor(DocumentFormat.OpenXml.IntegerValue)"> <summary> Initializes a new instance of the IntegerValue by deep copy. </summary> <param name="source">The source IntegerValue.</param> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.op_Implicit(DocumentFormat.OpenXml.IntegerValue)~System.Int64"> <summary> Implicit converter to Int64. </summary> <param name="xmlAttribute">The IntegerValue to be converted.</param> <returns>The internal Int64 value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.op_Implicit(System.Int64)~DocumentFormat.OpenXml.IntegerValue"> <summary> Implicit converter from Int64. </summary> <param name="value">The specified value.</param> <returns>A new IntegerValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.FromInt64(System.Int64)"> <summary> Returns a new IntegerValue object created from Int64. </summary> <param name="value">A Int64 value to create a new IntegerValue object from.</param> <returns>A IntegerValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.IntegerValue.ToInt64(DocumentFormat.OpenXml.IntegerValue)"> <summary> Returns the internal Int64 representation of a IntegerValue object. </summary> <param name="xmlAttribute">A IntegerValue object to retrieve an internal Int64 representation.</param> <returns>A Int64 value that represents a IntegerValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.IntegerValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.UInt16Value"> <summary> Defines UInt16Value - UInt16 value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.#ctor"> <summary> Initializes a new instance of the UInt16Value. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.#ctor(System.UInt16)"> <summary> Initializes a new instance of the UInt16Value. </summary> <param name="value">The UInt16 value.</param> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.#ctor(DocumentFormat.OpenXml.UInt16Value)"> <summary> Initializes a new instance of the UInt16Value by deep copy. </summary> <param name="source">The source UInt16Value.</param> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.op_Implicit(DocumentFormat.OpenXml.UInt16Value)~System.UInt16"> <summary> Implicit converter to UInt16. </summary> <param name="xmlAttribute">The UInt16Value to be converted.</param> <returns>The internal UInt16 value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.op_Implicit(System.UInt16)~DocumentFormat.OpenXml.UInt16Value"> <summary> Implicit converter from UInt16. </summary> <param name="value">The specified value.</param> <returns>A new UInt16Value instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.FromUInt16(System.UInt16)"> <summary> Returns a new UInt16Value object created from UInt16. </summary> <param name="value">A UInt16 value to create a new UInt16Value object from.</param> <returns>A UInt16Value that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.UInt16Value.ToUInt16(DocumentFormat.OpenXml.UInt16Value)"> <summary> Returns the internal UInt16 representation of a UInt16Value object. </summary> <param name="xmlAttribute">A UInt16Value object to retrieve an internal UInt16 representation.</param> <returns>A UInt16 value that represents a UInt16Value object.</returns> </member> <member name="P:DocumentFormat.OpenXml.UInt16Value.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.UInt32Value"> <summary> Defines UInt32Value - UInt32 value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.#ctor"> <summary> Initializes a new instance of the UInt32Value. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.#ctor(System.UInt32)"> <summary> Initializes a new instance of the UInt32Value. </summary> <param name="value">The UInt32 value.</param> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.#ctor(DocumentFormat.OpenXml.UInt32Value)"> <summary> Initializes a new instance of the UInt32Value by deep copy. </summary> <param name="source">The source UInt32Value.</param> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.op_Implicit(DocumentFormat.OpenXml.UInt32Value)~System.UInt32"> <summary> Implicit converter to UInt32. </summary> <param name="xmlAttribute">The UInt32Value to be converted.</param> <returns>The internal UInt32 value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.op_Implicit(System.UInt32)~DocumentFormat.OpenXml.UInt32Value"> <summary> Implicit converter from UInt32. </summary> <param name="value">The specified value.</param> <returns>A new UInt32Value instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.FromUInt32(System.UInt32)"> <summary> Returns a new UInt32Value object created from UInt32. </summary> <param name="value">A UInt32 value to create a new UInt32Value object from.</param> <returns>A UInt32Value that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.UInt32Value.ToUInt32(DocumentFormat.OpenXml.UInt32Value)"> <summary> Returns the internal UInt32 representation of a UInt32Value object. </summary> <param name="xmlAttribute">A UInt32Value object to retrieve an internal UInt32 representation.</param> <returns>A UInt32 value that represents a UInt32Value object.</returns> </member> <member name="P:DocumentFormat.OpenXml.UInt32Value.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.UInt64Value"> <summary> Defines UInt64Value - UInt64 value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.#ctor"> <summary> Initializes a new instance of the UInt64Value. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.#ctor(System.UInt64)"> <summary> Initializes a new instance of the UInt64Value. </summary> <param name="value">The UInt64 value.</param> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.#ctor(DocumentFormat.OpenXml.UInt64Value)"> <summary> Initializes a new instance of the UInt64Value by deep copy. </summary> <param name="source">The source UInt64Value.</param> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.op_Implicit(DocumentFormat.OpenXml.UInt64Value)~System.UInt64"> <summary> Implicit converter to UInt64. </summary> <param name="xmlAttribute">The UInt64Value to be converted.</param> <returns>The internal UInt64 value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.op_Implicit(System.UInt64)~DocumentFormat.OpenXml.UInt64Value"> <summary> Implicit converter from UInt64. </summary> <param name="value">The specified value.</param> <returns>A new UInt64Value instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.FromUInt64(System.UInt64)"> <summary> Returns a new UInt64Value object created from UInt64. </summary> <param name="value">A UInt64 value to create a new UInt64Value object from.</param> <returns>A UInt64Value that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.UInt64Value.ToUInt64(DocumentFormat.OpenXml.UInt64Value)"> <summary> Returns the internal UInt64 representation of a UInt64Value object. </summary> <param name="xmlAttribute">A UInt64Value object to retrieve an internal UInt64 representation.</param> <returns>A UInt64 value that represents a UInt64Value object.</returns> </member> <member name="P:DocumentFormat.OpenXml.UInt64Value.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.DecimalValue"> <summary> Defines DecimalValue - Decimal value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.#ctor"> <summary> Initializes a new instance of the DecimalValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.#ctor(System.Decimal)"> <summary> Initializes a new instance of the DecimalValue. </summary> <param name="value">The Decimal value.</param> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.#ctor(DocumentFormat.OpenXml.DecimalValue)"> <summary> Initializes a new instance of the DecimalValue by deep copy. </summary> <param name="source">The source DecimalValue.</param> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.op_Implicit(DocumentFormat.OpenXml.DecimalValue)~System.Decimal"> <summary> Implicit converter to Decimal. </summary> <param name="xmlAttribute">The DecimalValue to be converted.</param> <returns>The internal Decimal value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.op_Implicit(System.Decimal)~DocumentFormat.OpenXml.DecimalValue"> <summary> Implicit converter from Decimal. </summary> <param name="value">The specified value.</param> <returns>A new DecimalValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.FromDecimal(System.Decimal)"> <summary> Returns a new DecimalValue object created from Decimal. </summary> <param name="value">A Decimal value to create a new DecimalValue object from.</param> <returns>A DecimalValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.DecimalValue.ToDecimal(DocumentFormat.OpenXml.DecimalValue)"> <summary> Returns the internal Decimal representation of a DecimalValue object. </summary> <param name="xmlAttribute">A DecimalValue object to retrieve an internal Decimal representation.</param> <returns>A Decimal value that represents a DecimalValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.DecimalValue.InnerText"> <summary> The inner xml text . </summary> </member> <member name="T:DocumentFormat.OpenXml.SingleValue"> <summary> Defines SingleValue - Single value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.#ctor"> <summary> Initializes a new instance of the SingleValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.#ctor(System.Single)"> <summary> Initializes a new instance of the SingleValue. </summary> <param name="value">The Single value.</param> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.#ctor(DocumentFormat.OpenXml.SingleValue)"> <summary> Initializes a new instance of the SingleValue by deep copy. </summary> <param name="source">The source SingleValue.</param> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.op_Implicit(DocumentFormat.OpenXml.SingleValue)~System.Single"> <summary> Implicit converter to Single. </summary> <param name="xmlAttribute">The SingleValue to be converted.</param> <returns>The internal Single value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.op_Implicit(System.Single)~DocumentFormat.OpenXml.SingleValue"> <summary> Implicit converter from Single. </summary> <param name="value">The specified value.</param> <returns>A new SingleValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.FromSingle(System.Single)"> <summary> Returns a new SingleValue object created from Single. </summary> <param name="value">A Single value to create a new SingleValue object from.</param> <returns>A SingleValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.SingleValue.ToSingle(DocumentFormat.OpenXml.SingleValue)"> <summary> Returns the internal Single representation of a SingleValue object. </summary> <param name="xmlAttribute">A SingleValue object to retrieve an internal Single representation.</param> <returns>A Single value that represents a SingleValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.SingleValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.DoubleValue"> <summary> Defines DoubleValue - Double value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.#ctor"> <summary> Initializes a new instance of the DoubleValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.#ctor(System.Double)"> <summary> Initializes a new instance of the DoubleValue. </summary> <param name="value">The Double value.</param> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.#ctor(DocumentFormat.OpenXml.DoubleValue)"> <summary> Initializes a new instance of the DoubleValue by deep copy. </summary> <param name="source">The source DoubleValue.</param> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.op_Implicit(DocumentFormat.OpenXml.DoubleValue)~System.Double"> <summary> Implicit converter to Double. </summary> <param name="xmlAttribute">The DoubleValue to be converted.</param> <returns>The internal Double value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.op_Implicit(System.Double)~DocumentFormat.OpenXml.DoubleValue"> <summary> Implicit converter from Double. </summary> <param name="value">The specified value.</param> <returns>A new DoubleValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.FromDouble(System.Double)"> <summary> Returns a new DoubleValue object created from Double. </summary> <param name="value">A Double value to create a new DoubleValue object from.</param> <returns>A DoubleValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.DoubleValue.ToDouble(DocumentFormat.OpenXml.DoubleValue)"> <summary> Returns the internal Double representation of a DoubleValue object. </summary> <param name="xmlAttribute">A DoubleValue object to retrieve an internal Double representation.</param> <returns>A Double value that represents a DoubleValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.DoubleValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.DateTimeValue"> <summary> Defines DateTimeValue - DateTime value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.#ctor"> <summary> Initializes a new instance of the DateTimeValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.#ctor(System.DateTime)"> <summary> Initializes a new instance of the DateTimeValue. </summary> <param name="value">The DateTime value.</param> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.#ctor(DocumentFormat.OpenXml.DateTimeValue)"> <summary> Initializes a new instance of the DateTimeValue by deep copy. </summary> <param name="source">The source DateTimeValue.</param> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.op_Implicit(DocumentFormat.OpenXml.DateTimeValue)~System.DateTime"> <summary> Implicit converter to DateTime. </summary> <param name="xmlAttribute">The DateTimeValue to be converted.</param> <returns>The internal DateTime value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.op_Implicit(System.DateTime)~DocumentFormat.OpenXml.DateTimeValue"> <summary> Implicit converter from DateTime. </summary> <param name="value">The specified value.</param> <returns>A new DateTimeValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.FromDateTime(System.DateTime)"> <summary> Returns a new DateTimeValue object created from DateTime. </summary> <param name="value">A DateTime value to create a new DateTimeValue object from.</param> <returns>A DateTimeValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.DateTimeValue.ToDateTime(DocumentFormat.OpenXml.DateTimeValue)"> <summary> Returns the internal DateTime representation of a DateTimeValue object. </summary> <param name="xmlAttribute">A DateTimeValue object to retrieve an internal DateTime representation.</param> <returns>A DateTime value that represents a DateTimeValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.DateTimeValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.StringValue"> <summary> Defines StringValue - string value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.StringValue.#ctor"> <summary> Initializes a new instance of the StringValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.StringValue.#ctor(System.String)"> <summary> Initializes a new instance of the StringValue. </summary> <param name="value">The string value.</param> </member> <member name="M:DocumentFormat.OpenXml.StringValue.#ctor(DocumentFormat.OpenXml.StringValue)"> <summary> Initializes a new instance of the StringValue by deep copy. </summary> <param name="source">The source StringValue.</param> </member> <member name="M:DocumentFormat.OpenXml.StringValue.op_Implicit(DocumentFormat.OpenXml.StringValue)~System.String"> <summary> Implicit converter to String. </summary> <param name="xmlAttribute">The StringValue to be converted.</param> <returns>The internal String value. Returns null when xmlAttribute is null.</returns> </member> <member name="M:DocumentFormat.OpenXml.StringValue.op_Implicit(System.String)~DocumentFormat.OpenXml.StringValue"> <summary> Implicit converter from String. </summary> <param name="value">The specified value.</param> <returns>A new StringValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.StringValue.FromString(System.String)"> <summary> Returns a new StringValue object created from String. </summary> <param name="value">A String value to create a new StringValue object from.</param> <returns>A StringValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.StringValue.ToString(DocumentFormat.OpenXml.StringValue)"> <summary> Returns the internal String representation of a StringValue object. </summary> <param name="xmlAttribute">A StringValue object to retrieve an internal String representation.</param> <returns>A String value that represents a StringValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.StringValue.Value"> <summary> The string value. </summary> </member> <member name="T:DocumentFormat.OpenXml.HexBinaryValue"> <summary> Defines HexBinaryValue - represent xsd:hexBinary value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.HexBinaryValue.#ctor"> <summary> Initializes a new instance of the HexBinaryValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.HexBinaryValue.#ctor(System.String)"> <summary> Initializes a new instance of the HexBinaryValue. </summary> <param name="hexBinary">The string value.</param> </member> <member name="M:DocumentFormat.OpenXml.HexBinaryValue.#ctor(DocumentFormat.OpenXml.HexBinaryValue)"> <summary> Initializes a new instance of the HexBinaryValue by deep copy. </summary> <param name="source">The source HexBinaryValue.</param> </member> <member name="M:DocumentFormat.OpenXml.HexBinaryValue.op_Implicit(DocumentFormat.OpenXml.HexBinaryValue)~System.String"> <summary> Implicit converter to String. </summary> <param name="xmlAttribute">The HexBinaryValue to be converted.</param> <returns>The HexBinary string. Returns null when xmlAttribute is null.</returns> </member> <member name="M:DocumentFormat.OpenXml.HexBinaryValue.op_Implicit(System.String)~DocumentFormat.OpenXml.HexBinaryValue"> <summary> Implicit converter from String. </summary> <param name="value">The specified hexBinary value.</param> <returns>A new HexBinaryValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.HexBinaryValue.FromString(System.String)"> <summary> Returns a new HexBinaryValue object created from String. </summary> <param name="value">A String value to create a new HexBinaryValue object from.</param> <returns>A HexBinaryValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.HexBinaryValue.ToString(DocumentFormat.OpenXml.HexBinaryValue)"> <summary> Returns the internal String representation of a HexBinaryValue object. </summary> <param name="xmlAttribute">A HexBinaryValue object to retrieve an internal String representation.</param> <returns>A String value that represents a HexBinaryValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.HexBinaryValue.Value"> <summary> The hexBinary string value. </summary> </member> <member name="T:DocumentFormat.OpenXml.Base64BinaryValue"> <summary> Defines Base64BinaryValue - represent xsd:base64Binary value for attributes. </summary> </member> <member name="M:DocumentFormat.OpenXml.Base64BinaryValue.#ctor"> <summary> Initializes a new instance of the Base64BinaryValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.Base64BinaryValue.#ctor(System.String)"> <summary> Initializes a new instance of the Base64BinaryValue. </summary> <param name="base64Binary">The string value.</param> </member> <member name="M:DocumentFormat.OpenXml.Base64BinaryValue.#ctor(DocumentFormat.OpenXml.Base64BinaryValue)"> <summary> Initializes a new instance of the Base64BinaryValue by deep copy. </summary> <param name="source">The source Base64BinaryValue.</param> </member> <member name="M:DocumentFormat.OpenXml.Base64BinaryValue.op_Implicit(DocumentFormat.OpenXml.Base64BinaryValue)~System.String"> <summary> Implicit converter to String. </summary> <param name="xmlAttribute">The Base64BinaryValue to be converted.</param> <returns>The base64Binary string. Returns null when xmlAttribute is null.</returns> </member> <member name="M:DocumentFormat.OpenXml.Base64BinaryValue.op_Implicit(System.String)~DocumentFormat.OpenXml.Base64BinaryValue"> <summary> Implicit converter from String. </summary> <param name="value">The specified base64Binary value.</param> <returns>A new Base64BinaryValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.Base64BinaryValue.FromString(System.String)"> <summary> Returns a new Base64BinaryValue object created from String. </summary> <param name="value">A String value to create a new Base64BinaryValue object from.</param> <returns>A Base64BinaryValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.Base64BinaryValue.ToString(DocumentFormat.OpenXml.Base64BinaryValue)"> <summary> Returns the internal String representation of a Base64BinaryValue object. </summary> <param name="xmlAttribute">A Base64BinaryValue object to retrieve an internal String representation.</param> <returns>A String value that represents a Base64BinaryValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.Base64BinaryValue.Value"> <summary> The base64Binary string value. </summary> </member> <member name="T:DocumentFormat.OpenXml.ListValue`1"> <summary> Defines ListValue which represent list value attributes (xsd:list). </summary> </member> <member name="M:DocumentFormat.OpenXml.ListValue`1.#ctor"> <summary> Initializes a new instance of the StringList. </summary> </member> <member name="M:DocumentFormat.OpenXml.ListValue`1.#ctor(System.Collections.Generic.IEnumerable{`0})"> <summary> Initializes a new instance of the StringList. </summary> <param name="list">The list of the values.</param> </member> <member name="M:DocumentFormat.OpenXml.ListValue`1.#ctor(DocumentFormat.OpenXml.ListValue{`0})"> <summary> Initializes a new instance of the StringList by deep copy. </summary> <param name="source">The source ListValue.</param> </member> <member name="M:DocumentFormat.OpenXml.ListValue`1.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.ListValue`1.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.ListValue`1.GetListItems"> <summary> Only the ListValue will overrid this method. </summary> <returns>Returns items in list.</returns> </member> <member name="P:DocumentFormat.OpenXml.ListValue`1.HasValue"> <summary> Gets a value indicating whether underneath text value is valid value. </summary> </member> <member name="P:DocumentFormat.OpenXml.ListValue`1.Items"> <summary> Gets the values. </summary> </member> <member name="P:DocumentFormat.OpenXml.ListValue`1.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.EnumValue`1"> <summary> Defines EnumValue - enum value for attributes. </summary> <typeparam name="T">Must be enum with EnumStringValueAttribute on every enum value.</typeparam> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.#ctor"> <summary> Initializes a new instance of the EnumValue. </summary> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.#ctor(`0)"> <summary> Initializes a new instance of the EnumValue. </summary> <param name="value">The value.</param> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.#ctor(DocumentFormat.OpenXml.EnumValue{`0})"> <summary> Initializes a new instance of the EnumValue by deep copy. </summary> <param name="source">The source EnumValue.</param> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.op_Implicit(DocumentFormat.OpenXml.EnumValue{`0})~`0"> <summary> Implicit converter to enum. </summary> <param name="xmlAttribute">The EnumValue to be converted.</param> <returns>The internal enum value.</returns> <exception cref="T:System.InvalidOperationException">Thrown when "xmlAttribute" is null.</exception> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.op_Implicit(`0)~DocumentFormat.OpenXml.EnumValue{`0}"> <summary> Implicit converter from enum. </summary> <param name="value">The specified value.</param> <returns>A new EnumValue instance with the value.</returns> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.op_Implicit(DocumentFormat.OpenXml.EnumValue{`0})~System.String"> <summary> Implicit converter to String. </summary> <param name="value">The value to be converted</param> <returns>The converted string</returns> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.Parse"> <summary> Convert the text to meaningful value. </summary> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.TryParse"> <summary> Convert the text to meaningful value. </summary> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.EnumValue`1.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Test whether the value is allowed in the specified file format version. </summary> <param name="fileFormat">The file format version.</param> <returns>True if the value is defined in the specified file format version.</returns> <remarks> Method to support enum validation in schema validation. </remarks> </member> <member name="P:DocumentFormat.OpenXml.EnumValue`1.HasValue"> <summary> Gets a value indicating whether underneath text value is valid value. </summary> </member> <member name="P:DocumentFormat.OpenXml.EnumValue`1.Value"> <summary> Gets or sets the value of the enum. </summary> </member> <member name="P:DocumentFormat.OpenXml.EnumValue`1.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.EnumStringAttribute"> <summary> Defines EnumStringAttribute, custom attribute for fields in generated Enum. </summary> </member> <member name="M:DocumentFormat.OpenXml.EnumStringAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the EnumStringAttribute. </summary> <param name="value">The text string.</param> </member> <member name="P:DocumentFormat.OpenXml.EnumStringAttribute.Value"> <summary> Gets the text string in this custom attribute. </summary> </member> <member name="T:DocumentFormat.OpenXml.TrueFalseValueImpl"> <summary> Defines the base class implementing the common logic of <see cref="T:DocumentFormat.OpenXml.TrueFalseValue"/>, <see cref="T:DocumentFormat.OpenXml.TrueFalseBlankValue"/> and <see cref="T:DocumentFormat.OpenXml.OnOffValue"/> </summary> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValueImpl.#ctor(System.Func{System.String,System.Boolean},System.Func{System.Boolean,System.String})"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.TrueFalseValueImpl"/>. </summary> <param name="getBooleanValueMethod">The method to convert text value to boolean value.</param> <param name="getDefaultTextMethod">The method to convert boolean value to default text value.</param> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValueImpl.CloneImp"> <summary> Not implemented by <see cref="T:DocumentFormat.OpenXml.TrueFalseValueImpl"/>. </summary> <returns></returns> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseValueImpl.InnerText"> <summary> Gets and sets the inner xml text. </summary> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseValueImpl.HasValue"> <summary> Gets a value indicating whether underneath text value is valid value. </summary> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseValueImpl.Value"> <summary> Gets and sets the boolean value of the <see cref="T:DocumentFormat.OpenXml.TrueFalseValueImpl"/> type. </summary> </member> <member name="T:DocumentFormat.OpenXml.TrueFalseValue"> <summary> Define TrueFalseValue ¨C datatype for attributes that have enum values as ¡®t¡¯, ¡®f¡¯, ¡®true¡¯, ¡®false¡¯ meaning Boolean true/false </summary> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.#ctor"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.TrueFalseValue"/>. </summary> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.#ctor(System.Boolean)"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.TrueFalseValue"/>. </summary> <param name="value">The <see cref="T:System.Boolean"/> value.</param> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.#ctor(DocumentFormat.OpenXml.TrueFalseValue)"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.TrueFalseValue"/>. </summary> <param name="source">The source <see cref="T:DocumentFormat.OpenXml.TrueFalseValue"/>.</param> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.op_Implicit(DocumentFormat.OpenXml.TrueFalseValue)~System.Boolean"> <summary> Implicitly converts to <see cref="T:System.Boolean"/>. </summary> <param name="xmlAttribute">The <see cref="T:DocumentFormat.OpenXml.TrueFalseValue"/> to convert.</param> <returns>The <see cref="T:System.Boolean"/> value.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.op_Implicit(System.Boolean)~DocumentFormat.OpenXml.TrueFalseValue"> <summary> Implicitly converts from <see cref="T:System.Boolean"/> value. </summary> <param name="value">The <see cref="T:System.Boolean"/> value to convert from.</param> <returns>The <see cref="T:DocumentFormat.OpenXml.TrueFalseValue"/> value.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.FromBoolean(System.Boolean)"> <summary> Returns a new TrueFalseValue object created from Boolean. </summary> <param name="value">A Boolean value to create a new TrueFalseValue object from.</param> <returns>A TrueFalseValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.ToBoolean(DocumentFormat.OpenXml.TrueFalseValue)"> <summary> Returns the internal Boolean representation of a TrueFalseValue object. </summary> <param name="xmlAttribute">A TrueFalseValue object to retrieve an internal Boolean representation.</param> <returns>A Boolean value that represents a TrueFalseValue object.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.GetBooleanValue(System.String)"> <summary> Gets the real boolean value of the text value. </summary> <param name="textValue">The text value which could be ¡®t¡¯, ¡®f¡¯, ¡®true¡¯, ¡®false¡¯.</param> <returns>Ture on text value is ¡®t¡¯, ¡®true¡¯; False on text value is ¡®f¡¯, ¡®false¡¯.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseValue.GetDefaultTextValue(System.Boolean)"> <summary> Gets the defaul text value. </summary> <param name="boolValue">The boolean value.</param> <returns>"t" false true, "f" for false.</returns> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseValue.HasValue"> <summary> Gets a value indicating whether underneath text value is valid value. </summary> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseValue.Value"> <summary> Gets or sets the value. </summary> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.TrueFalseBlankValue"> <summary> Define TrueFalseBlankValue ¨C datatype for attributes that have enum values as ¡®t¡¯, ¡®f¡¯, ¡®true¡¯, ¡®false¡¯, ¡®¡¯ meaning Boolean true/false </summary> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.#ctor"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.TrueFalseBlankValue"/>. </summary> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.#ctor(System.Boolean)"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.TrueFalseBlankValue"/>. </summary> <param name="value">The <see cref="T:System.Boolean"/> value.</param> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.#ctor(DocumentFormat.OpenXml.TrueFalseBlankValue)"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.TrueFalseBlankValue"/>. </summary> <param name="source">The source <see cref="T:DocumentFormat.OpenXml.TrueFalseBlankValue"/>.</param> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.op_Implicit(DocumentFormat.OpenXml.TrueFalseBlankValue)~System.Boolean"> <summary> Implicitly converts to <see cref="T:System.Boolean"/>. </summary> <param name="xmlAttribute">The source <see cref="T:DocumentFormat.OpenXml.TrueFalseBlankValue"/> to convert.</param> <returns>The <see cref="T:System.Boolean"/> value.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.op_Implicit(System.Boolean)~DocumentFormat.OpenXml.TrueFalseBlankValue"> <summary> Implicitly converts from <see cref="T:System.Boolean"/> </summary> <param name="value">The source <see cref="T:System.Boolean"/> to convert from.</param> <returns>The <see cref="T:DocumentFormat.OpenXml.TrueFalseBlankValue"/> value.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.FromBoolean(System.Boolean)"> <summary> Returns a new TrueFalseBlankValue object created from Boolean. </summary> <param name="value">A Boolean value to create a new TrueFalseBlankValue object from.</param> <returns>A TrueFalseBlankValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.ToBoolean(DocumentFormat.OpenXml.TrueFalseBlankValue)"> <summary> Returns the internal Boolean representation of a TrueFalseBlankValue object. </summary> <param name="xmlAttribute">A TrueFalseBlankValue object to retrieve an internal Boolean representation.</param> <returns>A Boolean value that represents a TrueFalseBlankValue object.</returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.GetBooleanValue(System.String)"> <summary> Gets the real boolean value of the text value. </summary> <param name="textValue">The text value which could be ¡®t¡¯, ¡®f¡¯, ¡®true¡¯, ¡®false¡¯, ¡®¡¯.</param> <returns>True on text value is ¡®t¡¯, ¡®true¡¯; False on text value is ¡®f¡¯, ¡®false¡¯, ¡®¡¯ </returns> </member> <member name="M:DocumentFormat.OpenXml.TrueFalseBlankValue.GetDefaultTextValue(System.Boolean)"> <summary> Gets the text value. </summary> <param name="boolValue">The boolean value.</param> <returns>"t" for True, "f" for false.</returns> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseBlankValue.HasValue"> <summary> Gets a value indicating whether underneath text value is valid value. </summary> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseBlankValue.Value"> <summary> Gets or sets the value. </summary> </member> <member name="P:DocumentFormat.OpenXml.TrueFalseBlankValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.OnOffValue"> <summary> Define OnOffValue ¨C datatype for attributes that have enum values as ¡®true¡¯, ¡®false¡¯, ¡®on¡¯, ¡®off¡¯, ¡®0¡¯, ¡®1¡¯ meaning Boolean true/false. </summary> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.#ctor"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.OnOffValue"/>. </summary> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.#ctor(System.Boolean)"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.OnOffValue"/>. </summary> <param name="value">The <see cref="T:System.Boolean"/> value.</param> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.#ctor(DocumentFormat.OpenXml.OnOffValue)"> <summary> Initializes a new instance of <see cref="T:DocumentFormat.OpenXml.OnOffValue"/>. </summary> <param name="source">The source <see cref="T:DocumentFormat.OpenXml.OnOffValue"/>.</param> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.GetBooleanValue(System.String)"> <summary> Gets the real text value of the text value. </summary> <param name="textValue">The text value which could be ¡®true¡¯, ¡®false¡¯, ¡®on¡¯, ¡®off¡¯, ¡®0¡¯, ¡®1¡¯.</param> <returns>True for ¡®true¡¯, ¡®on¡¯, ¡®0¡¯, ¡®1¡¯</returns> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.GetDefaultTextValue(System.Boolean)"> <summary> Gets the default text value. </summary> <param name="boolValue">The boolean value.</param> <returns>"1" for True, "0" for False.</returns> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.op_Implicit(DocumentFormat.OpenXml.OnOffValue)~System.Boolean"> <summary> Implicitly converts to <see cref="T:System.Boolean"/>. </summary> <param name="xmlAttribute">The <see cref="T:DocumentFormat.OpenXml.OnOffValue"/> to convert.</param> <returns>The <see cref="T:System.Boolean"/>.</returns> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.op_Implicit(System.Boolean)~DocumentFormat.OpenXml.OnOffValue"> <summary> Implicitly converts from <see cref="T:System.Boolean"/>. </summary> <param name="value">The <see cref="T:System.Boolean"/> value.</param> <returns>The <see cref="T:DocumentFormat.OpenXml.OnOffValue"/>.</returns> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.FromBoolean(System.Boolean)"> <summary> Returns a new OnOffValue object created from Boolean. </summary> <param name="value">A Boolean value to create a new OnOffValue object from.</param> <returns>A OnOffValue that corresponds to the value parameter.</returns> </member> <member name="M:DocumentFormat.OpenXml.OnOffValue.ToBoolean(DocumentFormat.OpenXml.OnOffValue)"> <summary> Returns the internal Boolean representation of a OnOffValue object. </summary> <param name="xmlAttribute">A OnOffValue object to retrieve an internal Boolean representation.</param> <returns>A Boolean value that represents a OnOffValue object.</returns> </member> <member name="P:DocumentFormat.OpenXml.OnOffValue.HasValue"> <summary> Gets a value indicating whether underneath text value is valid value. </summary> </member> <member name="P:DocumentFormat.OpenXml.OnOffValue.Value"> <summary> Gets or sets the value. </summary> </member> <member name="P:DocumentFormat.OpenXml.OnOffValue.InnerText"> <summary> Gets or sets the inner xml text. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlUnknownElement"> <summary> OpenXmlUnknownElement - for elements not defined in the Ecma Office Open XML </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.#ctor"> <summary> OpenXmlUnknownElement constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.#ctor(System.String)"> <summary> OpenXmlUnknownElement constructor </summary> <param name="name">Element name.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.#ctor(System.String,System.String)"> <summary> OpenXmlUnknownElement constructor </summary> <param name="qualifiedName">Qualified element name.</param> <param name="namespaceUri">Namespace URN of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.#ctor(System.String,System.String,System.String)"> <summary> OpenXmlUnknownElement constructor </summary> <param name="prefix">The namespace prefix of the element. </param> <param name="localName">Local name of the element.</param> <param name="namespaceUri">Namespace URN of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.CreateOpenXmlUnknownElement(System.String)"> <summary> Create a new OpenXmlUnknownElement by the outer XML. </summary> <param name="outerXml">The outer XML of the element.</param> <returns>A new OpenXmlUnknownElement.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.CloneNode(System.Boolean)"> <summary> When overridden in a derived class, creates a duplicate of the node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>The cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.WriteContentTo(System.Xml.XmlWriter)"> <summary> Saves all the children of the node to the specified XmlWriter. </summary> <param name="w">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.WriteTo(System.Xml.XmlWriter)"> <summary> Saves the current node to the specified XmlWriter. </summary> <param name="xmlWriter">The XmlWriter to which you want to save. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlUnknownElement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. For OpenXmlUnknownElement, always return false, no matter what the version is. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlUnknownElement.LocalName"> <summary> When overridden in a derived class, gets the local name of the node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlUnknownElement.NamespaceUri"> <summary> Gets the namespace URI of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlUnknownElement.Prefix"> <summary> Gets or sets the namespace prefix of this node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlUnknownElement.XmlQualifiedName"> <summary> When overridden in a derived class, gets the qualified name of the node. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlUnknownElement.ElementTypeId"> <summary> The type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlUnknownElement.InnerText"> <summary> Gets or sets the concatenated values of the node and all its children. </summary> </member> <member name="P:DocumentFormat.OpenXml.OpenXmlUnknownElement.Text"> <summary> Gets the text of the unknown element. Returns text only when the unknown element has only one child which is a text node. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlWriter"> <summary> Defines the OpenXmlWriter. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.#ctor"> <summary> Initializes a new instance of the OpenXmlWriter. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.Create(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Create an OpenXmlWriter from the OpenXmlPart. </summary> <param name="openXmlPart">The OpenXmlPart to be writern.</param> <returns>The created OpenXmlWriter instance.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.Create(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.Text.Encoding)"> <summary> Create an OpenXmlWriter from the OpenXmlPart. </summary> <param name="openXmlPart">The OpenXmlPart to be writern.</param> <param name="encoding">The encoding for the XML stream.</param> <returns>The created OpenXmlWriter instance.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.Create(System.IO.Stream)"> <summary> Create an OpenXmlWriter on a given stream. </summary> <param name="partStream">The target stream.</param> <returns>The created OpenXmlWriter instance.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.Create(System.IO.Stream,System.Text.Encoding)"> <summary> Create an OpenXmlWriter on given stream </summary> <param name="partStream">The target stream.</param> <param name="encoding">The encoding for the XML stream.</param> <returns>The created OpenXmlWriter instance.</returns> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteStartDocument"> <summary> Writes the XML declaration with the version "1.0". </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteStartDocument(System.Boolean)"> <summary> Writes the XML declaration with the version "1.0" and the standalone attribute. </summary> <param name="standalone">If true, it writes "standalone=yes"; if false, it writes "standalone=no". </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlReader)"> <summary> Writes out a start element tag of the current element of the OpenXmlReader. And write all the attributes of the element. </summary> <param name="elementReader">The OpenXmlReader to read from. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlReader,System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute})"> <summary> Writes out a start element tag of the current element of the OpenXmlReader. And write the attributes in attributes. </summary> <param name="elementReader">The OpenXmlReader to read from. </param> <param name="attributes">The attributes to be writtern, can be null if no attrbutes.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlReader,System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})"> <summary> Writes out a start element tag of the current element of the OpenXmlReader. And write the attributes in attributes. </summary> <param name="elementReader">The OpenXmlReader to read from. </param> <param name="attributes">The attributes to be writtern, can be null if no attrbutes.</param> <param name="namespaceDeclarations">The namespace declarations to be written, can be null if no namespace declarations.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Writes out a start tag of the element and all the attributes of the element. </summary> <param name="elementObject">The OpenXmlElement object to be writen.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlElement,System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute})"> <summary> Writes out a start tag of the element. And write the attributes in attributes. The attributes of the element will be omitted. </summary> <param name="elementObject">The OpenXmlElement object to be writen.</param> <param name="attributes">The attributes to be writtern.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlElement,System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})"> <summary> Writes out a start tag of the element. And write the attributes in attributes. The attributes of the element will be omitted. </summary> <param name="elementObject">The OpenXmlElement object to be writen.</param> <param name="attributes">The attributes to be writtern.</param> <param name="namespaceDeclarations">The namespace declarations to be written, can be null if no namespace declarations.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteEndElement"> <summary> Closes one element. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteElement(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Write the OpenXmlElement to the writer. </summary> <param name="elementObject">The OpenXmlElement object to be writen.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.WriteString(System.String)"> <summary> When overridden in a derived class, writes the given text content. </summary> <param name="text">The text to write. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.Close"> <summary> Close the writer. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.ThrowIfObjectDisposed"> <summary> Throw if object is disposed. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.Dispose(System.Boolean)"> <summary> Closes the reader, and releases all resources. </summary> <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlWriter.Dispose"> <summary> Closes the writer, and releases all resources. </summary> </member> <member name="T:DocumentFormat.OpenXml.OpenXmlPartWriter"> <summary> Defines the OpenXmlPartWriter. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.#ctor(DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Initializes a new instance of the OpenXmlPartWriter. </summary> <param name="openXmlPart">The OpenXmlPart to be written to.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.#ctor(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.Text.Encoding)"> <summary> Initializes a new instance of the OpenXmlPartWriter. </summary> <param name="openXmlPart">The OpenXmlPart to be written to.</param> <param name="encoding">The encoding for the XML stream.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.#ctor(System.IO.Stream)"> <summary> Initializes a new instance of the OpenXmlPartWriter. </summary> <param name="partStream">The givern part stream.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.#ctor(System.IO.Stream,System.Text.Encoding)"> <summary> Initializes a new instance of the OpenXmlPartWriter. </summary> <param name="partStream">The givern part stream.</param> <param name="encoding">The encoding for the XML stream.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteStartDocument"> <summary> Writes the XML declaration with the version "1.0". </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteStartDocument(System.Boolean)"> <summary> Writes the XML declaration with the version "1.0" and the standalone attribute. </summary> <param name="standalone">If true, it writes "standalone=yes"; if false, it writes "standalone=no". </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlReader)"> <summary> Writes out a start element tag of the current element of the OpenXmlReader. And write all the attributes of the element. </summary> <param name="elementReader">The OpenXmlReader to read from. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlReader,System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute})"> <summary> Writes out a start element tag of the current element of the OpenXmlReader. And write the attributes in attributes. </summary> <param name="elementReader">The OpenXmlReader to read from. </param> <param name="attributes">The attributes to be writtern, can be null if no attrbutes.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlReader,System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})"> <summary> Writes out a start element tag of the current element of the OpenXmlReader. And write the attributes in attributes. </summary> <param name="elementReader">The OpenXmlReader to read from. </param> <param name="attributes">The attributes to be writtern, can be null if no attrbutes.</param> <param name="namespaceDeclarations">The namespace declarations to be written, can be null if no namespace declarations.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Writes out a start tag of the element and all the attributes of the element. </summary> <param name="elementObject">The OpenXmlElement object to be writen.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlElement,System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute})"> <summary> Writes out a start tag of the element. And write the attributes in attributes. The attributes of the element will be omitted. </summary> <param name="elementObject">The OpenXmlElement object to be writen.</param> <param name="attributes">The attributes to be writtern.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteStartElement(DocumentFormat.OpenXml.OpenXmlElement,System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlAttribute},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})"> <summary> Writes out a start tag of the element. And write the attributes in attributes. The attributes of the element will be omitted. </summary> <param name="elementObject">The OpenXmlElement object to be writen.</param> <param name="attributes">The attributes to be writtern.</param> <param name="namespaceDeclarations">The namespace declarations to be written, can be null if no namespace declarations.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteEndElement"> <summary> Closes one element. </summary> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteString(System.String)"> <summary> Writes the given text content. </summary> <param name="text">The text to be writtern. </param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.WriteElement(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Write the OpenXmlElement to the writer. </summary> <param name="elementObject">The OpenXmlElement object to be writen.</param> </member> <member name="M:DocumentFormat.OpenXml.OpenXmlPartWriter.Close"> <summary> Close the writer. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.PartConstraintRule"> <summary> Internal class for part constraint rule </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PartConstraintRule.PartClassName"> <summary> The class name for the relationship type. Used in validation event handler. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PartConstraintRule.PartContentType"> <summary> Content type of the part. null for non-fixed content type. Purpose: WorksheetCommentsPart / SlideCommentsPart / CommentsPart have same relatiohship type but different content type. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PartConstraintRule.MinOccursIsNonZero"> <summary> true if the min occurs > 0, (be required). </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PartConstraintRule.MaxOccursGreatThanOne"> <summary> true is max occurs > 1, (is multiple). </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PartConstraintRule.FileFormat"> <summary> The file format version (Office2007 / Office2010) information. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PartConstraintRule.#ctor(System.String,System.String,System.Boolean,System.Boolean,DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Initialize a instance of PartConstraintRule class. </summary> <param name="partClassName">The class name of the part.</param> <param name="partContentType">The content type of the part.</param> <param name="minOccursIsNonZero">The MinOccursIsNonZero data.</param> <param name="maxOccursGreatThanOne">The MaxOccursGreatThanOne data.</param> <param name="fileFormat">The file format version information.</param> </member> <member name="T:DocumentFormat.OpenXml.Packaging.IdPartPair"> <summary> Defines IdPartPair - represents (RelationshipId, OpenXmlPart) pair. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.IdPartPair.#ctor(System.String,DocumentFormat.OpenXml.Packaging.OpenXmlPart)"> <summary> Initializes a new instance of the IdPartPair with the specified id and part. </summary> <param name="id">The relationship ID.</param> <param name="part">The OpenXmlPart.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.IdPartPair.Equals(DocumentFormat.OpenXml.Packaging.IdPartPair)"> <summary> Determines whether this instance and another specified IdPartPair object have the same value. </summary> <param name="value">An IdPartPair.</param> <returns>true if the value of the value parameter is the same as this instance; otherwise, false.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.IdPartPair.RelationshipId"> <summary> Gets or sets the relationship ID in the pair. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.IdPartPair.OpenXmlPart"> <summary> Gets or sets the OpenXmlPart. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.GlobalPartFactory"> <summary> Global OpenXmlPart factory to create strong typed OpenXmlPart based on the relationship type. </summary> <summary> Global OpenXmlPart factory to create strong typed OpenXmlPart based on the relationship type. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlobalPartFactory.CreateOpenXmlPart(DocumentFormat.OpenXml.Packaging.OpenXmlPackage,System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type. </summary> <param name="openXmlPackage">The container OpenXmlPackage.</param> <param name="relationshipType">The relationship type of the target part.</param> <returns>An instance of OpenXmlPart.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlobalPartFactory.CreatePartCore(DocumentFormat.OpenXml.Packaging.OpenXmlPackage,System.String,DocumentFormat.OpenXml.Packaging.OpenXmlPart@)"> <summary> Create an instance of OpenXmlPart according to the given relationship type. </summary> <param name="openXmlPackage">The container OpenXmlPackage.</param> <param name="relationshipType">The relationship type of the target part.</param> <param name="openXmlPart">The created instance of OpenXmlPart.</param> <remarks>This partial method will be generated by code generaotr.</remarks> </member> <member name="T:DocumentFormat.OpenXml.Packaging.PartExtensionProvider"> <summary> A Part Extension Provider which maintains a (Content Type, Part Extension (".xml")) dictionary. Used in OpenXmlPackage derived classes. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PartExtensionProvider.#ctor"> <summary> Initializes a new instance of the PartExtensionProvider class that is empty. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PartExtensionProvider.#ctor(DocumentFormat.OpenXml.Packaging.PartExtensionProvider)"> <summary> Initializes a new instance of the PartExtensionProvider class that contains elements copied from the specified PartExtensionProvider </summary> <param name="partExtProvider">The source PartExtensionProvider whose elements are copied to the new PartExtensionProvider.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PartExtensionProvider.#ctor(System.Int32)"> <summary> Initializes a new instance of the class that is empty, has the specified initial capacity. </summary> <param name="capacity">The initial number of elements that the PartExtensionProvider can contain.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PartExtensionProvider.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> <summary> Initializes a new instance of the Dictionary class with serialized data. </summary> <param name="info">A System.Runtime.Serialization.SerializationInfo object containing the information required to serialize the PartExtensionProvider.</param> <param name="context">A System.Runtime.Serialization.StreamingContext structure containing the source and destination of the serialized stream associated with the PartExtensionProvider.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PartExtensionProvider.AddPartExtension(System.String,System.String)"> <summary> Add a part extension for the specified ContentType </summary> <param name="contentType">ContentType</param> <param name="partExtension">Part Extension (".xml") to be used for the part with the specified content type.</param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PartExtensionProvider.MakeSurePartExtensionExist(System.String,System.String)"> <summary> Make sure the (contentType, partExtension) is in the provider. The (contentType, partExtension) will be added to the provider if it does not exist in the provider. </summary> <param name="contentType">ContentType</param> <param name="partExtension">Part Extension (".xml") to be used for the part with the specified content type.</param> <exception cref="T:System.ArgumentNullException">Thrown when either parameter is null.</exception> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ExternalRelationship"> <summary> Defines ExternalRelationship - represents external relationship. </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExternalRelationship.#ctor(System.Uri,System.String,System.String)"> <summary> Initializes a new instance of the ExternalRelationship. </summary> <param name="externalUri">The target uri of the relationship.</param> <param name="relationshipType">The relationship type.</param> <param name="id">The relationship ID.</param> </member> <member name="T:DocumentFormat.OpenXml.Packaging.HyperlinkRelationship"> <summary> Defines HyperlinkRelationship - represents hyperlink relationship. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HyperlinkRelationship.RelationshipTypeConst"> <summary> The source relationship type for hyperlink. Defined as "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink". </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HyperlinkRelationship.#ctor(System.Uri,System.Boolean,System.String)"> <summary> Initializes a new instance of the HyperlinkRelationship. </summary> <param name="hyperlinkUri">The target uri of the hyperlink relationship.</param> <param name="id">The relationship ID.</param> <param name="isExternal">Is the URI external.</param> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HyperlinkRelationship.RelationshipType"> <summary> Gets the relationship type. </summary> </member> <member name="M:DocumentFormat.OpenXml.ReservedElementTypeIds.IsStrongTypedElement(DocumentFormat.OpenXml.OpenXmlElement)"> <summary> Test whether the element is a strong typed element - the class is generated by CodeGen. </summary> <param name="element">The specified element.</param> <returns>True if the class of the element is generated.</returns> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ExtendedPart"> <summary> Class for all extended parts (Application specific part). </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExtendedPart.#ctor"> <summary> Default constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExtendedPart.#ctor(System.String)"> <summary> Initialize a new instance of ExtendedPart. </summary> <param name="relationshipType"></param> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExtendedPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Always returns false.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExtendedPart.AddPartFrom(DocumentFormat.OpenXml.Packaging.OpenXmlPart,System.String)"> <summary> Adds a new part. </summary> <param name="subPart">The part to be added.</param> <param name="rId">A unique relationship identifier. null to create new id.</param> <returns>The added part. May diff with the passed in part.</returns> <exception cref="T:System.ArgumentNullException">Thrown when "subPart" is null reference.</exception> <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the part is no allowed to be added.</exception> <exception cref="T:DocumentFormat.OpenXml.Packaging.OpenXmlPackageException">Thrown when one instance of same type part already exists and multiple instance of that type is not allowed.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExtendedPart.InitPart``1(``0,System.String,System.String)"> <summary> Init a new created part </summary> <typeparam name="T">The type of the part, must be derived from OpenXmlPart.</typeparam> <param name="newPart">The part to be initialized.</param> <param name="contentType">The content type of the part.</param> <param name="id">The relationship id.</param> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedPart.RelationshipType"> <summary> The relationship type of the part. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedPart.TargetFileExtension"> <summary> The file extension to be used for the part in the package. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedPart.TargetPath"> <summary> The internal path to be used for the part name. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedPart.TargetName"> <summary> The file base name to be used for the part name in the package </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart"> <summary> Defines the CoreFilePropertiesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.#ctor"> <summary> Construtor of CoreFilePropertiesPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CoreFilePropertiesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart"> <summary> Defines the ExtendedFilePropertiesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.#ctor"> <summary> Construtor of ExtendedFilePropertiesPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart.Properties"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart"> <summary> Defines the CustomFilePropertiesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.#ctor"> <summary> Construtor of CustomFilePropertiesPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart.Properties"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ThumbnailPart"> <summary> Defines the ThumbnailPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThumbnailPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThumbnailPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThumbnailPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThumbnailPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThumbnailPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThumbnailPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThumbnailPart.#ctor"> <summary> Construtor of ThumbnailPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThumbnailPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThumbnailPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThumbnailPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThumbnailPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThumbnailPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart"> <summary> Defines the DigitalSignatureOriginPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.#ctor"> <summary> Construtor of DigitalSignatureOriginPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.XmlSignatureParts"> <summary> Gets the XmlSignatureParts of the DigitalSignatureOriginPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DigitalSignatureOriginPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.XmlSignaturePart"> <summary> Defines the XmlSignaturePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.#ctor"> <summary> Construtor of XmlSignaturePart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.XmlSignaturePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.MainDocumentPart"> <summary> Defines the MainDocumentPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MainDocumentPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MainDocumentPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MainDocumentPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.#ctor"> <summary> Construtor of MainDocumentPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the MainDocumentPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the MainDocumentPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the MainDocumentPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the MainDocumentPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddThumbnailPart(System.String)"> <summary> Adds a ThumbnailPart to the MainDocumentPart. </summary> <param name="contentType">the content type of the ThumbnailPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddThumbnailPart(DocumentFormat.OpenXml.Packaging.ThumbnailPartType)"> <summary> Adds a ThumbnailPart to the MainDocumentPart. </summary> <param name="partType">The part type of the ThumbnailPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddThumbnailPart(System.String,System.String)"> <summary> Adds a ThumbnailPart to the MainDocumentPart. </summary> <param name="contentType">the content type of the ThumbnailPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddThumbnailPart(DocumentFormat.OpenXml.Packaging.ThumbnailPartType,System.String)"> <summary> Adds a ThumbnailPart to the MainDocumentPart. </summary> <param name="partType">The part type of the ThumbnailPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddAlternativeFormatImportPart(System.String)"> <summary> Adds a AlternativeFormatImportPart to the MainDocumentPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType)"> <summary> Adds a AlternativeFormatImportPart to the MainDocumentPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddAlternativeFormatImportPart(System.String,System.String)"> <summary> Adds a AlternativeFormatImportPart to the MainDocumentPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType,System.String)"> <summary> Adds a AlternativeFormatImportPart to the MainDocumentPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the MainDocumentPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the MainDocumentPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the MainDocumentPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the MainDocumentPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the MainDocumentPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the MainDocumentPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the MainDocumentPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the MainDocumentPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the MainDocumentPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the MainDocumentPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.GlossaryDocumentPart"> <summary> Gets the GlossaryDocumentPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.ThemePart"> <summary> Gets the ThemePart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.ThumbnailPart"> <summary> Gets the ThumbnailPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.WordprocessingCommentsPart"> <summary> Gets the WordprocessingCommentsPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.DocumentSettingsPart"> <summary> Gets the DocumentSettingsPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.EndnotesPart"> <summary> Gets the EndnotesPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.FontTablePart"> <summary> Gets the FontTablePart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.FootnotesPart"> <summary> Gets the FootnotesPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.NumberingDefinitionsPart"> <summary> Gets the NumberingDefinitionsPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.StyleDefinitionsPart"> <summary> Gets the StyleDefinitionsPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.StylesWithEffectsPart"> <summary> Gets the StylesWithEffectsPart of the MainDocumentPart., only available in Office2010 </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.WebSettingsPart"> <summary> Gets the WebSettingsPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.FooterParts"> <summary> Gets the FooterParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.HeaderParts"> <summary> Gets the HeaderParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.WordprocessingPrinterSettingsParts"> <summary> Gets the WordprocessingPrinterSettingsParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.CustomizationPart"> <summary> Gets the CustomizationPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.VbaProjectPart"> <summary> Gets the VbaProjectPart of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.AlternativeFormatImportParts"> <summary> Gets the AlternativeFormatImportParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.ChartParts"> <summary> Gets the ChartParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.ImageParts"> <summary> Gets the ImageParts of the MainDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MainDocumentPart.Document"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomizationPart"> <summary> Defines the CustomizationPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomizationPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomizationPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomizationPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomizationPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomizationPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomizationPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomizationPart.#ctor"> <summary> Construtor of CustomizationPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomizationPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart.WordAttachedToolbarsPart"> <summary> Gets the WordAttachedToolbarsPart of the CustomizationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomizationPart.TemplateCommandGroup"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart"> <summary> Defines the WordAttachedToolbarsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.#ctor"> <summary> Construtor of WordAttachedToolbarsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordAttachedToolbarsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart"> <summary> Defines the AlternativeFormatImportPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.#ctor"> <summary> Construtor of AlternativeFormatImportPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart"> <summary> Defines the WordprocessingCommentsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.#ctor"> <summary> Construtor of WordprocessingCommentsPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddAlternativeFormatImportPart(System.String)"> <summary> Adds a AlternativeFormatImportPart to the WordprocessingCommentsPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType)"> <summary> Adds a AlternativeFormatImportPart to the WordprocessingCommentsPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddAlternativeFormatImportPart(System.String,System.String)"> <summary> Adds a AlternativeFormatImportPart to the WordprocessingCommentsPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType,System.String)"> <summary> Adds a AlternativeFormatImportPart to the WordprocessingCommentsPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the WordprocessingCommentsPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the WordprocessingCommentsPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the WordprocessingCommentsPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the WordprocessingCommentsPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the WordprocessingCommentsPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the WordprocessingCommentsPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the WordprocessingCommentsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the WordprocessingCommentsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the WordprocessingCommentsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the WordprocessingCommentsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.AlternativeFormatImportParts"> <summary> Gets the AlternativeFormatImportParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.ChartParts"> <summary> Gets the ChartParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.ImageParts"> <summary> Gets the ImageParts of the WordprocessingCommentsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingCommentsPart.Comments"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart"> <summary> Defines the DocumentSettingsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.#ctor"> <summary> Construtor of DocumentSettingsPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.AddMailMergeRecipientDataPart(System.String)"> <summary> Adds a MailMergeRecipientDataPart to the DocumentSettingsPart. </summary> <param name="contentType">the content type of the MailMergeRecipientDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.AddMailMergeRecipientDataPart(DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPartType)"> <summary> Adds a MailMergeRecipientDataPart to the DocumentSettingsPart. </summary> <param name="partType">The part type of the MailMergeRecipientDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.AddMailMergeRecipientDataPart(System.String,System.String)"> <summary> Adds a MailMergeRecipientDataPart to the DocumentSettingsPart. </summary> <param name="contentType">the content type of the MailMergeRecipientDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.AddMailMergeRecipientDataPart(DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPartType,System.String)"> <summary> Adds a MailMergeRecipientDataPart to the DocumentSettingsPart. </summary> <param name="partType">The part type of the MailMergeRecipientDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the DocumentSettingsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the DocumentSettingsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the DocumentSettingsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the DocumentSettingsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.MailMergeRecipientDataPart"> <summary> Gets the MailMergeRecipientDataPart of the DocumentSettingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.ImageParts"> <summary> Gets the ImageParts of the DocumentSettingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DocumentSettingsPart.Settings"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.EndnotesPart"> <summary> Defines the EndnotesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EndnotesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EndnotesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EndnotesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EndnotesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.#ctor"> <summary> Construtor of EndnotesPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddAlternativeFormatImportPart(System.String)"> <summary> Adds a AlternativeFormatImportPart to the EndnotesPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType)"> <summary> Adds a AlternativeFormatImportPart to the EndnotesPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddAlternativeFormatImportPart(System.String,System.String)"> <summary> Adds a AlternativeFormatImportPart to the EndnotesPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType,System.String)"> <summary> Adds a AlternativeFormatImportPart to the EndnotesPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the EndnotesPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the EndnotesPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the EndnotesPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the EndnotesPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the EndnotesPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the EndnotesPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the EndnotesPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the EndnotesPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the EndnotesPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the EndnotesPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EndnotesPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.AlternativeFormatImportParts"> <summary> Gets the AlternativeFormatImportParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.ChartParts"> <summary> Gets the ChartParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.ImageParts"> <summary> Gets the ImageParts of the EndnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EndnotesPart.Endnotes"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.FontTablePart"> <summary> Defines the FontTablePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FontTablePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FontTablePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FontTablePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FontTablePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontTablePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontTablePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontTablePart.#ctor"> <summary> Construtor of FontTablePart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontTablePart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontTablePart.AddFontPart(System.String)"> <summary> Adds a FontPart to the FontTablePart. </summary> <param name="contentType">the content type of the FontPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontTablePart.AddFontPart(DocumentFormat.OpenXml.Packaging.FontPartType)"> <summary> Adds a FontPart to the FontTablePart. </summary> <param name="partType">The part type of the FontPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontTablePart.AddFontPart(System.String,System.String)"> <summary> Adds a FontPart to the FontTablePart. </summary> <param name="contentType">the content type of the FontPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontTablePart.AddFontPart(DocumentFormat.OpenXml.Packaging.FontPartType,System.String)"> <summary> Adds a FontPart to the FontTablePart. </summary> <param name="partType">The part type of the FontPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart.FontParts"> <summary> Gets the FontParts of the FontTablePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontTablePart.Fonts"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.FooterPart"> <summary> Defines the FooterPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FooterPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FooterPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FooterPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FooterPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.#ctor"> <summary> Construtor of FooterPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddAlternativeFormatImportPart(System.String)"> <summary> Adds a AlternativeFormatImportPart to the FooterPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType)"> <summary> Adds a AlternativeFormatImportPart to the FooterPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddAlternativeFormatImportPart(System.String,System.String)"> <summary> Adds a AlternativeFormatImportPart to the FooterPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType,System.String)"> <summary> Adds a AlternativeFormatImportPart to the FooterPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the FooterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the FooterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the FooterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the FooterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the FooterPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the FooterPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the FooterPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the FooterPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the FooterPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the FooterPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FooterPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.AlternativeFormatImportParts"> <summary> Gets the AlternativeFormatImportParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.ChartParts"> <summary> Gets the ChartParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.ImageParts"> <summary> Gets the ImageParts of the FooterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FooterPart.Footer"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.FootnotesPart"> <summary> Defines the FootnotesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FootnotesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FootnotesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FootnotesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FootnotesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.#ctor"> <summary> Construtor of FootnotesPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddAlternativeFormatImportPart(System.String)"> <summary> Adds a AlternativeFormatImportPart to the FootnotesPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType)"> <summary> Adds a AlternativeFormatImportPart to the FootnotesPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddAlternativeFormatImportPart(System.String,System.String)"> <summary> Adds a AlternativeFormatImportPart to the FootnotesPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType,System.String)"> <summary> Adds a AlternativeFormatImportPart to the FootnotesPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the FootnotesPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the FootnotesPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the FootnotesPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the FootnotesPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the FootnotesPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the FootnotesPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the FootnotesPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the FootnotesPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the FootnotesPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the FootnotesPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FootnotesPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.AlternativeFormatImportParts"> <summary> Gets the AlternativeFormatImportParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.ChartParts"> <summary> Gets the ChartParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.ImageParts"> <summary> Gets the ImageParts of the FootnotesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FootnotesPart.Footnotes"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart"> <summary> Defines the GlossaryDocumentPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.#ctor"> <summary> Construtor of GlossaryDocumentPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddAlternativeFormatImportPart(System.String)"> <summary> Adds a AlternativeFormatImportPart to the GlossaryDocumentPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType)"> <summary> Adds a AlternativeFormatImportPart to the GlossaryDocumentPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddAlternativeFormatImportPart(System.String,System.String)"> <summary> Adds a AlternativeFormatImportPart to the GlossaryDocumentPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType,System.String)"> <summary> Adds a AlternativeFormatImportPart to the GlossaryDocumentPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the GlossaryDocumentPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the GlossaryDocumentPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the GlossaryDocumentPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the GlossaryDocumentPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the GlossaryDocumentPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the GlossaryDocumentPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the GlossaryDocumentPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the GlossaryDocumentPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the GlossaryDocumentPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the GlossaryDocumentPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.WordprocessingCommentsPart"> <summary> Gets the WordprocessingCommentsPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.DocumentSettingsPart"> <summary> Gets the DocumentSettingsPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.EndnotesPart"> <summary> Gets the EndnotesPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.FontTablePart"> <summary> Gets the FontTablePart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.FootnotesPart"> <summary> Gets the FootnotesPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.NumberingDefinitionsPart"> <summary> Gets the NumberingDefinitionsPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.StyleDefinitionsPart"> <summary> Gets the StyleDefinitionsPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.StylesWithEffectsPart"> <summary> Gets the StylesWithEffectsPart of the GlossaryDocumentPart., only available in Office2010 </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.WebSettingsPart"> <summary> Gets the WebSettingsPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.FooterParts"> <summary> Gets the FooterParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.HeaderParts"> <summary> Gets the HeaderParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.WordprocessingPrinterSettingsParts"> <summary> Gets the WordprocessingPrinterSettingsParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.CustomizationPart"> <summary> Gets the CustomizationPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.VbaProjectPart"> <summary> Gets the VbaProjectPart of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.AlternativeFormatImportParts"> <summary> Gets the AlternativeFormatImportParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.ChartParts"> <summary> Gets the ChartParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.ImageParts"> <summary> Gets the ImageParts of the GlossaryDocumentPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.GlossaryDocumentPart.GlossaryDocument"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.HeaderPart"> <summary> Defines the HeaderPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HeaderPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HeaderPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HeaderPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HeaderPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.#ctor"> <summary> Construtor of HeaderPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddAlternativeFormatImportPart(System.String)"> <summary> Adds a AlternativeFormatImportPart to the HeaderPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType)"> <summary> Adds a AlternativeFormatImportPart to the HeaderPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddAlternativeFormatImportPart(System.String,System.String)"> <summary> Adds a AlternativeFormatImportPart to the HeaderPart. </summary> <param name="contentType">the content type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddAlternativeFormatImportPart(DocumentFormat.OpenXml.Packaging.AlternativeFormatImportPartType,System.String)"> <summary> Adds a AlternativeFormatImportPart to the HeaderPart. </summary> <param name="partType">The part type of the AlternativeFormatImportPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the HeaderPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the HeaderPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the HeaderPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the HeaderPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the HeaderPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the HeaderPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the HeaderPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the HeaderPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the HeaderPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the HeaderPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HeaderPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.AlternativeFormatImportParts"> <summary> Gets the AlternativeFormatImportParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.ChartParts"> <summary> Gets the ChartParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.ImageParts"> <summary> Gets the ImageParts of the HeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HeaderPart.Header"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart"> <summary> Defines the NumberingDefinitionsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.#ctor"> <summary> Construtor of NumberingDefinitionsPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the NumberingDefinitionsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the NumberingDefinitionsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the NumberingDefinitionsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the NumberingDefinitionsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.ImageParts"> <summary> Gets the ImageParts of the NumberingDefinitionsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NumberingDefinitionsPart.Numbering"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart"> <summary> Defines the StyleDefinitionsPart. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.StylesPart"> <summary> Defines StylesPart. The StylesPart served as the base class of StylesWithEffectsPart and StyleDefinitionsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StylesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StylesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StylesPart.Styles"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.#ctor"> <summary> Construtor of StyleDefinitionsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StyleDefinitionsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WebSettingsPart"> <summary> Defines the WebSettingsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WebSettingsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WebSettingsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WebSettingsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WebSettingsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WebSettingsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WebSettingsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WebSettingsPart.#ctor"> <summary> Construtor of WebSettingsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WebSettingsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WebSettingsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WebSettingsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WebSettingsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WebSettingsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WebSettingsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WebSettingsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WebSettingsPart.WebSettings"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart"> <summary> Defines the MailMergeRecipientDataPart. </summary> <summary> Defines MailMergeRecipientDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.#ctor"> <summary> Construtor of MailMergeRecipientDataPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.Recipients"> <summary> Gets/Sets the part's root element when the part's content type is MailMergeRecipientDataPartType.OpenXmlMailMergeRecipientData. Setting this property will throw InvalidOperationException if the MailMergeRecipients property is not null. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart.MailMergeRecipients"> <summary> Gets/Sets the part's root element when the part's content type is MailMergeRecipientDataPartType.MsWordMailMergeRecipientData. Setting this property will throw InvalidOperationException if the Recipients property is not null. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WorkbookPart"> <summary> Defines the WorkbookPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.#ctor"> <summary> Construtor of WorkbookPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the WorkbookPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the WorkbookPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the WorkbookPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the WorkbookPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.AddThumbnailPart(System.String)"> <summary> Adds a ThumbnailPart to the WorkbookPart. </summary> <param name="contentType">the content type of the ThumbnailPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.AddThumbnailPart(DocumentFormat.OpenXml.Packaging.ThumbnailPartType)"> <summary> Adds a ThumbnailPart to the WorkbookPart. </summary> <param name="partType">The part type of the ThumbnailPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.AddThumbnailPart(System.String,System.String)"> <summary> Adds a ThumbnailPart to the WorkbookPart. </summary> <param name="contentType">the content type of the ThumbnailPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookPart.AddThumbnailPart(DocumentFormat.OpenXml.Packaging.ThumbnailPartType,System.String)"> <summary> Adds a ThumbnailPart to the WorkbookPart. </summary> <param name="partType">The part type of the ThumbnailPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.CalculationChainPart"> <summary> Gets the CalculationChainPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.CellMetadataPart"> <summary> Gets the CellMetadataPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.ConnectionsPart"> <summary> Gets the ConnectionsPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.CustomXmlMappingsPart"> <summary> Gets the CustomXmlMappingsPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.SharedStringTablePart"> <summary> Gets the SharedStringTablePart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.WorkbookRevisionHeaderPart"> <summary> Gets the WorkbookRevisionHeaderPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.WorkbookUserDataPart"> <summary> Gets the WorkbookUserDataPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.WorkbookStylesPart"> <summary> Gets the WorkbookStylesPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.ThemePart"> <summary> Gets the ThemePart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.ThumbnailPart"> <summary> Gets the ThumbnailPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.VolatileDependenciesPart"> <summary> Gets the VolatileDependenciesPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.ChartsheetParts"> <summary> Gets the ChartsheetParts of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.DialogsheetParts"> <summary> Gets the DialogsheetParts of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.ExternalWorkbookParts"> <summary> Gets the ExternalWorkbookParts of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.PivotTableCacheDefinitionParts"> <summary> Gets the PivotTableCacheDefinitionParts of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.WorksheetParts"> <summary> Gets the WorksheetParts of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.ExcelAttachedToolbarsPart"> <summary> Gets the ExcelAttachedToolbarsPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.VbaProjectPart"> <summary> Gets the VbaProjectPart of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.MacroSheetParts"> <summary> Gets the MacroSheetParts of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.InternationalMacroSheetParts"> <summary> Gets the InternationalMacroSheetParts of the WorkbookPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.CustomDataPropertiesParts"> <summary> Gets the CustomDataPropertiesParts of the WorkbookPart., only available in Office2010 </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.SlicerCacheParts"> <summary> Gets the SlicerCacheParts of the WorkbookPart., only available in Office2010 </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookPart.Workbook"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CalculationChainPart"> <summary> Defines the CalculationChainPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CalculationChainPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CalculationChainPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CalculationChainPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CalculationChainPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CalculationChainPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CalculationChainPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CalculationChainPart.#ctor"> <summary> Construtor of CalculationChainPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CalculationChainPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CalculationChainPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CalculationChainPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CalculationChainPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CalculationChainPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CalculationChainPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CalculationChainPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CalculationChainPart.CalculationChain"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ChartsheetPart"> <summary> Defines the ChartsheetPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartsheetPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartsheetPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartsheetPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartsheetPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartsheetPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartsheetPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartsheetPart.#ctor"> <summary> Construtor of ChartsheetPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartsheetPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartsheetPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the ChartsheetPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartsheetPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the ChartsheetPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartsheetPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the ChartsheetPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartsheetPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the ChartsheetPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.SpreadsheetPrinterSettingsParts"> <summary> Gets the SpreadsheetPrinterSettingsParts of the ChartsheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.DrawingsPart"> <summary> Gets the DrawingsPart of the ChartsheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the ChartsheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.ImageParts"> <summary> Gets the ImageParts of the ChartsheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartsheetPart.Chartsheet"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart"> <summary> Defines the WorksheetCommentsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.#ctor"> <summary> Construtor of WorksheetCommentsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart.Comments"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ConnectionsPart"> <summary> Defines the ConnectionsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ConnectionsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ConnectionsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ConnectionsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ConnectionsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ConnectionsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ConnectionsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ConnectionsPart.#ctor"> <summary> Construtor of ConnectionsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ConnectionsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ConnectionsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ConnectionsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ConnectionsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ConnectionsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ConnectionsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ConnectionsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ConnectionsPart.Connections"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomPropertyPart"> <summary> Defines the CustomPropertyPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.#ctor"> <summary> Construtor of CustomPropertyPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomPropertyPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart"> <summary> Defines the CustomXmlMappingsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.#ctor"> <summary> Construtor of CustomXmlMappingsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart.MapInfo"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DialogsheetPart"> <summary> Defines the DialogsheetPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DialogsheetPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DialogsheetPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DialogsheetPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DialogsheetPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DialogsheetPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DialogsheetPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DialogsheetPart.#ctor"> <summary> Construtor of DialogsheetPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DialogsheetPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DialogsheetPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the DialogsheetPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.SpreadsheetPrinterSettingsParts"> <summary> Gets the SpreadsheetPrinterSettingsParts of the DialogsheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.DrawingsPart"> <summary> Gets the DrawingsPart of the DialogsheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the DialogsheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the DialogsheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DialogsheetPart.DialogSheet"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DrawingsPart"> <summary> Defines the DrawingsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DrawingsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DrawingsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DrawingsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DrawingsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.#ctor"> <summary> Construtor of DrawingsPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the DrawingsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the DrawingsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the DrawingsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the DrawingsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the DrawingsPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the DrawingsPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the DrawingsPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DrawingsPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the DrawingsPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.ChartParts"> <summary> Gets the ChartParts of the DrawingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the DrawingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the DrawingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the DrawingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the DrawingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the DrawingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.ImageParts"> <summary> Gets the ImageParts of the DrawingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the DrawingsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DrawingsPart.WorksheetDrawing"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart"> <summary> Defines the ExternalWorkbookPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.#ctor"> <summary> Construtor of ExternalWorkbookPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart.ExternalLink"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CellMetadataPart"> <summary> Defines the CellMetadataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CellMetadataPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CellMetadataPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CellMetadataPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CellMetadataPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CellMetadataPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CellMetadataPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CellMetadataPart.#ctor"> <summary> Construtor of CellMetadataPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CellMetadataPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CellMetadataPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CellMetadataPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CellMetadataPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CellMetadataPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CellMetadataPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CellMetadataPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CellMetadataPart.Metadata"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.PivotTablePart"> <summary> Defines the PivotTablePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTablePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTablePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTablePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTablePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTablePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTablePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTablePart.#ctor"> <summary> Construtor of PivotTablePart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTablePart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart.PivotTableCacheDefinitionPart"> <summary> Gets the PivotTableCacheDefinitionPart of the PivotTablePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTablePart.PivotTableDefinition"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart"> <summary> Defines the PivotTableCacheDefinitionPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.#ctor"> <summary> Construtor of PivotTableCacheDefinitionPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.PivotTableCacheRecordsPart"> <summary> Gets the PivotTableCacheRecordsPart of the PivotTableCacheDefinitionPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart.PivotCacheDefinition"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart"> <summary> Defines the PivotTableCacheRecordsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.#ctor"> <summary> Construtor of PivotTableCacheRecordsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart.PivotCacheRecords"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.QueryTablePart"> <summary> Defines the QueryTablePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.QueryTablePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.QueryTablePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.QueryTablePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.QueryTablePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.QueryTablePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.QueryTablePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.QueryTablePart.#ctor"> <summary> Construtor of QueryTablePart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QueryTablePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QueryTablePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QueryTablePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QueryTablePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QueryTablePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QueryTablePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QueryTablePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QueryTablePart.QueryTable"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SharedStringTablePart"> <summary> Defines the SharedStringTablePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.#ctor"> <summary> Construtor of SharedStringTablePart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SharedStringTablePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SharedStringTablePart.SharedStringTable"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart"> <summary> Defines the WorkbookRevisionHeaderPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.#ctor"> <summary> Construtor of WorkbookRevisionHeaderPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.WorkbookRevisionLogParts"> <summary> Gets the WorkbookRevisionLogParts of the WorkbookRevisionHeaderPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart.Headers"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart"> <summary> Defines the WorkbookRevisionLogPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.#ctor"> <summary> Construtor of WorkbookRevisionLogPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart.Revisions"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart"> <summary> Defines the WorkbookUserDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.#ctor"> <summary> Construtor of WorkbookUserDataPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart.Users"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SingleCellTablePart"> <summary> Defines the SingleCellTablePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.#ctor"> <summary> Construtor of SingleCellTablePart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SingleCellTablePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SingleCellTablePart.SingleXmlCells"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart"> <summary> Defines the WorkbookStylesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.#ctor"> <summary> Construtor of WorkbookStylesPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorkbookStylesPart.Stylesheet"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.TableDefinitionPart"> <summary> Defines the TableDefinitionPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.#ctor"> <summary> Construtor of TableDefinitionPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.QueryTableParts"> <summary> Gets the QueryTableParts of the TableDefinitionPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableDefinitionPart.Table"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart"> <summary> Defines the VolatileDependenciesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.#ctor"> <summary> Construtor of VolatileDependenciesPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart.VolatileTypes"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WorksheetPart"> <summary> Defines the WorksheetPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.#ctor"> <summary> Construtor of WorksheetPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the WorksheetPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the WorksheetPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the WorksheetPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the WorksheetPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the WorksheetPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the WorksheetPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the WorksheetPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the WorksheetPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the WorksheetPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the WorksheetPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddCustomPropertyPart(System.String)"> <summary> Adds a CustomPropertyPart to the WorksheetPart. </summary> <param name="contentType">the content type of the CustomPropertyPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddCustomPropertyPart(DocumentFormat.OpenXml.Packaging.CustomPropertyPartType)"> <summary> Adds a CustomPropertyPart to the WorksheetPart. </summary> <param name="partType">The part type of the CustomPropertyPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddCustomPropertyPart(System.String,System.String)"> <summary> Adds a CustomPropertyPart to the WorksheetPart. </summary> <param name="contentType">the content type of the CustomPropertyPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddCustomPropertyPart(DocumentFormat.OpenXml.Packaging.CustomPropertyPartType,System.String)"> <summary> Adds a CustomPropertyPart to the WorksheetPart. </summary> <param name="partType">The part type of the CustomPropertyPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the WorksheetPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the WorksheetPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the WorksheetPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the WorksheetPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.SpreadsheetPrinterSettingsParts"> <summary> Gets the SpreadsheetPrinterSettingsParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.DrawingsPart"> <summary> Gets the DrawingsPart of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.WorksheetCommentsPart"> <summary> Gets the WorksheetCommentsPart of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.PivotTableParts"> <summary> Gets the PivotTableParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.SingleCellTablePart"> <summary> Gets the SingleCellTablePart of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.TableDefinitionParts"> <summary> Gets the TableDefinitionParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.ControlPropertiesParts"> <summary> Gets the ControlPropertiesParts of the WorksheetPart., only available in Office2010 </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.ImageParts"> <summary> Gets the ImageParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.CustomPropertyParts"> <summary> Gets the CustomPropertyParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.WorksheetSortMapPart"> <summary> Gets the WorksheetSortMapPart of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.QueryTableParts"> <summary> Gets the QueryTableParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.EmbeddedControlPersistenceBinaryDataParts"> <summary> Gets the EmbeddedControlPersistenceBinaryDataParts of the WorksheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.SlicersParts"> <summary> Gets the SlicersParts of the WorksheetPart., only available in Office2010 </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetPart.Worksheet"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart"> <summary> Defines the ExcelAttachedToolbarsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.#ctor"> <summary> Construtor of ExcelAttachedToolbarsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ExcelAttachedToolbarsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart"> <summary> Defines the WorksheetSortMapPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.#ctor"> <summary> Construtor of WorksheetSortMapPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart.WorksheetSortMap"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.PresentationPart"> <summary> Defines the PresentationPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PresentationPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PresentationPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PresentationPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.#ctor"> <summary> Construtor of PresentationPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the PresentationPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the PresentationPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the PresentationPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the PresentationPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.AddFontPart(System.String)"> <summary> Adds a FontPart to the PresentationPart. </summary> <param name="contentType">the content type of the FontPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.AddFontPart(DocumentFormat.OpenXml.Packaging.FontPartType)"> <summary> Adds a FontPart to the PresentationPart. </summary> <param name="partType">The part type of the FontPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.AddFontPart(System.String,System.String)"> <summary> Adds a FontPart to the PresentationPart. </summary> <param name="contentType">the content type of the FontPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPart.AddFontPart(DocumentFormat.OpenXml.Packaging.FontPartType,System.String)"> <summary> Adds a FontPart to the PresentationPart. </summary> <param name="partType">The part type of the FontPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.FontParts"> <summary> Gets the FontParts of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.PresentationPropertiesPart"> <summary> Gets the PresentationPropertiesPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.TableStylesPart"> <summary> Gets the TableStylesPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.ThemePart"> <summary> Gets the ThemePart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.ViewPropertiesPart"> <summary> Gets the ViewPropertiesPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.NotesMasterPart"> <summary> Gets the NotesMasterPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.SlideParts"> <summary> Gets the SlideParts of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.SlideMasterParts"> <summary> Gets the SlideMasterParts of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.UserDefinedTagsPart"> <summary> Gets the UserDefinedTagsPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.CommentAuthorsPart"> <summary> Gets the CommentAuthorsPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.HandoutMasterPart"> <summary> Gets the HandoutMasterPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.LegacyDiagramTextInfoPart"> <summary> Gets the LegacyDiagramTextInfoPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.SmartTagsPart"> <summary> Gets the SmartTagsPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.VbaProjectPart"> <summary> Gets the VbaProjectPart of the PresentationPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPart.Presentation"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart"> <summary> Defines the CommentAuthorsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.#ctor"> <summary> Construtor of CommentAuthorsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CommentAuthorsPart.CommentAuthorList"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SlideCommentsPart"> <summary> Defines the SlideCommentsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.#ctor"> <summary> Construtor of SlideCommentsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideCommentsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideCommentsPart.CommentList"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.HandoutMasterPart"> <summary> Defines the HandoutMasterPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.#ctor"> <summary> Construtor of HandoutMasterPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the HandoutMasterPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the HandoutMasterPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the HandoutMasterPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the HandoutMasterPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the HandoutMasterPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the HandoutMasterPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the HandoutMasterPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the HandoutMasterPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the HandoutMasterPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the HandoutMasterPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the HandoutMasterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the HandoutMasterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the HandoutMasterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the HandoutMasterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.ChartParts"> <summary> Gets the ChartParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.ImageParts"> <summary> Gets the ImageParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.EmbeddedControlPersistenceBinaryDataParts"> <summary> Gets the EmbeddedControlPersistenceBinaryDataParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.ThemePart"> <summary> Gets the ThemePart of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.UserDefinedTagsParts"> <summary> Gets the UserDefinedTagsParts of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.SlidePart"> <summary> Gets the SlidePart of the HandoutMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.HandoutMasterPart.HandoutMaster"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.NotesMasterPart"> <summary> Defines the NotesMasterPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NotesMasterPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NotesMasterPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NotesMasterPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NotesMasterPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.#ctor"> <summary> Construtor of NotesMasterPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the NotesMasterPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the NotesMasterPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the NotesMasterPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the NotesMasterPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the NotesMasterPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the NotesMasterPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the NotesMasterPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the NotesMasterPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the NotesMasterPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the NotesMasterPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the NotesMasterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the NotesMasterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the NotesMasterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the NotesMasterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.ChartParts"> <summary> Gets the ChartParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.ImageParts"> <summary> Gets the ImageParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.EmbeddedControlPersistenceBinaryDataParts"> <summary> Gets the EmbeddedControlPersistenceBinaryDataParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.ThemePart"> <summary> Gets the ThemePart of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.UserDefinedTagsParts"> <summary> Gets the UserDefinedTagsParts of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.SlidePart"> <summary> Gets the SlidePart of the NotesMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesMasterPart.NotesMaster"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.NotesSlidePart"> <summary> Defines the NotesSlidePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NotesSlidePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NotesSlidePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NotesSlidePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.NotesSlidePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.#ctor"> <summary> Construtor of NotesSlidePart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the NotesSlidePart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the NotesSlidePart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the NotesSlidePart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the NotesSlidePart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the NotesSlidePart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the NotesSlidePart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the NotesSlidePart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the NotesSlidePart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the NotesSlidePart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the NotesSlidePart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddEmbeddedControlPersistenceBinaryDataPart(System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the NotesSlidePart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the NotesSlidePart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddEmbeddedControlPersistenceBinaryDataPart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the NotesSlidePart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.NotesSlidePart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the NotesSlidePart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.ChartParts"> <summary> Gets the ChartParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.ImageParts"> <summary> Gets the ImageParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.EmbeddedControlPersistenceBinaryDataParts"> <summary> Gets the EmbeddedControlPersistenceBinaryDataParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.NotesMasterPart"> <summary> Gets the NotesMasterPart of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.ThemeOverridePart"> <summary> Gets the ThemeOverridePart of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.SlidePart"> <summary> Gets the SlidePart of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.UserDefinedTagsParts"> <summary> Gets the UserDefinedTagsParts of the NotesSlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.NotesSlidePart.NotesSlide"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart"> <summary> Defines the PresentationPropertiesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.#ctor"> <summary> Construtor of PresentationPropertiesPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart.PresentationProperties"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SlidePart"> <summary> Defines the SlidePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlidePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlidePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlidePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlidePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.#ctor"> <summary> Construtor of SlidePart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the SlidePart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the SlidePart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the SlidePart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the SlidePart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the SlidePart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the SlidePart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the SlidePart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the SlidePart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the SlidePart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the SlidePart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedControlPersistenceBinaryDataPart(System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlidePart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlidePart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedControlPersistenceBinaryDataPart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlidePart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlidePart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlidePart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the SlidePart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlidePart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlidePart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddMediaReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlidePart.AddMediaReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.ChartParts"> <summary> Gets the ChartParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.ImageParts"> <summary> Gets the ImageParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.EmbeddedControlPersistenceBinaryDataParts"> <summary> Gets the EmbeddedControlPersistenceBinaryDataParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.SlideCommentsPart"> <summary> Gets the SlideCommentsPart of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.NotesSlidePart"> <summary> Gets the NotesSlidePart of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.ThemeOverridePart"> <summary> Gets the ThemeOverridePart of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.SlideLayoutPart"> <summary> Gets the SlideLayoutPart of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.SlideSyncDataPart"> <summary> Gets the SlideSyncDataPart of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.UserDefinedTagsParts"> <summary> Gets the UserDefinedTagsParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.SlideParts"> <summary> Gets the SlideParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the SlidePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlidePart.Slide"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SlideLayoutPart"> <summary> Defines the SlideLayoutPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.#ctor"> <summary> Construtor of SlideLayoutPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the SlideLayoutPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the SlideLayoutPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the SlideLayoutPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the SlideLayoutPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the SlideLayoutPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the SlideLayoutPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the SlideLayoutPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the SlideLayoutPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the SlideLayoutPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the SlideLayoutPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlideLayoutPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlideLayoutPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlideLayoutPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlideLayoutPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlideLayoutPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the SlideLayoutPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlideLayoutPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlideLayoutPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddMediaReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.AddMediaReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.ChartParts"> <summary> Gets the ChartParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.ImageParts"> <summary> Gets the ImageParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.EmbeddedControlPersistenceBinaryDataParts"> <summary> Gets the EmbeddedControlPersistenceBinaryDataParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.SlideParts"> <summary> Gets the SlideParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.SlideMasterPart"> <summary> Gets the SlideMasterPart of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.ThemeOverridePart"> <summary> Gets the ThemeOverridePart of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.UserDefinedTagsParts"> <summary> Gets the UserDefinedTagsParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the SlideLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideLayoutPart.SlideLayout"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SlideMasterPart"> <summary> Defines the SlideMasterPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideMasterPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideMasterPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideMasterPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideMasterPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.#ctor"> <summary> Construtor of SlideMasterPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddCustomXmlPart(System.String)"> <summary> Adds a CustomXmlPart to the SlideMasterPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType)"> <summary> Adds a CustomXmlPart to the SlideMasterPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddCustomXmlPart(System.String,System.String)"> <summary> Adds a CustomXmlPart to the SlideMasterPart. </summary> <param name="contentType">the content type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddCustomXmlPart(DocumentFormat.OpenXml.Packaging.CustomXmlPartType,System.String)"> <summary> Adds a CustomXmlPart to the SlideMasterPart. </summary> <param name="partType">The part type of the CustomXmlPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddAudioReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.AudioReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the SlideMasterPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the SlideMasterPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the SlideMasterPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the SlideMasterPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the SlideMasterPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the SlideMasterPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddVideoReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.VideoReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlideMasterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlideMasterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlideMasterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the SlideMasterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedControlPersistencePart(System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlideMasterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType)"> <summary> Adds a EmbeddedControlPersistencePart to the SlideMasterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedControlPersistencePart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlideMasterPart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddEmbeddedControlPersistencePart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePartType,System.String)"> <summary> Adds a EmbeddedControlPersistencePart to the SlideMasterPart. </summary> <param name="partType">The part type of the EmbeddedControlPersistencePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddMediaReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideMasterPart.AddMediaReferenceRelationship(DocumentFormat.OpenXml.Packaging.MediaDataPart,System.String)"> <summary> Adds a new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/> to the specified <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>. </summary> <param name="mediaDataPart">The specified target <see cref="T:DocumentFormat.OpenXml.Packaging.MediaDataPart"/>.</param> <param name="id">The desired relationship ID. </param> <returns>The new <see cref="T:DocumentFormat.OpenXml.Packaging.MediaReferenceRelationship"/>.</returns> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="mediaDataPart"/> is null reference.</exception> <exception cref="T:System.ArgumentNullException">Thrown when <paramref name="id"/> is null reference.</exception> <exception cref="T:System.InvalidOperationException">Thrown when the specified <paramref name="mediaDataPart"/> is not in this document.</exception> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.CustomXmlParts"> <summary> Gets the CustomXmlParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.ChartParts"> <summary> Gets the ChartParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.DiagramColorsParts"> <summary> Gets the DiagramColorsParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.DiagramDataParts"> <summary> Gets the DiagramDataParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.DiagramPersistLayoutParts"> <summary> Gets the DiagramPersistLayoutParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.DiagramLayoutDefinitionParts"> <summary> Gets the DiagramLayoutDefinitionParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.DiagramStyleParts"> <summary> Gets the DiagramStyleParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.ImageParts"> <summary> Gets the ImageParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.EmbeddedControlPersistenceBinaryDataParts"> <summary> Gets the EmbeddedControlPersistenceBinaryDataParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.ThemePart"> <summary> Gets the ThemePart of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.SlideParts"> <summary> Gets the SlideParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.SlideLayoutParts"> <summary> Gets the SlideLayoutParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.EmbeddedControlPersistenceParts"> <summary> Gets the EmbeddedControlPersistenceParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.UserDefinedTagsParts"> <summary> Gets the UserDefinedTagsParts of the SlideMasterPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideMasterPart.SlideMaster"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart"> <summary> Defines the SlideSyncDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.#ctor"> <summary> Construtor of SlideSyncDataPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlideSyncDataPart.SlideSyncProperties"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart"> <summary> Defines the UserDefinedTagsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.#ctor"> <summary> Construtor of UserDefinedTagsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart.TagList"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart"> <summary> Defines the ViewPropertiesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.#ctor"> <summary> Construtor of ViewPropertiesPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.SlideParts"> <summary> Gets the SlideParts of the ViewPropertiesPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ViewPropertiesPart.ViewProperties"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SmartTagsPart"> <summary> Defines the SmartTagsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SmartTagsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SmartTagsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SmartTagsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SmartTagsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SmartTagsPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SmartTagsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SmartTagsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SmartTagsPart.#ctor"> <summary> Construtor of SmartTagsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SmartTagsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SmartTagsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SmartTagsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SmartTagsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SmartTagsPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SmartTagsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart"> <summary> Defines the LegacyDiagramTextInfoPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.#ctor"> <summary> Construtor of LegacyDiagramTextInfoPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextInfoPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart"> <summary> Defines the LegacyDiagramTextPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.#ctor"> <summary> Construtor of LegacyDiagramTextPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.LegacyDiagramTextPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ChartPart"> <summary> Defines the ChartPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.#ctor"> <summary> Construtor of ChartPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the ChartPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the ChartPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the ChartPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the ChartPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the ChartPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.ChartDrawingPart"> <summary> Gets the ChartDrawingPart of the ChartPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.EmbeddedPackagePart"> <summary> Gets the EmbeddedPackagePart of the ChartPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.ImageParts"> <summary> Gets the ImageParts of the ChartPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.ThemeOverridePart"> <summary> Gets the ThemeOverridePart of the ChartPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartPart.ChartSpace"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ChartDrawingPart"> <summary> Defines the ChartDrawingPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.#ctor"> <summary> Construtor of ChartDrawingPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the ChartDrawingPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the ChartDrawingPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the ChartDrawingPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the ChartDrawingPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.ChartPart"> <summary> Gets the ChartPart of the ChartDrawingPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.ImageParts"> <summary> Gets the ImageParts of the ChartDrawingPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ChartDrawingPart.UserShapes"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DiagramColorsPart"> <summary> Defines the DiagramColorsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.#ctor"> <summary> Construtor of DiagramColorsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramColorsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramColorsPart.ColorsDefinition"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DiagramDataPart"> <summary> Defines the DiagramDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramDataPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramDataPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramDataPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramDataPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramDataPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramDataPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramDataPart.#ctor"> <summary> Construtor of DiagramDataPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramDataPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramDataPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the DiagramDataPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramDataPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the DiagramDataPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramDataPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the DiagramDataPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramDataPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the DiagramDataPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.ImageParts"> <summary> Gets the ImageParts of the DiagramDataPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.SlideParts"> <summary> Gets the SlideParts of the DiagramDataPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.WorksheetParts"> <summary> Gets the WorksheetParts of the DiagramDataPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramDataPart.DataModelRoot"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart"> <summary> Defines the DiagramLayoutDefinitionPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.#ctor"> <summary> Construtor of DiagramLayoutDefinitionPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the DiagramLayoutDefinitionPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the DiagramLayoutDefinitionPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the DiagramLayoutDefinitionPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the DiagramLayoutDefinitionPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.ImageParts"> <summary> Gets the ImageParts of the DiagramLayoutDefinitionPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart.LayoutDefinition"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DiagramStylePart"> <summary> Defines the DiagramStylePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramStylePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramStylePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramStylePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramStylePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramStylePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramStylePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramStylePart.#ctor"> <summary> Construtor of DiagramStylePart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramStylePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramStylePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramStylePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramStylePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramStylePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramStylePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramStylePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramStylePart.StyleDefinition"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ThemePart"> <summary> Defines the ThemePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThemePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThemePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThemePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThemePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemePart.#ctor"> <summary> Construtor of ThemePart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemePart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemePart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the ThemePart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemePart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the ThemePart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemePart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the ThemePart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemePart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the ThemePart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart.ImageParts"> <summary> Gets the ImageParts of the ThemePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemePart.Theme"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ThemeOverridePart"> <summary> Defines the ThemeOverridePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.#ctor"> <summary> Construtor of ThemeOverridePart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the ThemeOverridePart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the ThemeOverridePart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the ThemeOverridePart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the ThemeOverridePart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.ImageParts"> <summary> Gets the ImageParts of the ThemeOverridePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ThemeOverridePart.ThemeOverride"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.TableStylesPart"> <summary> Defines the TableStylesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.TableStylesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.TableStylesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.TableStylesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.TableStylesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.TableStylesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.TableStylesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.TableStylesPart.#ctor"> <summary> Construtor of TableStylesPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableStylesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableStylesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableStylesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableStylesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableStylesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableStylesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableStylesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.TableStylesPart.TableStyleList"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomXmlPart"> <summary> Defines the CustomXmlPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlPart.#ctor"> <summary> Construtor of CustomXmlPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPart.CustomXmlPropertiesPart"> <summary> Gets the CustomXmlPropertiesPart of the CustomXmlPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart"> <summary> Defines the CustomXmlPropertiesPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.#ctor"> <summary> Construtor of CustomXmlPropertiesPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart.DataStoreItem"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart"> <summary> Defines the EmbeddedControlPersistencePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.#ctor"> <summary> Construtor of EmbeddedControlPersistencePart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.AddEmbeddedControlPersistenceBinaryDataPart(System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the EmbeddedControlPersistencePart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the EmbeddedControlPersistencePart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.AddEmbeddedControlPersistenceBinaryDataPart(System.String,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the EmbeddedControlPersistencePart. </summary> <param name="contentType">the content type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.AddEmbeddedControlPersistenceBinaryDataPart(DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPartType,System.String)"> <summary> Adds a EmbeddedControlPersistenceBinaryDataPart to the EmbeddedControlPersistencePart. </summary> <param name="partType">The part type of the EmbeddedControlPersistenceBinaryDataPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.EmbeddedControlPersistenceBinaryDataParts"> <summary> Gets the EmbeddedControlPersistenceBinaryDataParts of the EmbeddedControlPersistencePart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistencePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart"> <summary> Defines the EmbeddedObjectPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.#ctor"> <summary> Construtor of EmbeddedObjectPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedObjectPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart"> <summary> Defines the EmbeddedPackagePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.#ctor"> <summary> Construtor of EmbeddedPackagePart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedPackagePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.FontPart"> <summary> Defines the FontPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FontPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FontPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FontPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.FontPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.FontPart.#ctor"> <summary> Construtor of FontPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.FontPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart"> <summary> Defines the SpreadsheetPrinterSettingsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.#ctor"> <summary> Construtor of SpreadsheetPrinterSettingsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SpreadsheetPrinterSettingsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart"> <summary> Defines the WordprocessingPrinterSettingsPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.#ctor"> <summary> Construtor of WordprocessingPrinterSettingsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.WordprocessingPrinterSettingsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ImagePart"> <summary> Defines the ImagePart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ImagePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ImagePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ImagePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ImagePart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ImagePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ImagePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ImagePart.#ctor"> <summary> Construtor of ImagePart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ImagePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ImagePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ImagePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ImagePart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ImagePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.VmlDrawingPart"> <summary> Defines the VmlDrawingPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.#ctor"> <summary> Construtor of VmlDrawingPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the VmlDrawingPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the VmlDrawingPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the VmlDrawingPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the VmlDrawingPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.ImageParts"> <summary> Gets the ImageParts of the VmlDrawingPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.LegacyDiagramTextParts"> <summary> Gets the LegacyDiagramTextParts of the VmlDrawingPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VmlDrawingPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart"> <summary> Defines the EmbeddedControlPersistenceBinaryDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.TargetFileExtensionConstant"> <summary> The fixed value of the TargetFileExtension </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.#ctor"> <summary> Construtor of EmbeddedControlPersistenceBinaryDataPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.TargetFileExtension"> <summary> Gets the TargetFileExtension. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.EmbeddedControlPersistenceBinaryDataPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart"> <summary> Defines the QuickAccessToolbarCustomizationsPart. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomUIPart"> <summary> Defines CustomUiPart. The CustomUiPart served as the base class of RibbonExtensibilityPart and QuickAccessToolbarCustomizationsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomUIPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomUIPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomUIPart.CustomUI"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.#ctor"> <summary> Construtor of QuickAccessToolbarCustomizationsPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.QuickAccessToolbarCustomizationsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart"> <summary> Defines the RibbonExtensibilityPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.#ctor"> <summary> Construtor of RibbonExtensibilityPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the RibbonExtensibilityPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the RibbonExtensibilityPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the RibbonExtensibilityPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the RibbonExtensibilityPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.ImageParts"> <summary> Gets the ImageParts of the RibbonExtensibilityPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonExtensibilityPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.VbaProjectPart"> <summary> Defines the VbaProjectPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VbaProjectPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VbaProjectPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VbaProjectPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VbaProjectPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VbaProjectPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VbaProjectPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VbaProjectPart.#ctor"> <summary> Construtor of VbaProjectPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VbaProjectPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaProjectPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaProjectPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaProjectPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaProjectPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaProjectPart.VbaDataPart"> <summary> Gets the VbaDataPart of the VbaProjectPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaProjectPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.VbaDataPart"> <summary> Defines the VbaDataPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VbaDataPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VbaDataPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VbaDataPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.VbaDataPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VbaDataPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VbaDataPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.VbaDataPart.#ctor"> <summary> Construtor of VbaDataPart </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaDataPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaDataPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaDataPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaDataPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaDataPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaDataPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaDataPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.VbaDataPart.VbaSuppData"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.MacroSheetPart"> <summary> Defines the MacroSheetPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MacroSheetPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MacroSheetPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MacroSheetPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.MacroSheetPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.#ctor"> <summary> Construtor of MacroSheetPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddCustomPropertyPart(System.String)"> <summary> Adds a CustomPropertyPart to the MacroSheetPart. </summary> <param name="contentType">the content type of the CustomPropertyPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddCustomPropertyPart(DocumentFormat.OpenXml.Packaging.CustomPropertyPartType)"> <summary> Adds a CustomPropertyPart to the MacroSheetPart. </summary> <param name="partType">The part type of the CustomPropertyPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddCustomPropertyPart(System.String,System.String)"> <summary> Adds a CustomPropertyPart to the MacroSheetPart. </summary> <param name="contentType">the content type of the CustomPropertyPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddCustomPropertyPart(DocumentFormat.OpenXml.Packaging.CustomPropertyPartType,System.String)"> <summary> Adds a CustomPropertyPart to the MacroSheetPart. </summary> <param name="partType">The part type of the CustomPropertyPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the MacroSheetPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the MacroSheetPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the MacroSheetPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the MacroSheetPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the MacroSheetPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.MacroSheetPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the MacroSheetPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.SpreadsheetPrinterSettingsParts"> <summary> Gets the SpreadsheetPrinterSettingsParts of the MacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.DrawingsPart"> <summary> Gets the DrawingsPart of the MacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the MacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.WorksheetCommentsPart"> <summary> Gets the WorksheetCommentsPart of the MacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.CustomPropertyParts"> <summary> Gets the CustomPropertyParts of the MacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the MacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the MacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.ImageParts"> <summary> Gets the ImageParts of the MacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.MacroSheetPart.Macrosheet"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart"> <summary> Defines the InternationalMacroSheetPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.#ctor"> <summary> Construtor of InternationalMacroSheetPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddCustomPropertyPart(System.String)"> <summary> Adds a CustomPropertyPart to the InternationalMacroSheetPart. </summary> <param name="contentType">the content type of the CustomPropertyPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddCustomPropertyPart(DocumentFormat.OpenXml.Packaging.CustomPropertyPartType)"> <summary> Adds a CustomPropertyPart to the InternationalMacroSheetPart. </summary> <param name="partType">The part type of the CustomPropertyPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddCustomPropertyPart(System.String,System.String)"> <summary> Adds a CustomPropertyPart to the InternationalMacroSheetPart. </summary> <param name="contentType">the content type of the CustomPropertyPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddCustomPropertyPart(DocumentFormat.OpenXml.Packaging.CustomPropertyPartType,System.String)"> <summary> Adds a CustomPropertyPart to the InternationalMacroSheetPart. </summary> <param name="partType">The part type of the CustomPropertyPart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddEmbeddedObjectPart(System.String)"> <summary> Adds a EmbeddedObjectPart to the InternationalMacroSheetPart. </summary> <param name="contentType">The content type of the EmbeddedObjectPart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddEmbeddedPackagePart(System.String)"> <summary> Adds a EmbeddedPackagePart to the InternationalMacroSheetPart. </summary> <param name="contentType">The content type of the EmbeddedPackagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the InternationalMacroSheetPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the InternationalMacroSheetPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the InternationalMacroSheetPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the InternationalMacroSheetPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.SpreadsheetPrinterSettingsParts"> <summary> Gets the SpreadsheetPrinterSettingsParts of the InternationalMacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.DrawingsPart"> <summary> Gets the DrawingsPart of the InternationalMacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.VmlDrawingParts"> <summary> Gets the VmlDrawingParts of the InternationalMacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.WorksheetCommentsPart"> <summary> Gets the WorksheetCommentsPart of the InternationalMacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.CustomPropertyParts"> <summary> Gets the CustomPropertyParts of the InternationalMacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.EmbeddedObjectParts"> <summary> Gets the EmbeddedObjectParts of the InternationalMacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.EmbeddedPackageParts"> <summary> Gets the EmbeddedPackageParts of the InternationalMacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.ImageParts"> <summary> Gets the ImageParts of the InternationalMacroSheetPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.InternationalMacroSheetPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart"> <summary> Defines the DiagramPersistLayoutPart. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.#ctor"> <summary> Construtor of DiagramPersistLayoutPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the DiagramPersistLayoutPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the DiagramPersistLayoutPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the DiagramPersistLayoutPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the DiagramPersistLayoutPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.ImageParts"> <summary> Gets the ImageParts of the DiagramPersistLayoutPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart.Drawing"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart"> <summary> Defines the StylesWithEffectsPart, this part is only available in Office2010. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.#ctor"> <summary> Construtor of StylesWithEffectsPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the part is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.StylesWithEffectsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart"> <summary> Defines the RibbonAndBackstageCustomizationsPart, this part is only available in Office2010. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.#ctor"> <summary> Construtor of RibbonAndBackstageCustomizationsPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.AddImagePart(System.String)"> <summary> Adds a ImagePart to the RibbonAndBackstageCustomizationsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType)"> <summary> Adds a ImagePart to the RibbonAndBackstageCustomizationsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.AddImagePart(System.String,System.String)"> <summary> Adds a ImagePart to the RibbonAndBackstageCustomizationsPart. </summary> <param name="contentType">the content type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.AddImagePart(DocumentFormat.OpenXml.Packaging.ImagePartType,System.String)"> <summary> Adds a ImagePart to the RibbonAndBackstageCustomizationsPart. </summary> <param name="partType">The part type of the ImagePart.</param> <param name="id">The relationship id.</param> <returns>The newly added part.</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the part is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.ImageParts"> <summary> Gets the ImageParts of the RibbonAndBackstageCustomizationsPart. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart.CustomUI"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart"> <summary> Defines the ControlPropertiesPart, this part is only available in Office2010. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.#ctor"> <summary> Construtor of ControlPropertiesPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the part is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.ControlPropertiesPart.FormControlProperties"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart"> <summary> Defines the CustomDataPropertiesPart, this part is only available in Office2010. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.#ctor"> <summary> Construtor of CustomDataPropertiesPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.CreatePartCore(System.String)"> <summary> Create an instance of OpenXmlPart according to the given relationship type </summary> <param name="relationshipType">Relationship type</param> <returns>An instance of OpenXmlPart</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the part is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.CustomDataPart"> <summary> Gets the CustomDataPart of the CustomDataPropertiesPart., only available in Office2010 </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart.DatastoreItem"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.CustomDataPart"> <summary> Defines the CustomDataPart, this part is only available in Office2010. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomDataPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomDataPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomDataPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.CustomDataPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPart.#ctor"> <summary> Construtor of CustomDataPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.CustomDataPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the part is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.CustomDataPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SlicerCachePart"> <summary> Defines the SlicerCachePart, this part is only available in Office2010. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlicerCachePart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlicerCachePart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlicerCachePart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlicerCachePart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlicerCachePart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlicerCachePart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlicerCachePart.#ctor"> <summary> Construtor of SlicerCachePart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlicerCachePart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the part is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicerCachePart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicerCachePart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicerCachePart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicerCachePart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicerCachePart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicerCachePart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicerCachePart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicerCachePart.SlicerCacheDefinition"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Packaging.SlicersPart"> <summary> Defines the SlicersPart, this part is only available in Office2010. </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlicersPart.RelationshipTypeConstant"> <summary> The fixed value of the RelationshipType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlicersPart.ContentTypeConstant"> <summary> The fixed value of the ContentType </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlicersPart.TargetPathConstant"> <summary> The fixed value of the TargetPath </summary> </member> <member name="F:DocumentFormat.OpenXml.Packaging.SlicersPart.TargetNameConstant"> <summary> The fixed value of the TargetName </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlicersPart.GetPartConstraint"> <summary> Get Part constraint data </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlicersPart.GetDataPartReferenceConstraint"> <summary> Get the constraint rule of DataPartReferenceRelationship. </summary> <returns>Part constraint data</returns> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlicersPart.#ctor"> <summary> Construtor of SlicersPart </summary> </member> <member name="M:DocumentFormat.OpenXml.Packaging.SlicersPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this part is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the part is defined in the specified version.</returns> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicersPart.RelationshipType"> <summary> Gets the RelationshipType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicersPart.ContentType"> <summary> Gets the ContentType. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicersPart.TargetPath"> <summary> Gets the TargetPath. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicersPart.TargetName"> <summary> Gets the TargetName. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicersPart.IsContentTypeFixed"> <summary> Is the ContentType for this part fixed? </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicersPart._rootElement"> <summary> Only for OpenXmlPart derived classes. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicersPart.PartRootElement"> <summary> Gets the root element of this part. The DOM tree will be loaded on demand. </summary> </member> <member name="P:DocumentFormat.OpenXml.Packaging.SlicersPart.Slicers"> <summary> Gets/Sets the root element of this part. </summary> </member> <member name="T:DocumentFormat.OpenXml.Internal.SemanticValidation.SemanticConstraintRegistry"> <summary> Semantic constraint registry base class </summary> </member> <member name="M:DocumentFormat.OpenXml.Internal.SemanticValidation.SemanticConstraintRegistry.#ctor(DocumentFormat.OpenXml.FileFormatVersions,DocumentFormat.OpenXml.Internal.SemanticValidation.ApplicationType)"> <summary> Constructor </summary> </member> <member name="M:DocumentFormat.OpenXml.Internal.SemanticValidation.SemanticConstraintRegistry.RegisterConstraint(System.Int32,System.Int32,DocumentFormat.OpenXml.FileFormatVersions,DocumentFormat.OpenXml.Internal.SemanticValidation.ApplicationType,DocumentFormat.OpenXml.Internal.SemanticValidation.SemanticConstraint)"> <summary> Register a constraint to this registry. </summary> </member> <member name="M:DocumentFormat.OpenXml.Internal.SemanticValidation.SemanticConstraintRegistry.CheckConstraints(DocumentFormat.OpenXml.Validation.ValidationContext)"> <summary> Check if specified context meets all registered constraints </summary> <param name="context"></param> <returns></returns> </member> <member name="M:DocumentFormat.OpenXml.Internal.SemanticValidation.SemanticConstraintRegistry.ClearConstraintState(DocumentFormat.OpenXml.Internal.SemanticValidation.SemanticValidationLevel)"> <summary> Clean state of all registered constraints </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData"> <summary> <para>Attached Object Data.</para> <para>When the object is serialized out as xml, its qualified name is xvml:ClientData.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MoveWithCells <xvml:MoveWithCells></description></item> <item><description>ResizeWithCells <xvml:SizeWithCells></description></item> <item><description>Anchor <xvml:Anchor></description></item> <item><description>Locked <xvml:Locked></description></item> <item><description>DefaultSize <xvml:DefaultSize></description></item> <item><description>PrintObject <xvml:PrintObject></description></item> <item><description>Disabled <xvml:Disabled></description></item> <item><description>AutoFill <xvml:AutoFill></description></item> <item><description>AutoLine <xvml:AutoLine></description></item> <item><description>AutoSizePicture <xvml:AutoPict></description></item> <item><description>FormulaMacro <xvml:FmlaMacro></description></item> <item><description>HorizontalTextAlignment <xvml:TextHAlign></description></item> <item><description>VerticalTextAlignment <xvml:TextVAlign></description></item> <item><description>LockText <xvml:LockText></description></item> <item><description>JustifyLastLine <xvml:JustLastX></description></item> <item><description>SecretEdit <xvml:SecretEdit></description></item> <item><description>DefaultButton <xvml:Default></description></item> <item><description>HelpButton <xvml:Help></description></item> <item><description>CancelButton <xvml:Cancel></description></item> <item><description>DismissButton <xvml:Dismiss></description></item> <item><description>AcceleratorPrimary <xvml:Accel></description></item> <item><description>AcceleratorSecondary <xvml:Accel2></description></item> <item><description>CommentRowTarget <xvml:Row></description></item> <item><description>CommentColumnTarget <xvml:Column></description></item> <item><description>Visible <xvml:Visible></description></item> <item><description>RowHidden <xvml:RowHidden></description></item> <item><description>ColumnHidden <xvml:ColHidden></description></item> <item><description>InputValidationType <xvml:VTEdit></description></item> <item><description>MultiLine <xvml:MultiLine></description></item> <item><description>VerticalScrollBar <xvml:VScroll></description></item> <item><description>ValidIds <xvml:ValidIds></description></item> <item><description>FormulaRange <xvml:FmlaRange></description></item> <item><description>MinDropDownWidth <xvml:WidthMin></description></item> <item><description>SelectionEntry <xvml:Sel></description></item> <item><description>Disable3DForListBoxAndDropDown <xvml:NoThreeD2></description></item> <item><description>SelectionType <xvml:SelType></description></item> <item><description>MultiSelections <xvml:MultiSel></description></item> <item><description>ListBoxCallbackType <xvml:LCT></description></item> <item><description>ListItem <xvml:ListItem></description></item> <item><description>DropStyle <xvml:DropStyle></description></item> <item><description>Colored <xvml:Colored></description></item> <item><description>DropLines <xvml:DropLines></description></item> <item><description>Checked <xvml:Checked></description></item> <item><description>FormulaLink <xvml:FmlaLink></description></item> <item><description>FormulaPicture <xvml:FmlaPict></description></item> <item><description>Disable3D <xvml:NoThreeD></description></item> <item><description>FirstButton <xvml:FirstButton></description></item> <item><description>FormulaGroup <xvml:FmlaGroup></description></item> <item><description>ScrollBarPosition <xvml:Val></description></item> <item><description>ScrollBarMin <xvml:Min></description></item> <item><description>ScrollBarMax <xvml:Max></description></item> <item><description>ScrollBarIncrement <xvml:Inc></description></item> <item><description>ScrollBarPageIncrement <xvml:Page></description></item> <item><description>HorizontalScrollBar <xvml:Horiz></description></item> <item><description>ScrollBarWidth <xvml:Dx></description></item> <item><description>MapOcxControl <xvml:MapOCX></description></item> <item><description>ClipboardFormat <xvml:CF></description></item> <item><description>CameraObject <xvml:Camera></description></item> <item><description>RecalculateAlways <xvml:RecalcAlways></description></item> <item><description>AutoScaleFont <xvml:AutoScale></description></item> <item><description>DdeObject <xvml:DDE></description></item> <item><description>UIObject <xvml:UIObj></description></item> <item><description>ScriptText <xvml:ScriptText></description></item> <item><description>ScriptExtended <xvml:ScriptExtended></description></item> <item><description>ScriptLanguage <xvml:ScriptLanguage></description></item> <item><description>ScriptLocation <xvml:ScriptLocation></description></item> <item><description>FormulaTextBox <xvml:FmlaTxbx></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.#ctor"> <summary> Initializes a new instance of the ClientData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ClientData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ClientData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.#ctor(System.String)"> <summary> Initializes a new instance of the ClientData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData.ObjectType"> <summary> <para> Object type.</para> <para>Represents the attribte in schema: ObjectType </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.MoveWithCells"> <summary> <para>Move with Cells.</para> <para>When the object is serialized out as xml, its qualified name is xvml:MoveWithCells.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MoveWithCells.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MoveWithCells.#ctor"> <summary> Initializes a new instance of the MoveWithCells class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MoveWithCells.#ctor(System.String)"> <summary> Initializes a new instance of the MoveWithCells class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MoveWithCells.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MoveWithCells.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MoveWithCells.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ResizeWithCells"> <summary> <para>Resize with Cells.</para> <para>When the object is serialized out as xml, its qualified name is xvml:SizeWithCells.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ResizeWithCells.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ResizeWithCells.#ctor"> <summary> Initializes a new instance of the ResizeWithCells class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ResizeWithCells.#ctor(System.String)"> <summary> Initializes a new instance of the ResizeWithCells class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ResizeWithCells.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ResizeWithCells.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ResizeWithCells.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.Locked"> <summary> <para>Lock Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Locked.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Locked.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Locked.#ctor"> <summary> Initializes a new instance of the Locked class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Locked.#ctor(System.String)"> <summary> Initializes a new instance of the Locked class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Locked.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Locked.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Locked.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultSize"> <summary> <para>Default Size Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:DefaultSize.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultSize.#ctor"> <summary> Initializes a new instance of the DefaultSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultSize.#ctor(System.String)"> <summary> Initializes a new instance of the DefaultSize class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.PrintObject"> <summary> <para>Print Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:PrintObject.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.PrintObject.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.PrintObject.#ctor"> <summary> Initializes a new instance of the PrintObject class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.PrintObject.#ctor(System.String)"> <summary> Initializes a new instance of the PrintObject class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.PrintObject.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.PrintObject.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.PrintObject.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.Disabled"> <summary> <para>Macro Disable Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Disabled.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disabled.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disabled.#ctor"> <summary> Initializes a new instance of the Disabled class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disabled.#ctor(System.String)"> <summary> Initializes a new instance of the Disabled class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disabled.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Disabled.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Disabled.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoFill"> <summary> <para>AutoFill.</para> <para>When the object is serialized out as xml, its qualified name is xvml:AutoFill.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoFill.#ctor"> <summary> Initializes a new instance of the AutoFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoFill.#ctor(System.String)"> <summary> Initializes a new instance of the AutoFill class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoLine"> <summary> <para>AutoLine.</para> <para>When the object is serialized out as xml, its qualified name is xvml:AutoLine.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoLine.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoLine.#ctor"> <summary> Initializes a new instance of the AutoLine class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoLine.#ctor(System.String)"> <summary> Initializes a new instance of the AutoLine class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoLine.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoLine.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoLine.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoSizePicture"> <summary> <para>Automatically Size.</para> <para>When the object is serialized out as xml, its qualified name is xvml:AutoPict.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoSizePicture.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoSizePicture.#ctor"> <summary> Initializes a new instance of the AutoSizePicture class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoSizePicture.#ctor(System.String)"> <summary> Initializes a new instance of the AutoSizePicture class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoSizePicture.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoSizePicture.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoSizePicture.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.LockText"> <summary> <para>Text Lock.</para> <para>When the object is serialized out as xml, its qualified name is xvml:LockText.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.LockText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.LockText.#ctor"> <summary> Initializes a new instance of the LockText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.LockText.#ctor(System.String)"> <summary> Initializes a new instance of the LockText class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.LockText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.LockText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.LockText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.JustifyLastLine"> <summary> <para>Far East Alignment Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:JustLastX.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.JustifyLastLine.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.JustifyLastLine.#ctor"> <summary> Initializes a new instance of the JustifyLastLine class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.JustifyLastLine.#ctor(System.String)"> <summary> Initializes a new instance of the JustifyLastLine class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.JustifyLastLine.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.JustifyLastLine.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.JustifyLastLine.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.SecretEdit"> <summary> <para>Password Edit.</para> <para>When the object is serialized out as xml, its qualified name is xvml:SecretEdit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SecretEdit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SecretEdit.#ctor"> <summary> Initializes a new instance of the SecretEdit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SecretEdit.#ctor(System.String)"> <summary> Initializes a new instance of the SecretEdit class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SecretEdit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.SecretEdit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.SecretEdit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultButton"> <summary> <para>Default Button.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Default.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultButton.#ctor"> <summary> Initializes a new instance of the DefaultButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultButton.#ctor(System.String)"> <summary> Initializes a new instance of the DefaultButton class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DefaultButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.HelpButton"> <summary> <para>Help Button.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Help.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HelpButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HelpButton.#ctor"> <summary> Initializes a new instance of the HelpButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HelpButton.#ctor(System.String)"> <summary> Initializes a new instance of the HelpButton class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HelpButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.HelpButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.HelpButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.CancelButton"> <summary> <para>Cancel Button.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Cancel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CancelButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CancelButton.#ctor"> <summary> Initializes a new instance of the CancelButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CancelButton.#ctor(System.String)"> <summary> Initializes a new instance of the CancelButton class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CancelButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.CancelButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.CancelButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.DismissButton"> <summary> <para>Dismiss Button.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Dismiss.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DismissButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DismissButton.#ctor"> <summary> Initializes a new instance of the DismissButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DismissButton.#ctor(System.String)"> <summary> Initializes a new instance of the DismissButton class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DismissButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DismissButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DismissButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.Visible"> <summary> <para>Comment Visibility Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Visible.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Visible.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Visible.#ctor"> <summary> Initializes a new instance of the Visible class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Visible.#ctor(System.String)"> <summary> Initializes a new instance of the Visible class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Visible.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Visible.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Visible.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.RowHidden"> <summary> <para>Comment's Row is Hidden.</para> <para>When the object is serialized out as xml, its qualified name is xvml:RowHidden.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.RowHidden.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.RowHidden.#ctor"> <summary> Initializes a new instance of the RowHidden class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.RowHidden.#ctor(System.String)"> <summary> Initializes a new instance of the RowHidden class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.RowHidden.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.RowHidden.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.RowHidden.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ColumnHidden"> <summary> <para>Comment's Column is Hidden.</para> <para>When the object is serialized out as xml, its qualified name is xvml:ColHidden.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ColumnHidden.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ColumnHidden.#ctor"> <summary> Initializes a new instance of the ColumnHidden class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ColumnHidden.#ctor(System.String)"> <summary> Initializes a new instance of the ColumnHidden class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ColumnHidden.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ColumnHidden.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ColumnHidden.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiLine"> <summary> <para>Multi-line.</para> <para>When the object is serialized out as xml, its qualified name is xvml:MultiLine.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiLine.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiLine.#ctor"> <summary> Initializes a new instance of the MultiLine class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiLine.#ctor(System.String)"> <summary> Initializes a new instance of the MultiLine class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiLine.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiLine.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiLine.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalScrollBar"> <summary> <para>Vertical Scroll.</para> <para>When the object is serialized out as xml, its qualified name is xvml:VScroll.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalScrollBar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalScrollBar.#ctor"> <summary> Initializes a new instance of the VerticalScrollBar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalScrollBar.#ctor(System.String)"> <summary> Initializes a new instance of the VerticalScrollBar class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalScrollBar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalScrollBar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalScrollBar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ValidIds"> <summary> <para>Valid ID.</para> <para>When the object is serialized out as xml, its qualified name is xvml:ValidIds.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ValidIds.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ValidIds.#ctor"> <summary> Initializes a new instance of the ValidIds class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ValidIds.#ctor(System.String)"> <summary> Initializes a new instance of the ValidIds class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ValidIds.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ValidIds.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ValidIds.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3DForListBoxAndDropDown"> <summary> <para>Disable 3D.</para> <para>When the object is serialized out as xml, its qualified name is xvml:NoThreeD2.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3DForListBoxAndDropDown.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3DForListBoxAndDropDown.#ctor"> <summary> Initializes a new instance of the Disable3DForListBoxAndDropDown class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3DForListBoxAndDropDown.#ctor(System.String)"> <summary> Initializes a new instance of the Disable3DForListBoxAndDropDown class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3DForListBoxAndDropDown.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3DForListBoxAndDropDown.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3DForListBoxAndDropDown.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.Colored"> <summary> <para>Dropdown Color Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Colored.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Colored.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Colored.#ctor"> <summary> Initializes a new instance of the Colored class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Colored.#ctor(System.String)"> <summary> Initializes a new instance of the Colored class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Colored.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Colored.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Colored.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3D"> <summary> <para>Disable 3D.</para> <para>When the object is serialized out as xml, its qualified name is xvml:NoThreeD.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3D.#ctor"> <summary> Initializes a new instance of the Disable3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3D.#ctor(System.String)"> <summary> Initializes a new instance of the Disable3D class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Disable3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.FirstButton"> <summary> <para>First Radio Button.</para> <para>When the object is serialized out as xml, its qualified name is xvml:FirstButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FirstButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FirstButton.#ctor"> <summary> Initializes a new instance of the FirstButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FirstButton.#ctor(System.String)"> <summary> Initializes a new instance of the FirstButton class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FirstButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FirstButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FirstButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalScrollBar"> <summary> <para>Scroll Bar Orientation.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Horiz.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalScrollBar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalScrollBar.#ctor"> <summary> Initializes a new instance of the HorizontalScrollBar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalScrollBar.#ctor(System.String)"> <summary> Initializes a new instance of the HorizontalScrollBar class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalScrollBar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalScrollBar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalScrollBar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.MapOcxControl"> <summary> <para>ActiveX Control.</para> <para>When the object is serialized out as xml, its qualified name is xvml:MapOCX.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MapOcxControl.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MapOcxControl.#ctor"> <summary> Initializes a new instance of the MapOcxControl class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MapOcxControl.#ctor(System.String)"> <summary> Initializes a new instance of the MapOcxControl class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MapOcxControl.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MapOcxControl.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MapOcxControl.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.CameraObject"> <summary> <para>Camera Tool.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Camera.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CameraObject.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CameraObject.#ctor"> <summary> Initializes a new instance of the CameraObject class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CameraObject.#ctor(System.String)"> <summary> Initializes a new instance of the CameraObject class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CameraObject.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.CameraObject.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.CameraObject.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.RecalculateAlways"> <summary> <para>Recalculation Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:RecalcAlways.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.RecalculateAlways.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.RecalculateAlways.#ctor"> <summary> Initializes a new instance of the RecalculateAlways class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.RecalculateAlways.#ctor(System.String)"> <summary> Initializes a new instance of the RecalculateAlways class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.RecalculateAlways.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.RecalculateAlways.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.RecalculateAlways.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoScaleFont"> <summary> <para>Font AutoScale.</para> <para>When the object is serialized out as xml, its qualified name is xvml:AutoScale.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoScaleFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoScaleFont.#ctor"> <summary> Initializes a new instance of the AutoScaleFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoScaleFont.#ctor(System.String)"> <summary> Initializes a new instance of the AutoScaleFont class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoScaleFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoScaleFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AutoScaleFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.DdeObject"> <summary> <para>Dynamic Data Exchange.</para> <para>When the object is serialized out as xml, its qualified name is xvml:DDE.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DdeObject.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DdeObject.#ctor"> <summary> Initializes a new instance of the DdeObject class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DdeObject.#ctor(System.String)"> <summary> Initializes a new instance of the DdeObject class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DdeObject.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DdeObject.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DdeObject.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.UIObject"> <summary> <para>UI Object Toggle.</para> <para>When the object is serialized out as xml, its qualified name is xvml:UIObj.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.UIObject.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.UIObject.#ctor"> <summary> Initializes a new instance of the UIObject class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.UIObject.#ctor(System.String)"> <summary> Initializes a new instance of the UIObject class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.UIObject.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.UIObject.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.UIObject.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.Anchor"> <summary> <para>Anchor.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Anchor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Anchor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Anchor.#ctor"> <summary> Initializes a new instance of the Anchor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Anchor.#ctor(System.String)"> <summary> Initializes a new instance of the Anchor class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Anchor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Anchor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Anchor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalTextAlignment"> <summary> <para>Horizontal Text Alignment.</para> <para>When the object is serialized out as xml, its qualified name is xvml:TextHAlign.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalTextAlignment.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalTextAlignment.#ctor"> <summary> Initializes a new instance of the HorizontalTextAlignment class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalTextAlignment.#ctor(System.String)"> <summary> Initializes a new instance of the HorizontalTextAlignment class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalTextAlignment.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalTextAlignment.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.HorizontalTextAlignment.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalTextAlignment"> <summary> <para>Vertical Text Alignment.</para> <para>When the object is serialized out as xml, its qualified name is xvml:TextVAlign.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalTextAlignment.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalTextAlignment.#ctor"> <summary> Initializes a new instance of the VerticalTextAlignment class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalTextAlignment.#ctor(System.String)"> <summary> Initializes a new instance of the VerticalTextAlignment class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalTextAlignment.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalTextAlignment.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.VerticalTextAlignment.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaRange"> <summary> <para>List Items Source Range.</para> <para>When the object is serialized out as xml, its qualified name is xvml:FmlaRange.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaRange.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaRange.#ctor"> <summary> Initializes a new instance of the FormulaRange class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaRange.#ctor(System.String)"> <summary> Initializes a new instance of the FormulaRange class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaRange.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaRange.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaRange.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionType"> <summary> <para>Selection Type.</para> <para>When the object is serialized out as xml, its qualified name is xvml:SelType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionType.#ctor"> <summary> Initializes a new instance of the SelectionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionType.#ctor(System.String)"> <summary> Initializes a new instance of the SelectionType class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiSelections"> <summary> <para>Multiple Selections.</para> <para>When the object is serialized out as xml, its qualified name is xvml:MultiSel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiSelections.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiSelections.#ctor"> <summary> Initializes a new instance of the MultiSelections class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiSelections.#ctor(System.String)"> <summary> Initializes a new instance of the MultiSelections class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiSelections.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiSelections.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MultiSelections.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ListBoxCallbackType"> <summary> <para>Callback Type.</para> <para>When the object is serialized out as xml, its qualified name is xvml:LCT.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ListBoxCallbackType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ListBoxCallbackType.#ctor"> <summary> Initializes a new instance of the ListBoxCallbackType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ListBoxCallbackType.#ctor(System.String)"> <summary> Initializes a new instance of the ListBoxCallbackType class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ListBoxCallbackType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ListBoxCallbackType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ListBoxCallbackType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ListItem"> <summary> <para>Non-linked List Item.</para> <para>When the object is serialized out as xml, its qualified name is xvml:ListItem.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ListItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ListItem.#ctor"> <summary> Initializes a new instance of the ListItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ListItem.#ctor(System.String)"> <summary> Initializes a new instance of the ListItem class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ListItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ListItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ListItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.DropStyle"> <summary> <para>Dropdown Style.</para> <para>When the object is serialized out as xml, its qualified name is xvml:DropStyle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DropStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DropStyle.#ctor"> <summary> Initializes a new instance of the DropStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DropStyle.#ctor(System.String)"> <summary> Initializes a new instance of the DropStyle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DropStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DropStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DropStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaLink"> <summary> <para>Linked Formula.</para> <para>When the object is serialized out as xml, its qualified name is xvml:FmlaLink.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaLink.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaLink.#ctor"> <summary> Initializes a new instance of the FormulaLink class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaLink.#ctor(System.String)"> <summary> Initializes a new instance of the FormulaLink class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaLink.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaLink.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaLink.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaPicture"> <summary> <para>Camera Source Range.</para> <para>When the object is serialized out as xml, its qualified name is xvml:FmlaPict.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaPicture.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaPicture.#ctor"> <summary> Initializes a new instance of the FormulaPicture class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaPicture.#ctor(System.String)"> <summary> Initializes a new instance of the FormulaPicture class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaPicture.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaPicture.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaPicture.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaGroup"> <summary> <para>Linked Formula - Group Box.</para> <para>When the object is serialized out as xml, its qualified name is xvml:FmlaGroup.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaGroup.#ctor"> <summary> Initializes a new instance of the FormulaGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaGroup.#ctor(System.String)"> <summary> Initializes a new instance of the FormulaGroup class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptText"> <summary> <para>HTML Script Text.</para> <para>When the object is serialized out as xml, its qualified name is xvml:ScriptText.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptText.#ctor"> <summary> Initializes a new instance of the ScriptText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptText.#ctor(System.String)"> <summary> Initializes a new instance of the ScriptText class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptExtended"> <summary> <para>HTML Script Attributes.</para> <para>When the object is serialized out as xml, its qualified name is xvml:ScriptExtended.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptExtended.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptExtended.#ctor"> <summary> Initializes a new instance of the ScriptExtended class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptExtended.#ctor(System.String)"> <summary> Initializes a new instance of the ScriptExtended class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptExtended.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptExtended.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptExtended.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaTextBox"> <summary> <para>Text Formula.</para> <para>When the object is serialized out as xml, its qualified name is xvml:FmlaTxbx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaTextBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaTextBox.#ctor"> <summary> Initializes a new instance of the FormulaTextBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaTextBox.#ctor(System.String)"> <summary> Initializes a new instance of the FormulaTextBox class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaTextBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaTextBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaTextBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaMacro"> <summary> <para>Reference to Custom Function.</para> <para>When the object is serialized out as xml, its qualified name is xvml:FmlaMacro.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaMacro.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaMacro.#ctor"> <summary> Initializes a new instance of the FormulaMacro class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaMacro.#ctor(System.String)"> <summary> Initializes a new instance of the FormulaMacro class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaMacro.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaMacro.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.FormulaMacro.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorPrimary"> <summary> <para>Primary Keyboard Accelerator.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Accel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorPrimary.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorPrimary.#ctor"> <summary> Initializes a new instance of the AcceleratorPrimary class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorPrimary.#ctor(System.String)"> <summary> Initializes a new instance of the AcceleratorPrimary class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorPrimary.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorPrimary.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorPrimary.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorSecondary"> <summary> <para>Secondary Keyboard Accelerator.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Accel2.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorSecondary.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorSecondary.#ctor"> <summary> Initializes a new instance of the AcceleratorSecondary class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorSecondary.#ctor(System.String)"> <summary> Initializes a new instance of the AcceleratorSecondary class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorSecondary.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorSecondary.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.AcceleratorSecondary.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentRowTarget"> <summary> <para>Comment Row Target.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Row.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentRowTarget.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentRowTarget.#ctor"> <summary> Initializes a new instance of the CommentRowTarget class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentRowTarget.#ctor(System.String)"> <summary> Initializes a new instance of the CommentRowTarget class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentRowTarget.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentRowTarget.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentRowTarget.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentColumnTarget"> <summary> <para>Comment Column Target.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Column.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentColumnTarget.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentColumnTarget.#ctor"> <summary> Initializes a new instance of the CommentColumnTarget class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentColumnTarget.#ctor(System.String)"> <summary> Initializes a new instance of the CommentColumnTarget class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentColumnTarget.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentColumnTarget.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.CommentColumnTarget.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.InputValidationType"> <summary> <para>Validation Type.</para> <para>When the object is serialized out as xml, its qualified name is xvml:VTEdit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.InputValidationType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.InputValidationType.#ctor"> <summary> Initializes a new instance of the InputValidationType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.InputValidationType.#ctor(System.String)"> <summary> Initializes a new instance of the InputValidationType class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.InputValidationType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.InputValidationType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.InputValidationType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.MinDropDownWidth"> <summary> <para>Minimum Width.</para> <para>When the object is serialized out as xml, its qualified name is xvml:WidthMin.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MinDropDownWidth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MinDropDownWidth.#ctor"> <summary> Initializes a new instance of the MinDropDownWidth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MinDropDownWidth.#ctor(System.String)"> <summary> Initializes a new instance of the MinDropDownWidth class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.MinDropDownWidth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MinDropDownWidth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.MinDropDownWidth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionEntry"> <summary> <para>Selected Entry.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Sel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionEntry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionEntry.#ctor"> <summary> Initializes a new instance of the SelectionEntry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionEntry.#ctor(System.String)"> <summary> Initializes a new instance of the SelectionEntry class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionEntry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionEntry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.SelectionEntry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.DropLines"> <summary> <para>Dropdown Maximum Lines.</para> <para>When the object is serialized out as xml, its qualified name is xvml:DropLines.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DropLines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DropLines.#ctor"> <summary> Initializes a new instance of the DropLines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DropLines.#ctor(System.String)"> <summary> Initializes a new instance of the DropLines class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.DropLines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DropLines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.DropLines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.Checked"> <summary> <para>Checked.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Checked.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Checked.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Checked.#ctor"> <summary> Initializes a new instance of the Checked class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Checked.#ctor(System.String)"> <summary> Initializes a new instance of the Checked class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.Checked.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Checked.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.Checked.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPosition"> <summary> <para>Scroll bar position.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Val.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPosition.#ctor"> <summary> Initializes a new instance of the ScrollBarPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPosition.#ctor(System.String)"> <summary> Initializes a new instance of the ScrollBarPosition class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMin"> <summary> <para>Scroll Bar Minimum.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Min.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMin.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMin.#ctor"> <summary> Initializes a new instance of the ScrollBarMin class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMin.#ctor(System.String)"> <summary> Initializes a new instance of the ScrollBarMin class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMin.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMin.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMin.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMax"> <summary> <para>Scroll Bar Maximum.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Max.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMax.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMax.#ctor"> <summary> Initializes a new instance of the ScrollBarMax class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMax.#ctor(System.String)"> <summary> Initializes a new instance of the ScrollBarMax class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMax.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMax.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarMax.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarIncrement"> <summary> <para>Scroll Bar Increment.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Inc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarIncrement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarIncrement.#ctor"> <summary> Initializes a new instance of the ScrollBarIncrement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarIncrement.#ctor(System.String)"> <summary> Initializes a new instance of the ScrollBarIncrement class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarIncrement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarIncrement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarIncrement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPageIncrement"> <summary> <para>Scroll Bar Page Increment.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Page.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPageIncrement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPageIncrement.#ctor"> <summary> Initializes a new instance of the ScrollBarPageIncrement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPageIncrement.#ctor(System.String)"> <summary> Initializes a new instance of the ScrollBarPageIncrement class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPageIncrement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPageIncrement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarPageIncrement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarWidth"> <summary> <para>Scroll Bar Width.</para> <para>When the object is serialized out as xml, its qualified name is xvml:Dx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarWidth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarWidth.#ctor"> <summary> Initializes a new instance of the ScrollBarWidth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarWidth.#ctor(System.String)"> <summary> Initializes a new instance of the ScrollBarWidth class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarWidth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarWidth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScrollBarWidth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormat"> <summary> <para>Clipboard Format.</para> <para>When the object is serialized out as xml, its qualified name is xvml:CF.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormat.#ctor"> <summary> Initializes a new instance of the ClipboardFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormat.#ctor(System.String)"> <summary> Initializes a new instance of the ClipboardFormat class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLanguage"> <summary> <para>HTML Script Language.</para> <para>When the object is serialized out as xml, its qualified name is xvml:ScriptLanguage.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLanguage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLanguage.#ctor"> <summary> Initializes a new instance of the ScriptLanguage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLanguage.#ctor(System.String)"> <summary> Initializes a new instance of the ScriptLanguage class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLanguage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLanguage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLanguage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLocation"> <summary> <para>HTML Script Location.</para> <para>When the object is serialized out as xml, its qualified name is xvml:ScriptLocation.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLocation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLocation.#ctor"> <summary> Initializes a new instance of the ScriptLocation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLocation.#ctor(System.String)"> <summary> Initializes a new instance of the ScriptLocation class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLocation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLocation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Spreadsheet.ScriptLocation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormatValues"> <summary> Clipboard Format Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormatValues.PictureOld"> <summary> WMF. <para>When the item is serialized out as xml, its value is "PictOld".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormatValues.Picture"> <summary> EMF. <para>When the item is serialized out as xml, its value is "Pict".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormatValues.Bitmap"> <summary> Bitmap. <para>When the item is serialized out as xml, its value is "Bitmap".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormatValues.PicturePrint"> <summary> Printer Picture. <para>When the item is serialized out as xml, its value is "PictPrint".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ClipboardFormatValues.PictureScreen"> <summary> Screen Picture EMF. <para>When the item is serialized out as xml, its value is "PictScreen".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues"> <summary> Object Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Button"> <summary> Pushbutton. <para>When the item is serialized out as xml, its value is "Button".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Checkbox"> <summary> Checkbox. <para>When the item is serialized out as xml, its value is "Checkbox".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Dialog"> <summary> Dialog. <para>When the item is serialized out as xml, its value is "Dialog".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Drop"> <summary> Dropdown Box. <para>When the item is serialized out as xml, its value is "Drop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Edit"> <summary> Editable Text Field. <para>When the item is serialized out as xml, its value is "Edit".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.GroupBox"> <summary> Group Box. <para>When the item is serialized out as xml, its value is "GBox".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Label"> <summary> Label. <para>When the item is serialized out as xml, its value is "Label".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.AuditingLine"> <summary> Auditing Line. <para>When the item is serialized out as xml, its value is "LineA".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.List"> <summary> List Box. <para>When the item is serialized out as xml, its value is "List".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Movie"> <summary> Movie. <para>When the item is serialized out as xml, its value is "Movie".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Note"> <summary> Comment. <para>When the item is serialized out as xml, its value is "Note".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Picture"> <summary> Image. <para>When the item is serialized out as xml, its value is "Pict".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Radio"> <summary> Radio Button. <para>When the item is serialized out as xml, its value is "Radio".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.AuditingRectangle"> <summary> Auditing Rectangle. <para>When the item is serialized out as xml, its value is "RectA".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Scroll"> <summary> Scroll Bar. <para>When the item is serialized out as xml, its value is "Scroll".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Spin"> <summary> Spin Button. <para>When the item is serialized out as xml, its value is "Spin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Shape"> <summary> Plain Shape. <para>When the item is serialized out as xml, its value is "Shape".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Group"> <summary> Group. <para>When the item is serialized out as xml, its value is "Group".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.ObjectValues.Rectangle"> <summary> Plain Rectangle. <para>When the item is serialized out as xml, its value is "Rect".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Spreadsheet.BooleanEntryWithBlankValues"> <summary> Boolean Value with Blank State </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.BooleanEntryWithBlankValues.True"> <summary> Logical True. <para>When the item is serialized out as xml, its value is "True".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.BooleanEntryWithBlankValues.T"> <summary> Logical True. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.BooleanEntryWithBlankValues.False"> <summary> Logical False. <para>When the item is serialized out as xml, its value is "False".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.BooleanEntryWithBlankValues.F"> <summary> Logical False. <para>When the item is serialized out as xml, its value is "f".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Spreadsheet.BooleanEntryWithBlankValues.Empty"> <summary> Blank - Default Value. <para>When the item is serialized out as xml, its value is "".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults"> <summary> <para>New Shape Defaults.</para> <para>When the object is serialized out as xml, its qualified name is o:shapedefaults.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Vml.Fill <v:fill></description></item> <item><description>DocumentFormat.OpenXml.Vml.ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Stroke <v:stroke></description></item> <item><description>DocumentFormat.OpenXml.Vml.TextBox <v:textbox></description></item> <item><description>DocumentFormat.OpenXml.Vml.Shadow <v:shadow></description></item> <item><description>Skew <o:skew></description></item> <item><description>Extrusion <o:extrusion></description></item> <item><description>Callout <o:callout></description></item> <item><description>Lock <o:lock></description></item> <item><description>ColorMostRecentlyUsed <o:colormru></description></item> <item><description>ColorMenu <o:colormenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.#ctor"> <summary> Initializes a new instance of the ShapeDefaults class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeDefaults class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeDefaults class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeDefaults class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.MaxShapeId"> <summary> <para> Shape ID Optional Storage.</para> <para>Represents the attribte in schema: spidmax </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Style"> <summary> <para> style.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.BeFilled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: fill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.FillColor"> <summary> <para> Default Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.IsStroke"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroke </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.AllowOverlap"> <summary> <para> allowoverlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.InsetMode"> <summary> <para> insetmode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Fill"> <summary> <para> Fill.</para> <para>Represents the element tag in schema: v:fill </para> </summary> <remark> xmlns:v = urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.ImageData"> <summary> <para> ImageData.</para> <para>Represents the element tag in schema: v:imagedata </para> </summary> <remark> xmlns:v = urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Stroke"> <summary> <para> Stroke.</para> <para>Represents the element tag in schema: v:stroke </para> </summary> <remark> xmlns:v = urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.TextBox"> <summary> <para> TextBox.</para> <para>Represents the element tag in schema: v:textbox </para> </summary> <remark> xmlns:v = urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Shadow"> <summary> <para> Shadow.</para> <para>Represents the element tag in schema: v:shadow </para> </summary> <remark> xmlns:v = urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Skew"> <summary> <para> Skew.</para> <para>Represents the element tag in schema: o:skew </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Extrusion"> <summary> <para> Extrusion.</para> <para>Represents the element tag in schema: o:extrusion </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Callout"> <summary> <para> Callout.</para> <para>Represents the element tag in schema: o:callout </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.Lock"> <summary> <para> Shape Protections.</para> <para>Represents the element tag in schema: o:lock </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.ColorMostRecentlyUsed"> <summary> <para> Most Recently Used Colors.</para> <para>Represents the element tag in schema: o:colormru </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeDefaults.ColorMenu"> <summary> <para> UI Default Colors.</para> <para>Represents the element tag in schema: o:colormenu </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ShapeLayout"> <summary> <para>Shape Layout Properties.</para> <para>When the object is serialized out as xml, its qualified name is o:shapelayout.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeIdMap <o:idmap></description></item> <item><description>RegroupTable <o:regrouptable></description></item> <item><description>Rules <o:rules></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.#ctor"> <summary> Initializes a new instance of the ShapeLayout class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeLayout class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeLayout class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeLayout class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.ShapeIdMap"> <summary> <para> Shape ID Map.</para> <para>Represents the element tag in schema: o:idmap </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.RegroupTable"> <summary> <para> Shape Grouping History.</para> <para>Represents the element tag in schema: o:regrouptable </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeLayout.Rules"> <summary> <para> Rule Set.</para> <para>Represents the element tag in schema: o:rules </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.SignatureLine"> <summary> <para>Digital Signature Line.</para> <para>When the object is serialized out as xml, its qualified name is o:signatureline.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.SignatureLine.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.SignatureLine.#ctor"> <summary> Initializes a new instance of the SignatureLine class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.SignatureLine.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.IsSignatureLine"> <summary> <para> Signature Line Flag.</para> <para>Represents the attribte in schema: issignatureline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.Id"> <summary> <para> Unique ID.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.ProviderId"> <summary> <para> Signature Provider ID.</para> <para>Represents the attribte in schema: provid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.SigningInstructionsSet"> <summary> <para> Use Signing Instructions Flag.</para> <para>Represents the attribte in schema: signinginstructionsset </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.AllowComments"> <summary> <para> User-specified Comments Flag.</para> <para>Represents the attribte in schema: allowcomments </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.ShowSignDate"> <summary> <para> Show Signed Date Flag.</para> <para>Represents the attribte in schema: showsigndate </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.SuggestedSigner"> <summary> <para> Suggested Signer Line 1.</para> <para>Represents the attribte in schema: o:suggestedsigner </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.SuggestedSigner2"> <summary> <para> Suggested Signer Line 2.</para> <para>Represents the attribte in schema: o:suggestedsigner2 </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.SuggestedSignerEmail"> <summary> <para> Suggested Signer E-mail Address.</para> <para>Represents the attribte in schema: o:suggestedsigneremail </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.SigningInstructions"> <summary> <para> Instructions for Signing.</para> <para>Represents the attribte in schema: signinginstructions </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.AdditionalXml"> <summary> <para> Additional Signature Information.</para> <para>Represents the attribte in schema: addlxml </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.SignatureLine.SignatureProviderUrl"> <summary> <para> Signature Provider Download URL.</para> <para>Represents the attribte in schema: sigprovurl </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Ink"> <summary> <para>Ink.</para> <para>When the object is serialized out as xml, its qualified name is o:ink.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Ink.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Ink.#ctor"> <summary> Initializes a new instance of the Ink class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Ink.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Ink.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Ink.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Ink.InkData"> <summary> <para> Ink Data.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Ink.AnnotationFlag"> <summary> <para> Annotation Flag.</para> <para>Represents the attribte in schema: annotation </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Diagram"> <summary> <para>VML Diagram.</para> <para>When the object is serialized out as xml, its qualified name is o:diagram.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RelationTable <o:relationtable></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Diagram.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Diagram.#ctor"> <summary> Initializes a new instance of the Diagram class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Diagram.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Diagram class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Diagram.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Diagram class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Diagram.#ctor(System.String)"> <summary> Initializes a new instance of the Diagram class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Diagram.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.Style"> <summary> <para> Diagram Style Options.</para> <para>Represents the attribte in schema: dgmstyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.AutoFormat"> <summary> <para> Diagram Automatic Format.</para> <para>Represents the attribte in schema: autoformat </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.Reverse"> <summary> <para> Diagram Reverse Direction.</para> <para>Represents the attribte in schema: reverse </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.AutoLayout"> <summary> <para> Diagram Automatic Layout.</para> <para>Represents the attribte in schema: autolayout </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.ScaleX"> <summary> <para> Diagram Layout X Scale.</para> <para>Represents the attribte in schema: dgmscalex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.ScaleY"> <summary> <para> Diagram Layout Y Scale.</para> <para>Represents the attribte in schema: dgmscaley </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.FontSize"> <summary> <para> Diagram Font Size.</para> <para>Represents the attribte in schema: dgmfontsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.ConstrainBounds"> <summary> <para> Diagram Layout Extents.</para> <para>Represents the attribte in schema: constrainbounds </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.BaseTextScale"> <summary> <para> Diagram Base Font Size.</para> <para>Represents the attribte in schema: dgmbasetextscale </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Diagram.RelationTable"> <summary> <para> Diagram Relationship Table.</para> <para>Represents the element tag in schema: o:relationtable </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Skew"> <summary> <para>Skew Transform.</para> <para>When the object is serialized out as xml, its qualified name is o:skew.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Skew.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Skew.#ctor"> <summary> Initializes a new instance of the Skew class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Skew.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Skew.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Skew.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Skew.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Skew.Id"> <summary> <para> Skew ID.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Skew.On"> <summary> <para> Skew Toggle.</para> <para>Represents the attribte in schema: on </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Skew.Offset"> <summary> <para> Skew Offset.</para> <para>Represents the attribte in schema: offset </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Skew.Origin"> <summary> <para> Skew Origin.</para> <para>Represents the attribte in schema: origin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Skew.Matrix"> <summary> <para> Skew Perspective Matrix.</para> <para>Represents the attribte in schema: matrix </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Extrusion"> <summary> <para>3D Extrusion.</para> <para>When the object is serialized out as xml, its qualified name is o:extrusion.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Extrusion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Extrusion.#ctor"> <summary> Initializes a new instance of the Extrusion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Extrusion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.On"> <summary> <para> Extrusion Toggle.</para> <para>Represents the attribte in schema: on </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Type"> <summary> <para> Extrusion Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Render"> <summary> <para> Extrusion Render Mode.</para> <para>Represents the attribte in schema: render </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.ViewpointOrigin"> <summary> <para> Extrusion Viewpoint Origin.</para> <para>Represents the attribte in schema: viewpointorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Viewpoint"> <summary> <para> Extrusion Viewpoint.</para> <para>Represents the attribte in schema: viewpoint </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.SkewAngle"> <summary> <para> Extrusion Skew Angle.</para> <para>Represents the attribte in schema: skewangle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.SkewAmount"> <summary> <para> Extrusion Skew.</para> <para>Represents the attribte in schema: skewamt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.ForceDepth"> <summary> <para> Forward Extrusion.</para> <para>Represents the attribte in schema: foredepth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.BackDepth"> <summary> <para> Backward Extrusion Depth.</para> <para>Represents the attribte in schema: backdepth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Orientation"> <summary> <para> Rotation Axis.</para> <para>Represents the attribte in schema: orientation </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.OrientationAngle"> <summary> <para> Rotation Around Axis.</para> <para>Represents the attribte in schema: orientationangle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LockRotationCenter"> <summary> <para> Rotation Toggle.</para> <para>Represents the attribte in schema: lockrotationcenter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.AutoRotationCenter"> <summary> <para> Center of Rotation Toggle.</para> <para>Represents the attribte in schema: autorotationcenter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.RotationCenter"> <summary> <para> Rotation Center.</para> <para>Represents the attribte in schema: rotationcenter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.RotationAngle"> <summary> <para> X-Y Rotation Angle.</para> <para>Represents the attribte in schema: rotationangle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Color"> <summary> <para> Extrusion Color.</para> <para>Represents the attribte in schema: color </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Shininess"> <summary> <para> Shininess.</para> <para>Represents the attribte in schema: shininess </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Specularity"> <summary> <para> Specularity.</para> <para>Represents the attribte in schema: specularity </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Diffusity"> <summary> <para> Diffuse Reflection.</para> <para>Represents the attribte in schema: diffusity </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Metal"> <summary> <para> Metallic Surface Toggle.</para> <para>Represents the attribte in schema: metal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Edge"> <summary> <para> Simulated Bevel.</para> <para>Represents the attribte in schema: edge </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Facet"> <summary> <para> Faceting Quality.</para> <para>Represents the attribte in schema: facet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LightFace"> <summary> <para> Shape Face Lighting Toggle.</para> <para>Represents the attribte in schema: lightface </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.Brightness"> <summary> <para> Brightness.</para> <para>Represents the attribte in schema: brightness </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LightPosition"> <summary> <para> Primary Light Position.</para> <para>Represents the attribte in schema: lightposition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LightLevel"> <summary> <para> Primary Light Intensity.</para> <para>Represents the attribte in schema: lightlevel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LightHarsh"> <summary> <para> Primary Light Harshness Toggle.</para> <para>Represents the attribte in schema: lightharsh </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LightPosition2"> <summary> <para> Secondary Light Position.</para> <para>Represents the attribte in schema: lightposition2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LightLevel2"> <summary> <para> Secondary Light Intensity.</para> <para>Represents the attribte in schema: lightlevel2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Extrusion.LightHarsh2"> <summary> <para> Secondary Light Harshness Toggle.</para> <para>Represents the attribte in schema: lightharsh2 </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Callout"> <summary> <para>Defines the Callout Class.</para> <para>When the object is serialized out as xml, its qualified name is o:callout.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Callout.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Callout.#ctor"> <summary> Initializes a new instance of the Callout class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Callout.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.On"> <summary> <para> Callout toggle.</para> <para>Represents the attribte in schema: on </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.Type"> <summary> <para> Callout type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.Gap"> <summary> <para> Callout gap.</para> <para>Represents the attribte in schema: gap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.Angle"> <summary> <para> Callout angle.</para> <para>Represents the attribte in schema: angle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.DropAuto"> <summary> <para> Callout automatic drop toggle.</para> <para>Represents the attribte in schema: dropauto </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.Drop"> <summary> <para> Callout drop position.</para> <para>Represents the attribte in schema: drop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.Distance"> <summary> <para> Callout drop distance.</para> <para>Represents the attribte in schema: distance </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.LengthSpecified"> <summary> <para> Callout length toggle.</para> <para>Represents the attribte in schema: lengthspecified </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.Length"> <summary> <para> Callout length.</para> <para>Represents the attribte in schema: length </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.AccentBar"> <summary> <para> Callout accent bar toggle.</para> <para>Represents the attribte in schema: accentbar </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.TextBorder"> <summary> <para> Callout text border toggle.</para> <para>Represents the attribte in schema: textborder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.MinusX"> <summary> <para> Callout flip x.</para> <para>Represents the attribte in schema: minusx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Callout.MinusY"> <summary> <para> Callout flip y.</para> <para>Represents the attribte in schema: minusy </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Lock"> <summary> <para>Defines the Lock Class.</para> <para>When the object is serialized out as xml, its qualified name is o:lock.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Lock.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Lock.#ctor"> <summary> Initializes a new instance of the Lock class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Lock.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.Position"> <summary> <para> Position Lock.</para> <para>Represents the attribte in schema: position </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.Selection"> <summary> <para> Selection Lock.</para> <para>Represents the attribte in schema: selection </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.Grouping"> <summary> <para> Grouping Lock.</para> <para>Represents the attribte in schema: grouping </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.Ungrouping"> <summary> <para> Ungrouping Lock.</para> <para>Represents the attribte in schema: ungrouping </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.Rotation"> <summary> <para> Rotation Lock.</para> <para>Represents the attribte in schema: rotation </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.Cropping"> <summary> <para> Cropping Lock.</para> <para>Represents the attribte in schema: cropping </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.Verticies"> <summary> <para> Vertices Lock.</para> <para>Represents the attribte in schema: verticies </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.AdjustHandles"> <summary> <para> Handles Lock.</para> <para>Represents the attribte in schema: adjusthandles </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.TextLock"> <summary> <para> Text Lock.</para> <para>Represents the attribte in schema: text </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.AspectRatio"> <summary> <para> Aspect Ratio Lock.</para> <para>Represents the attribte in schema: aspectratio </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Lock.ShapeType"> <summary> <para> AutoShape Type Lock.</para> <para>Represents the attribte in schema: shapetype </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.OleObject"> <summary> <para>Embedded OLE Object.</para> <para>When the object is serialized out as xml, its qualified name is o:OLEObject.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LinkType <o:LinkType></description></item> <item><description>LockedField <o:LockedField></description></item> <item><description>FieldCodes <o:FieldCodes></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.OleObject.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.OleObject.#ctor"> <summary> Initializes a new instance of the OleObject class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.OleObject.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OleObject class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.OleObject.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OleObject class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.OleObject.#ctor(System.String)"> <summary> Initializes a new instance of the OleObject class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.OleObject.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.Type"> <summary> <para> OLE Object Type.</para> <para>Represents the attribte in schema: Type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.ProgId"> <summary> <para> OLE Object Application.</para> <para>Represents the attribte in schema: ProgID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.ShapeId"> <summary> <para> OLE Object Shape.</para> <para>Represents the attribte in schema: ShapeID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.DrawAspect"> <summary> <para> OLE Object Representation.</para> <para>Represents the attribte in schema: DrawAspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.ObjectId"> <summary> <para> OLE Object Unique ID.</para> <para>Represents the attribte in schema: ObjectID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.Id"> <summary> <para> Relationship.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.UpdateMode"> <summary> <para> OLE Update Mode.</para> <para>Represents the attribte in schema: UpdateMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.LinkType"> <summary> <para> Embedded Object Alternate Image Request.</para> <para>Represents the element tag in schema: o:LinkType </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.LockedField"> <summary> <para> Embedded Object Cannot Be Refreshed.</para> <para>Represents the element tag in schema: o:LockedField </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.OleObject.FieldCodes"> <summary> <para> WordprocessingML Field Switches.</para> <para>Represents the element tag in schema: o:FieldCodes </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Complex"> <summary> <para>Complex.</para> <para>When the object is serialized out as xml, its qualified name is o:complex.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Complex.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Complex.#ctor"> <summary> Initializes a new instance of the Complex class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Complex.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Complex.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Complex.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Complex.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.LeftStroke"> <summary> <para>Text Box Left Stroke.</para> <para>When the object is serialized out as xml, its qualified name is o:left.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.StrokeChildType"> <summary> Defines the StrokeChildType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.#ctor"> <summary> Initializes a new instance of the StrokeChildType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.On"> <summary> <para> Stroke Toggle.</para> <para>Represents the attribte in schema: on </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.Weight"> <summary> <para> Stroke Weight.</para> <para>Represents the attribte in schema: weight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.Color"> <summary> <para> Stroke Color.</para> <para>Represents the attribte in schema: color </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.Color2"> <summary> <para> Stroke Alternate Pattern Color.</para> <para>Represents the attribte in schema: color2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.Opacity"> <summary> <para> Stroke Opacity.</para> <para>Represents the attribte in schema: opacity </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.LineStyle"> <summary> <para> Stroke Line Style.</para> <para>Represents the attribte in schema: linestyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.MiterLimit"> <summary> <para> Miter Joint Limit.</para> <para>Represents the attribte in schema: miterlimit </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.JoinStyle"> <summary> <para> Line End Join Style).</para> <para>Represents the attribte in schema: joinstyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.EndCap"> <summary> <para> Line End Cap.</para> <para>Represents the attribte in schema: endcap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.DashStyle"> <summary> <para> Stroke Dash Pattern.</para> <para>Represents the attribte in schema: dashstyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.FillType"> <summary> <para> Stroke Image Style.</para> <para>Represents the attribte in schema: filltype </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.Source"> <summary> <para> Stroke Image Location.</para> <para>Represents the attribte in schema: src </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.ImageAspect"> <summary> <para> Stroke Image Aspect Ratio.</para> <para>Represents the attribte in schema: imageaspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.ImageSize"> <summary> <para> Stroke Image Size.</para> <para>Represents the attribte in schema: imagesize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.ImageAlignShape"> <summary> <para> Stoke Image Alignment.</para> <para>Represents the attribte in schema: imagealignshape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.StartArrow"> <summary> <para> Line Start Arrowhead.</para> <para>Represents the attribte in schema: startarrow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.StartArrowWidth"> <summary> <para> Line Start Arrowhead Width.</para> <para>Represents the attribte in schema: startarrowwidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.StartArrowLength"> <summary> <para> Line Start Arrowhead Length.</para> <para>Represents the attribte in schema: startarrowlength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.EndArrow"> <summary> <para> Line End Arrowhead.</para> <para>Represents the attribte in schema: endarrow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.EndArrowWidth"> <summary> <para> Line End Arrowhead Width.</para> <para>Represents the attribte in schema: endarrowwidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.EndArrowLength"> <summary> <para> Line End Arrowhead Length.</para> <para>Represents the attribte in schema: endarrowlength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.Href"> <summary> <para> Original Image Reference.</para> <para>Represents the attribte in schema: o:href </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.AlternateImageReference"> <summary> <para> Alternate Image Reference.</para> <para>Represents the attribte in schema: o:althref </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.Title"> <summary> <para> Stroke Title.</para> <para>Represents the attribte in schema: o:title </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.StrokeChildType.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LeftStroke.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LeftStroke.#ctor"> <summary> Initializes a new instance of the LeftStroke class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LeftStroke.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.LeftStroke.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.LeftStroke.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.TopStroke"> <summary> <para>Text Box Top Stroke.</para> <para>When the object is serialized out as xml, its qualified name is o:top.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.TopStroke.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.TopStroke.#ctor"> <summary> Initializes a new instance of the TopStroke class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.TopStroke.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.TopStroke.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.TopStroke.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.RightStroke"> <summary> <para>Text Box Right Stroke.</para> <para>When the object is serialized out as xml, its qualified name is o:right.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RightStroke.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RightStroke.#ctor"> <summary> Initializes a new instance of the RightStroke class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RightStroke.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.RightStroke.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.RightStroke.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.BottomStroke"> <summary> <para>Text Box Bottom Stroke.</para> <para>When the object is serialized out as xml, its qualified name is o:bottom.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.BottomStroke.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.BottomStroke.#ctor"> <summary> Initializes a new instance of the BottomStroke class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.BottomStroke.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.BottomStroke.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.BottomStroke.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ColumnStroke"> <summary> <para>Text Box Interior Stroke.</para> <para>When the object is serialized out as xml, its qualified name is o:column.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColumnStroke.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColumnStroke.#ctor"> <summary> Initializes a new instance of the ColumnStroke class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColumnStroke.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColumnStroke.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColumnStroke.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ClipPath"> <summary> <para>Shape Clipping Path.</para> <para>When the object is serialized out as xml, its qualified name is o:clippath.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ClipPath.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ClipPath.#ctor"> <summary> Initializes a new instance of the ClipPath class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ClipPath.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ClipPath.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ClipPath.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ClipPath.Value"> <summary> <para> Path Definition.</para> <para>Represents the attribte in schema: o:v </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties"> <summary> <para>Shape Fill Extended Properties.</para> <para>When the object is serialized out as xml, its qualified name is o:fill.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties.#ctor"> <summary> Initializes a new instance of the FillExtendedProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties.Type"> <summary> <para> Fill Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ShapeIdMap"> <summary> <para>Shape ID Map.</para> <para>When the object is serialized out as xml, its qualified name is o:idmap.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeIdMap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeIdMap.#ctor"> <summary> Initializes a new instance of the ShapeIdMap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ShapeIdMap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeIdMap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeIdMap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeIdMap.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ShapeIdMap.Data"> <summary> <para> Shape IDs.</para> <para>Represents the attribte in schema: data </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.RegroupTable"> <summary> <para>Shape Grouping History.</para> <para>When the object is serialized out as xml, its qualified name is o:regrouptable.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Entry <o:entry></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RegroupTable.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RegroupTable.#ctor"> <summary> Initializes a new instance of the RegroupTable class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RegroupTable.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RegroupTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RegroupTable.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RegroupTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RegroupTable.#ctor(System.String)"> <summary> Initializes a new instance of the RegroupTable class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RegroupTable.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.RegroupTable.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.RegroupTable.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.RegroupTable.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Rules"> <summary> <para>Rule Set.</para> <para>When the object is serialized out as xml, its qualified name is o:rules.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Rule <o:r></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rules.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rules.#ctor"> <summary> Initializes a new instance of the Rules class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rules.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Rules class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rules.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Rules class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rules.#ctor(System.String)"> <summary> Initializes a new instance of the Rules class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rules.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rules.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rules.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rules.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Entry"> <summary> <para>Regroup Entry.</para> <para>When the object is serialized out as xml, its qualified name is o:entry.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Entry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Entry.#ctor"> <summary> Initializes a new instance of the Entry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Entry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Entry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Entry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Entry.New"> <summary> <para> New Group ID.</para> <para>Represents the attribte in schema: new </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Entry.Old"> <summary> <para> Old Group ID.</para> <para>Represents the attribte in schema: old </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Rule"> <summary> <para>Rule.</para> <para>When the object is serialized out as xml, its qualified name is o:r.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Proxy <o:proxy></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rule.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rule.#ctor"> <summary> Initializes a new instance of the Rule class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rule.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Rule class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rule.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Rule class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rule.#ctor(System.String)"> <summary> Initializes a new instance of the Rule class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Rule.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rule.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rule.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rule.Id"> <summary> <para> Rule ID.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rule.Type"> <summary> <para> Rule Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rule.How"> <summary> <para> Alignment Rule Type.</para> <para>Represents the attribte in schema: how </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Rule.ShapeReference"> <summary> <para> Rule Shape Reference.</para> <para>Represents the attribte in schema: idref </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.RelationTable"> <summary> <para>Diagram Relationship Table.</para> <para>When the object is serialized out as xml, its qualified name is o:relationtable.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Relation <o:rel></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RelationTable.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RelationTable.#ctor"> <summary> Initializes a new instance of the RelationTable class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RelationTable.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RelationTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RelationTable.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RelationTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RelationTable.#ctor(System.String)"> <summary> Initializes a new instance of the RelationTable class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.RelationTable.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.RelationTable.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.RelationTable.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.RelationTable.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Relation"> <summary> <para>Diagram Relationship.</para> <para>When the object is serialized out as xml, its qualified name is o:rel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Relation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Relation.#ctor"> <summary> Initializes a new instance of the Relation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Relation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Relation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Relation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Relation.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Relation.SourceId"> <summary> <para> Diagram Relationship Source Shape.</para> <para>Represents the attribte in schema: idsrc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Relation.DestinationId"> <summary> <para> Diagram Relationship Destination Shape.</para> <para>Represents the attribte in schema: iddest </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Relation.CenterShapeId"> <summary> <para> Diagram Relationship Center Shape.</para> <para>Represents the attribte in schema: idcntr </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.LinkType"> <summary> <para>Embedded Object Alternate Image Request.</para> <para>When the object is serialized out as xml, its qualified name is o:LinkType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LinkType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LinkType.#ctor"> <summary> Initializes a new instance of the LinkType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LinkType.#ctor(System.String)"> <summary> Initializes a new instance of the LinkType class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LinkType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.LinkType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.LinkType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.LockedField"> <summary> <para>Embedded Object Cannot Be Refreshed.</para> <para>When the object is serialized out as xml, its qualified name is o:LockedField.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LockedField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LockedField.#ctor"> <summary> Initializes a new instance of the LockedField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LockedField.#ctor(System.String)"> <summary> Initializes a new instance of the LockedField class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.LockedField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.LockedField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.LockedField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.FieldCodes"> <summary> <para>WordprocessingML Field Switches.</para> <para>When the object is serialized out as xml, its qualified name is o:FieldCodes.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.FieldCodes.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.FieldCodes.#ctor"> <summary> Initializes a new instance of the FieldCodes class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.FieldCodes.#ctor(System.String)"> <summary> Initializes a new instance of the FieldCodes class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.FieldCodes.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.FieldCodes.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.FieldCodes.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.Proxy"> <summary> <para>Shape Reference.</para> <para>When the object is serialized out as xml, its qualified name is o:proxy.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Proxy.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Proxy.#ctor"> <summary> Initializes a new instance of the Proxy class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.Proxy.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Proxy.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Proxy.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Proxy.Start"> <summary> <para> Start Point Connection Flag.</para> <para>Represents the attribte in schema: start </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Proxy.End"> <summary> <para> End Point Connection Flag.</para> <para>Represents the attribte in schema: end </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Proxy.ShapeReference"> <summary> <para> Proxy Shape Reference.</para> <para>Represents the attribte in schema: idref </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.Proxy.ConnectionLocation"> <summary> <para> Connection Location.</para> <para>Represents the attribte in schema: connectloc </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ColorMostRecentlyUsed"> <summary> <para>Most Recently Used Colors.</para> <para>When the object is serialized out as xml, its qualified name is o:colormru.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColorMostRecentlyUsed.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColorMostRecentlyUsed.#ctor"> <summary> Initializes a new instance of the ColorMostRecentlyUsed class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColorMostRecentlyUsed.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMostRecentlyUsed.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMostRecentlyUsed.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMostRecentlyUsed.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMostRecentlyUsed.Colors"> <summary> <para> Recent colors.</para> <para>Represents the attribte in schema: colors </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ColorMenu"> <summary> <para>UI Default Colors.</para> <para>When the object is serialized out as xml, its qualified name is o:colormenu.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColorMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColorMenu.#ctor"> <summary> Initializes a new instance of the ColorMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Office.ColorMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMenu.Extension"> <summary> <para> VML Extension Handling Behavior.</para> <para>Represents the attribte in schema: v:ext </para> </summary> <remark> xmlns:v=urn:schemas-microsoft-com:vml </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMenu.StrokeColor"> <summary> <para> Default stroke color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMenu.FillColor"> <summary> <para> Default fill color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMenu.ShadowColor"> <summary> <para> Default shadow color.</para> <para>Represents the attribte in schema: shadowcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Office.ColorMenu.ExtrusionColor"> <summary> <para> Default extrusion color.</para> <para>Represents the attribte in schema: extrusioncolor </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.AlignmentValues"> <summary> Alignment Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AlignmentValues.Top"> <summary> Top Alignment. <para>When the item is serialized out as xml, its value is "top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AlignmentValues.Middle"> <summary> Middle Alignment. <para>When the item is serialized out as xml, its value is "middle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AlignmentValues.Bottom"> <summary> Bottom Alignment. <para>When the item is serialized out as xml, its value is "bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AlignmentValues.Left"> <summary> Left Alignment. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AlignmentValues.Center"> <summary> Center Alignment. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AlignmentValues.Right"> <summary> Right Alignment. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ScreenSizeValues"> <summary> Screen Sizes Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ScreenSizeValues.Sz544x376"> <summary> 544x376 pixels. <para>When the item is serialized out as xml, its value is "544,376".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ScreenSizeValues.Sz640x480"> <summary> 640x480 pixels. <para>When the item is serialized out as xml, its value is "640,480".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ScreenSizeValues.Sz720x512"> <summary> 720x512 pixels. <para>When the item is serialized out as xml, its value is "720,512".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ScreenSizeValues.Sz800x600"> <summary> 800x600 pixels. <para>When the item is serialized out as xml, its value is "800,600".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ScreenSizeValues.Sz1024x768"> <summary> 1024x768 pixels. <para>When the item is serialized out as xml, its value is "1024,768".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ScreenSizeValues.Sz1152x862"> <summary> 1152x862 pixels. <para>When the item is serialized out as xml, its value is "1152,862".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.InsetMarginValues"> <summary> Inset Margin Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.InsetMarginValues.Auto"> <summary> Automatic Margins. <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.InsetMarginValues.Custom"> <summary> Custom Margins. <para>When the item is serialized out as xml, its value is "custom".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ColorModeValues"> <summary> Extrusion Color Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ColorModeValues.Auto"> <summary> Use Shape Fill Color. <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ColorModeValues.Custom"> <summary> Use Custom Color. <para>When the item is serialized out as xml, its value is "custom".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ExtrusionValues"> <summary> Extrusion Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ExtrusionValues.Perspective"> <summary> Perspective Projection. <para>When the item is serialized out as xml, its value is "perspective".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ExtrusionValues.Parallel"> <summary> Parallel Projection. <para>When the item is serialized out as xml, its value is "parallel".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ExtrusionRenderValues"> <summary> Extrusion Rendering Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ExtrusionRenderValues.Solid"> <summary> Solid. <para>When the item is serialized out as xml, its value is "solid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ExtrusionRenderValues.WireFrame"> <summary> Wireframe. <para>When the item is serialized out as xml, its value is "wireFrame".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ExtrusionRenderValues.BoundingCube"> <summary> Bounding Cube. <para>When the item is serialized out as xml, its value is "boundingCube".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ExtrusionPlaneValues"> <summary> Extrusion Planes </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ExtrusionPlaneValues.XY"> <summary> XY Plane. <para>When the item is serialized out as xml, its value is "XY".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ExtrusionPlaneValues.ZX"> <summary> ZX Plane. <para>When the item is serialized out as xml, its value is "ZX".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ExtrusionPlaneValues.YZ"> <summary> YZ Plane. <para>When the item is serialized out as xml, its value is "YZ".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.AngleValues"> <summary> Callout Angles </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AngleValues.Any"> <summary> Any Angle. <para>When the item is serialized out as xml, its value is "any".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AngleValues.Degree30"> <summary> 30 degrees. <para>When the item is serialized out as xml, its value is "30".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AngleValues.Degree45"> <summary> 45 degrees. <para>When the item is serialized out as xml, its value is "45".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AngleValues.Degree60"> <summary> 60 degrees. <para>When the item is serialized out as xml, its value is "60".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AngleValues.Degree90"> <summary> 90 degrees. <para>When the item is serialized out as xml, its value is "90".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.AngleValues.Auto"> <summary> Automatic Angle. <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.CalloutPlacementValues"> <summary> Callout Placement </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.CalloutPlacementValues.Top"> <summary> Top placement. <para>When the item is serialized out as xml, its value is "top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.CalloutPlacementValues.Center"> <summary> Center placement. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.CalloutPlacementValues.Bottom"> <summary> Bottom placement. <para>When the item is serialized out as xml, its value is "bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.CalloutPlacementValues.User"> <summary> User-defined placement. <para>When the item is serialized out as xml, its value is "user".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ConnectorValues"> <summary> Connector Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ConnectorValues.None"> <summary> No Connector. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ConnectorValues.Straight"> <summary> Straight Connector. <para>When the item is serialized out as xml, its value is "straight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ConnectorValues.Elbow"> <summary> Elbow Connector. <para>When the item is serialized out as xml, its value is "elbow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ConnectorValues.Curved"> <summary> Curved Connector. <para>When the item is serialized out as xml, its value is "curved".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.HorizontalRuleAlignmentValues"> <summary> Alignment Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.HorizontalRuleAlignmentValues.Left"> <summary> Left Alignment. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.HorizontalRuleAlignmentValues.Right"> <summary> Right Alignment. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.HorizontalRuleAlignmentValues.Center"> <summary> Center Alignment. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.ConnectValues"> <summary> Connection Locations Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ConnectValues.None"> <summary> No. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ConnectValues.Rectangle"> <summary> Four Connections. <para>When the item is serialized out as xml, its value is "rect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ConnectValues.Segments"> <summary> Edit Point Connections. <para>When the item is serialized out as xml, its value is "segments".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.ConnectValues.Custom"> <summary> Custom Connections. <para>When the item is serialized out as xml, its value is "custom".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.OleLinkValues"> <summary> Embedded Object Alternate Image Request Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleLinkValues.Picture"> <summary> Other Image. <para>When the item is serialized out as xml, its value is "Picture".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleLinkValues.Bitmap"> <summary> Bitmap Image. <para>When the item is serialized out as xml, its value is "Bitmap".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleLinkValues.EnhancedMetaFile"> <summary> Enhanced Metafile Image. <para>When the item is serialized out as xml, its value is "EnhancedMetaFile".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.OleValues"> <summary> OLE Connection Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleValues.Embed"> <summary> Embedded Object. <para>When the item is serialized out as xml, its value is "Embed".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleValues.Link"> <summary> Linked Object. <para>When the item is serialized out as xml, its value is "Link".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.OleDrawAspectValues"> <summary> OLE Object Representations </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleDrawAspectValues.Content"> <summary> Snapshot. <para>When the item is serialized out as xml, its value is "Content".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleDrawAspectValues.Icon"> <summary> Icon. <para>When the item is serialized out as xml, its value is "Icon".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.OleUpdateModeValues"> <summary> OLE Update Method Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleUpdateModeValues.Always"> <summary> Server Application Update. <para>When the item is serialized out as xml, its value is "Always".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.OleUpdateModeValues.OnCall"> <summary> User Update. <para>When the item is serialized out as xml, its value is "OnCall".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.FillValues"> <summary> Shape Fill Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.GradientCenter"> <summary> Centered Radial Gradient. <para>When the item is serialized out as xml, its value is "gradientCenter".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.Solid"> <summary> Solid Fill. <para>When the item is serialized out as xml, its value is "solid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.Pattern"> <summary> Image Pattern. <para>When the item is serialized out as xml, its value is "pattern".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.Tile"> <summary> Tiled Image. <para>When the item is serialized out as xml, its value is "tile".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.Frame"> <summary> Stretch Image to Fit. <para>When the item is serialized out as xml, its value is "frame".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.GradientUnscaled"> <summary> Unscaled Gradient. <para>When the item is serialized out as xml, its value is "gradientUnscaled".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.GradientRadial"> <summary> Radial Gradient. <para>When the item is serialized out as xml, its value is "gradientRadial".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.Gradient"> <summary> Linear Gradient. <para>When the item is serialized out as xml, its value is "gradient".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.FillValues.Background"> <summary> Use Background Fill. <para>When the item is serialized out as xml, its value is "background".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.RuleValues"> <summary> Rule Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.RuleValues.Arc"> <summary> Arc Rule. <para>When the item is serialized out as xml, its value is "arc".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.RuleValues.Callout"> <summary> Callout Rule. <para>When the item is serialized out as xml, its value is "callout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.RuleValues.Connector"> <summary> Connector Rule. <para>When the item is serialized out as xml, its value is "connector".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues"> <summary> Black And White Modes </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.Color"> <summary> Color. <para>When the item is serialized out as xml, its value is "color".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.Auto"> <summary> Automatic. <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.GrayScale"> <summary> Grayscale. <para>When the item is serialized out as xml, its value is "grayScale".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.LightGrayScale"> <summary> Light grayscale. <para>When the item is serialized out as xml, its value is "lightGrayScale".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.InverseGray"> <summary> Inverse Grayscale. <para>When the item is serialized out as xml, its value is "inverseGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.GrayOutline"> <summary> Gray Outlines. <para>When the item is serialized out as xml, its value is "grayOutline".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.HighContrast"> <summary> Black And White. <para>When the item is serialized out as xml, its value is "highContrast".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.Black"> <summary> Black. <para>When the item is serialized out as xml, its value is "black".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.White"> <summary> White. <para>When the item is serialized out as xml, its value is "white".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.Undrawn"> <summary> Do Not Show. <para>When the item is serialized out as xml, its value is "undrawn".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Office.BlackAndWhiteModeValues.BlackTextAndLines"> <summary> Black Text And Lines. <para>When the item is serialized out as xml, its value is "blackTextAndLines".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Presentation.InkAnnotationFlag"> <summary> <para>Ink Annotation Flag.</para> <para>When the object is serialized out as xml, its qualified name is pvml:iscomment.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Presentation.InkAnnotationFlag.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Presentation.InkAnnotationFlag.#ctor"> <summary> Initializes a new instance of the InkAnnotationFlag class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Presentation.InkAnnotationFlag.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Presentation.InkAnnotationFlag.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Presentation.InkAnnotationFlag.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Presentation.TextData"> <summary> <para>VML Diagram Text.</para> <para>When the object is serialized out as xml, its qualified name is pvml:textdata.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Presentation.TextData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Presentation.TextData.#ctor"> <summary> Initializes a new instance of the TextData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Presentation.TextData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Presentation.TextData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Presentation.TextData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Presentation.TextData.Id"> <summary> <para> Text Reference.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder"> <summary> <para>Top Border.</para> <para>When the object is serialized out as xml, its qualified name is w10:bordertop.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderType"> <summary> Defines the BorderType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderType.#ctor"> <summary> Initializes a new instance of the BorderType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderType.Type"> <summary> <para> Border Style.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderType.Width"> <summary> <para> Border Width.</para> <para>Represents the attribte in schema: width </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderType.Shadow"> <summary> <para> Border shadow.</para> <para>Represents the attribte in schema: shadow </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder.#ctor"> <summary> Initializes a new instance of the TopBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder"> <summary> <para>Left Border.</para> <para>When the object is serialized out as xml, its qualified name is w10:borderleft.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder.#ctor"> <summary> Initializes a new instance of the LeftBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder"> <summary> <para>Right Border.</para> <para>When the object is serialized out as xml, its qualified name is w10:borderright.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder.#ctor"> <summary> Initializes a new instance of the RightBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder"> <summary> <para>Bottom Border.</para> <para>When the object is serialized out as xml, its qualified name is w10:borderbottom.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder.#ctor"> <summary> Initializes a new instance of the BottomBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap"> <summary> <para>Text Wrapping.</para> <para>When the object is serialized out as xml, its qualified name is w10:wrap.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.#ctor"> <summary> Initializes a new instance of the TextWrap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.Type"> <summary> <para> Wrapping type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.Side"> <summary> <para> Wrapping side.</para> <para>Represents the attribte in schema: side </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.AnchorX"> <summary> <para> Horizontal Positioning Base.</para> <para>Represents the attribte in schema: anchorx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap.AnchorY"> <summary> <para> Vertical Positioning Base.</para> <para>Represents the attribte in schema: anchory </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock"> <summary> <para>Anchor Location Is Locked.</para> <para>When the object is serialized out as xml, its qualified name is w10:anchorlock.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock.#ctor"> <summary> Initializes a new instance of the AnchorLock class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues"> <summary> Border Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.None"> <summary> No Border. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.Single"> <summary> Single Line Border. <para>When the item is serialized out as xml, its value is "single".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.Thick"> <summary> Thick Line Border. <para>When the item is serialized out as xml, its value is "thick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.Double"> <summary> Double Line Border. <para>When the item is serialized out as xml, its value is "double".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.Hairline"> <summary> Hairline Border. <para>When the item is serialized out as xml, its value is "hairline".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.Dot"> <summary> Dotted Border. <para>When the item is serialized out as xml, its value is "dot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.Dash"> <summary> pecifies a line border consisting of a dashed line around the parent object.. <para>When the item is serialized out as xml, its value is "dash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.DotDash"> <summary> Dot Dash Border. <para>When the item is serialized out as xml, its value is "dotDash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.DashDotDot"> <summary> Dash Dot Dot Border. <para>When the item is serialized out as xml, its value is "dashDotDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.Triple"> <summary> Triple Line Border. <para>When the item is serialized out as xml, its value is "triple".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThinThickSmall"> <summary> Thin Thick Small Gap Border. <para>When the item is serialized out as xml, its value is "thinThickSmall".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThickThinSmall"> <summary> Small thick-thin lines border. <para>When the item is serialized out as xml, its value is "thickThinSmall".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThickBetweenThinSmall"> <summary> Small thin-thick-thin Lines Border. <para>When the item is serialized out as xml, its value is "thickBetweenThinSmall".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThinThick"> <summary> Thin Thick Line Border. <para>When the item is serialized out as xml, its value is "thinThick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThickThin"> <summary> Thick Thin Line Border. <para>When the item is serialized out as xml, its value is "thickThin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThickBetweenThin"> <summary> Thin-thick-thin Border. <para>When the item is serialized out as xml, its value is "thickBetweenThin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThinThickLarge"> <summary> Thin Thick Large Gap Border. <para>When the item is serialized out as xml, its value is "thinThickLarge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThickThinLarge"> <summary> Thick Thin Large Gap Border. <para>When the item is serialized out as xml, its value is "thickThinLarge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThickBetweenThinLarge"> <summary> Large thin-thick-thin Border. <para>When the item is serialized out as xml, its value is "thickBetweenThinLarge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.Wave"> <summary> Wavy Border. <para>When the item is serialized out as xml, its value is "wave".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.DoubleWave"> <summary> Double Wavy Lines Border. <para>When the item is serialized out as xml, its value is "doubleWave".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.DashedSmall"> <summary> Small Dash Border. <para>When the item is serialized out as xml, its value is "dashedSmall".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.DashDotStroked"> <summary> Stroked Dash Dot Border. <para>When the item is serialized out as xml, its value is "dashDotStroked".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThreeDEmboss"> <summary> 3D Embossed Border. <para>When the item is serialized out as xml, its value is "threeDEmboss".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.ThreeDEngrave"> <summary> 3D Engraved Border. <para>When the item is serialized out as xml, its value is "threeDEngrave".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.HTMLOutset"> <summary> Outset Border. <para>When the item is serialized out as xml, its value is "HTMLOutset".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.BorderValues.HTMLInset"> <summary> Inset Border. <para>When the item is serialized out as xml, its value is "HTMLInset".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapValues"> <summary> Text Wrapping Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapValues.TopAndBottom"> <summary> Top and bottom wrapping. <para>When the item is serialized out as xml, its value is "topAndBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapValues.Square"> <summary> Square wrapping. <para>When the item is serialized out as xml, its value is "square".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapValues.None"> <summary> No wrapping. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapValues.Tight"> <summary> Tight wrapping. <para>When the item is serialized out as xml, its value is "tight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapValues.Through"> <summary> Through wrapping. <para>When the item is serialized out as xml, its value is "through".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapSideValues"> <summary> Text Wrapping Side </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapSideValues.Both"> <summary> Both sides. <para>When the item is serialized out as xml, its value is "both".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapSideValues.Left"> <summary> Left side. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapSideValues.Right"> <summary> Right side. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.WrapSideValues.Largest"> <summary> Largest side. <para>When the item is serialized out as xml, its value is "largest".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.HorizontalAnchorValues"> <summary> Horizontal Anchor Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.HorizontalAnchorValues.Margin"> <summary> Margin. <para>When the item is serialized out as xml, its value is "margin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.HorizontalAnchorValues.Page"> <summary> Page. <para>When the item is serialized out as xml, its value is "page".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.HorizontalAnchorValues.Text"> <summary> Text. <para>When the item is serialized out as xml, its value is "text".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Wordprocessing.VerticalAnchorValues"> <summary> Vertical Anchor Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.VerticalAnchorValues.Margin"> <summary> Margin. <para>When the item is serialized out as xml, its value is "margin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.VerticalAnchorValues.Page"> <summary> Page. <para>When the item is serialized out as xml, its value is "page".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.Wordprocessing.VerticalAnchorValues.Text"> <summary> Text. <para>When the item is serialized out as xml, its value is "text".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Path"> <summary> <para>Defines the Path Class.</para> <para>When the object is serialized out as xml, its qualified name is v:path.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Path.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Path.#ctor"> <summary> Initializes a new instance of the Path class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Path.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.Value"> <summary> <para> Path Definition.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.Limo"> <summary> <para> Limo Stretch Point.</para> <para>Represents the attribte in schema: limo </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.TextboxRectangle"> <summary> <para> Text Box Bounding Box.</para> <para>Represents the attribte in schema: textboxrect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.AllowFill"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: fillok </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.AllowStroke"> <summary> <para> Stroke Toggle.</para> <para>Represents the attribte in schema: strokeok </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.AllowShading"> <summary> <para> Shadow Toggle.</para> <para>Represents the attribte in schema: shadowok </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.ShowArrowhead"> <summary> <para> Arrowhead Display Toggle.</para> <para>Represents the attribte in schema: arrowok </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.AllowGradientShape"> <summary> <para> Gradient Shape Toggle.</para> <para>Represents the attribte in schema: gradientshapeok </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.AllowTextPath"> <summary> <para> Text Path Toggle.</para> <para>Represents the attribte in schema: textpathok </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.AllowInsetPen"> <summary> <para> Inset Stroke From Path Flag.</para> <para>Represents the attribte in schema: insetpenok </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.ConnectionPointType"> <summary> <para> Connection Point Type.</para> <para>Represents the attribte in schema: o:connecttype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.ConnectionPoints"> <summary> <para> Connection Points.</para> <para>Represents the attribte in schema: o:connectlocs </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.ConnectAngles"> <summary> <para> Connection Point Connect Angles.</para> <para>Represents the attribte in schema: o:connectangles </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Path.AllowExtrusion"> <summary> <para> Extrusion Toggle.</para> <para>Represents the attribte in schema: o:extrusionok </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Formulas"> <summary> <para>Defines the Formulas Class.</para> <para>When the object is serialized out as xml, its qualified name is v:formulas.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Formula <v:f></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formulas.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formulas.#ctor"> <summary> Initializes a new instance of the Formulas class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formulas.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Formulas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formulas.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Formulas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formulas.#ctor(System.String)"> <summary> Initializes a new instance of the Formulas class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formulas.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Formulas.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Formulas.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.ShapeHandles"> <summary> <para>Defines the ShapeHandles Class.</para> <para>When the object is serialized out as xml, its qualified name is v:handles.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeHandle <v:h></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandles.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandles.#ctor"> <summary> Initializes a new instance of the ShapeHandles class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandles.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeHandles class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandles.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeHandles class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandles.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeHandles class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandles.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandles.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandles.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Fill"> <summary> <para>Defines the Fill Class.</para> <para>When the object is serialized out as xml, its qualified name is v:fill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties <o:fill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Fill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Fill.#ctor"> <summary> Initializes a new instance of the Fill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Fill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Fill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Fill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Fill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Fill.#ctor(System.String)"> <summary> Initializes a new instance of the Fill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Fill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Type"> <summary> <para> Fill Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.On"> <summary> <para> Fill Toggle.</para> <para>Represents the attribte in schema: on </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Color"> <summary> <para> Primary Color.</para> <para>Represents the attribte in schema: color </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Opacity"> <summary> <para> Primary Color Opacity.</para> <para>Represents the attribte in schema: opacity </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Color2"> <summary> <para> Secondary Color.</para> <para>Represents the attribte in schema: color2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Source"> <summary> <para> Fill Image Source.</para> <para>Represents the attribte in schema: src </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: o:href </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.AlternateImageReference"> <summary> <para> Alternate Image Reference Location.</para> <para>Represents the attribte in schema: o:althref </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Size"> <summary> <para> Fill Image Size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Origin"> <summary> <para> Fill Image Origin.</para> <para>Represents the attribte in schema: origin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Position"> <summary> <para> Fill Image Position.</para> <para>Represents the attribte in schema: position </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Aspect"> <summary> <para> Image Aspect Ratio.</para> <para>Represents the attribte in schema: aspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Colors"> <summary> <para> Intermediate Colors.</para> <para>Represents the attribte in schema: colors </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Angle"> <summary> <para> Gradient Angle.</para> <para>Represents the attribte in schema: angle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.AlignShape"> <summary> <para> Align Image With Shape.</para> <para>Represents the attribte in schema: alignshape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Focus"> <summary> <para> Gradient Center.</para> <para>Represents the attribte in schema: focus </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.FocusSize"> <summary> <para> Radial Gradient Size.</para> <para>Represents the attribte in schema: focussize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.FocusPosition"> <summary> <para> Radial Gradient Center.</para> <para>Represents the attribte in schema: focusposition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Method"> <summary> <para> Gradient Fill Method.</para> <para>Represents the attribte in schema: method </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.DetectMouseClick"> <summary> <para> Detect Mouse Click.</para> <para>Represents the attribte in schema: o:detectmouseclick </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Title"> <summary> <para> Title.</para> <para>Represents the attribte in schema: o:title </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Opacity2"> <summary> <para> Secondary Color Opacity.</para> <para>Represents the attribte in schema: o:opacity2 </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Recolor"> <summary> <para> Recolor Fill as Picture.</para> <para>Represents the attribte in schema: recolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.Rotate"> <summary> <para> Rotate Fill with Shape.</para> <para>Represents the attribte in schema: rotate </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.RelationshipId"> <summary> <para> Relationship to Part.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Fill.FillExtendedProperties"> <summary> <para> FillExtendedProperties.</para> <para>Represents the element tag in schema: o:fill </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Stroke"> <summary> <para>Defines the Stroke Class.</para> <para>When the object is serialized out as xml, its qualified name is v:stroke.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Vml.Office.LeftStroke <o:left></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.TopStroke <o:top></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.RightStroke <o:right></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.BottomStroke <o:bottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ColumnStroke <o:column></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Stroke.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Stroke.#ctor"> <summary> Initializes a new instance of the Stroke class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Stroke.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Stroke class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Stroke.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Stroke class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Stroke.#ctor(System.String)"> <summary> Initializes a new instance of the Stroke class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Stroke.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.On"> <summary> <para> Stroke Toggle.</para> <para>Represents the attribte in schema: on </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Weight"> <summary> <para> Stroke Weight.</para> <para>Represents the attribte in schema: weight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Color"> <summary> <para> Stroke Color.</para> <para>Represents the attribte in schema: color </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Opacity"> <summary> <para> Stroke Opacity.</para> <para>Represents the attribte in schema: opacity </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.LineStyle"> <summary> <para> Stroke Line Style.</para> <para>Represents the attribte in schema: linestyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Miterlimit"> <summary> <para> Miter Joint Limit.</para> <para>Represents the attribte in schema: miterlimit </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.JoinStyle"> <summary> <para> Line End Join Style.</para> <para>Represents the attribte in schema: joinstyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.EndCap"> <summary> <para> Line End Cap.</para> <para>Represents the attribte in schema: endcap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.DashStyle"> <summary> <para> Stroke Dash Pattern.</para> <para>Represents the attribte in schema: dashstyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.FillType"> <summary> <para> Stroke Image Style.</para> <para>Represents the attribte in schema: filltype </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Source"> <summary> <para> Stroke Image Location.</para> <para>Represents the attribte in schema: src </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.ImageAspect"> <summary> <para> Stroke Image Aspect Ratio.</para> <para>Represents the attribte in schema: imageaspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.ImageSize"> <summary> <para> Stroke Image Size.</para> <para>Represents the attribte in schema: imagesize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.ImageAlignShape"> <summary> <para> Stoke Image Alignment.</para> <para>Represents the attribte in schema: imagealignshape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Color2"> <summary> <para> Stroke Alternate Pattern Color.</para> <para>Represents the attribte in schema: color2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.StartArrow"> <summary> <para> Line Start Arrowhead.</para> <para>Represents the attribte in schema: startarrow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.StartArrowWidth"> <summary> <para> Line Start Arrowhead Width.</para> <para>Represents the attribte in schema: startarrowwidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.StartArrowLength"> <summary> <para> Line Start Arrowhead Length.</para> <para>Represents the attribte in schema: startarrowlength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.EndArrow"> <summary> <para> Line End Arrowhead.</para> <para>Represents the attribte in schema: endarrow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.EndArrowWidth"> <summary> <para> Line End Arrowhead Width.</para> <para>Represents the attribte in schema: endarrowwidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.EndArrowLength"> <summary> <para> Line End Arrowhead Length.</para> <para>Represents the attribte in schema: endarrowlength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Href"> <summary> <para> Original Image Reference.</para> <para>Represents the attribte in schema: o:href </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.AlternateImageReference"> <summary> <para> Alternate Image Reference.</para> <para>Represents the attribte in schema: o:althref </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Title"> <summary> <para> Stroke Title.</para> <para>Represents the attribte in schema: o:title </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.RelationshipId"> <summary> <para> Relationship.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.Insetpen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.LeftStroke"> <summary> <para> LeftStroke.</para> <para>Represents the element tag in schema: o:left </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.TopStroke"> <summary> <para> TopStroke.</para> <para>Represents the element tag in schema: o:top </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.RightStroke"> <summary> <para> RightStroke.</para> <para>Represents the element tag in schema: o:right </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.BottomStroke"> <summary> <para> BottomStroke.</para> <para>Represents the element tag in schema: o:bottom </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Stroke.ColumnStroke"> <summary> <para> ColumnStroke.</para> <para>Represents the element tag in schema: o:column </para> </summary> <remark> xmlns:o = urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Shadow"> <summary> <para>Defines the Shadow Class.</para> <para>When the object is serialized out as xml, its qualified name is v:shadow.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shadow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shadow.#ctor"> <summary> Initializes a new instance of the Shadow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shadow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.On"> <summary> <para> Shadow Toggle.</para> <para>Represents the attribte in schema: on </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Type"> <summary> <para> Shadow Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Obscured"> <summary> <para> Shadow Transparency.</para> <para>Represents the attribte in schema: obscured </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Color"> <summary> <para> Shadow Primary Color.</para> <para>Represents the attribte in schema: color </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Opacity"> <summary> <para> Shadow Opacity.</para> <para>Represents the attribte in schema: opacity </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Offset"> <summary> <para> Shadow Primary Offset.</para> <para>Represents the attribte in schema: offset </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Color2"> <summary> <para> Shadow Secondary Color.</para> <para>Represents the attribte in schema: color2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Offset2"> <summary> <para> Shadow Secondary Offset.</para> <para>Represents the attribte in schema: offset2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Origin"> <summary> <para> Shadow Origin.</para> <para>Represents the attribte in schema: origin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shadow.Matrix"> <summary> <para> Shadow Perspective Matrix.</para> <para>Represents the attribte in schema: matrix </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.TextBox"> <summary> <para>Defines the TextBox Class.</para> <para>When the object is serialized out as xml, its qualified name is v:textbox.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Wordprocessing.TextBoxContent <w:txbxContent></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextBox.#ctor"> <summary> Initializes a new instance of the TextBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextBox.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextBox.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextBox.#ctor(System.String)"> <summary> Initializes a new instance of the TextBox class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextBox.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextBox.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextBox.Inset"> <summary> <para> Text Box Inset.</para> <para>Represents the attribte in schema: inset </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextBox.SingleClick"> <summary> <para> Text Box Single-Click Selection Toggle.</para> <para>Represents the attribte in schema: o:singleclick </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.TextPath"> <summary> <para>Defines the TextPath Class.</para> <para>When the object is serialized out as xml, its qualified name is v:textpath.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextPath.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextPath.#ctor"> <summary> Initializes a new instance of the TextPath class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.TextPath.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.On"> <summary> <para> Text Path Toggle.</para> <para>Represents the attribte in schema: on </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.FitShape"> <summary> <para> Shape Fit Toggle.</para> <para>Represents the attribte in schema: fitshape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.FitPath"> <summary> <para> Path Fit Toggle.</para> <para>Represents the attribte in schema: fitpath </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.Trim"> <summary> <para> Text Path Trim Toggle.</para> <para>Represents the attribte in schema: trim </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.XScale"> <summary> <para> Text X-Scaling.</para> <para>Represents the attribte in schema: xscale </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.TextPath.String"> <summary> <para> Text Path Text.</para> <para>Represents the attribte in schema: string </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.ImageData"> <summary> <para>Defines the ImageData Class.</para> <para>When the object is serialized out as xml, its qualified name is v:imagedata.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageData.#ctor"> <summary> Initializes a new instance of the ImageData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.ChromAKey"> <summary> <para> Image Transparency Color.</para> <para>Represents the attribte in schema: chromakey </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.CropLeft"> <summary> <para> Image Left Crop.</para> <para>Represents the attribte in schema: cropleft </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.CropTop"> <summary> <para> Image Top Crop.</para> <para>Represents the attribte in schema: croptop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.CropRight"> <summary> <para> Image Right Crop.</para> <para>Represents the attribte in schema: cropright </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.CropBottom"> <summary> <para> Image Bottom Crop.</para> <para>Represents the attribte in schema: cropbottom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.Gain"> <summary> <para> Image Intensity.</para> <para>Represents the attribte in schema: gain </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.BlackLevel"> <summary> <para> Image Brightness.</para> <para>Represents the attribte in schema: blacklevel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.Gamma"> <summary> <para> Image Gamma Correction.</para> <para>Represents the attribte in schema: gamma </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.Grayscale"> <summary> <para> Image Grayscale Toggle.</para> <para>Represents the attribte in schema: grayscale </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.BiLevel"> <summary> <para> Image Bilevel Toggle.</para> <para>Represents the attribte in schema: bilevel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.EmbossColor"> <summary> <para> Embossed Color.</para> <para>Represents the attribte in schema: embosscolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.RecolorTarget"> <summary> <para> Black Recoloring Color.</para> <para>Represents the attribte in schema: recolortarget </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.Title"> <summary> <para> Image Data Title.</para> <para>Represents the attribte in schema: o:title </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.DetectMouseClick"> <summary> <para> Detect Mouse Click.</para> <para>Represents the attribte in schema: o:detectmouseclick </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.RelId"> <summary> <para> Relationship to Part.</para> <para>Represents the attribte in schema: o:relid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.RelationshipId"> <summary> <para> Explicit Relationship to Image Data.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.Picture"> <summary> <para> Explicit Relationship to Alternate Image Data.</para> <para>Represents the attribte in schema: r:pict </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageData.RelHref"> <summary> <para> Explicit Relationship to Hyperlink Target.</para> <para>Represents the attribte in schema: r:href </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Shape"> <summary> <para>Shape Definition.</para> <para>When the object is serialized out as xml, its qualified name is v:shape.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Ink <o:ink></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.InkAnnotationFlag <pvml:iscomment></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shape.#ctor(System.String)"> <summary> Initializes a new instance of the Shape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Class"> <summary> <para> CSS Reference.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.WrapCoordinates"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Type"> <summary> <para> Shape Type Reference.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.Adjustment"> <summary> <para> Adjustment Parameters.</para> <para>Represents the attribte in schema: adj </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.EdgePath"> <summary> <para> Edge Path.</para> <para>Represents the attribte in schema: path </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.EncodedPackage"> <summary> <para> Encoded Package.</para> <para>Represents the attribte in schema: o:gfxdata </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shape.EquationXml"> <summary> <para> Storage for Alternate Math Content.</para> <para>Represents the attribte in schema: equationxml </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Shapetype"> <summary> <para>Shape Template.</para> <para>When the object is serialized out as xml, its qualified name is v:shapetype.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Complex <o:complex></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shapetype.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shapetype.#ctor"> <summary> Initializes a new instance of the Shapetype class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shapetype.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shapetype class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shapetype.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shapetype class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shapetype.#ctor(System.String)"> <summary> Initializes a new instance of the Shapetype class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Shapetype.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Class"> <summary> <para> CSS Reference.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.WrapCoordinates"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Adjustment"> <summary> <para> Adjustment Parameters.</para> <para>Represents the attribte in schema: adj </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.EdgePath"> <summary> <para> Edge Path.</para> <para>Represents the attribte in schema: path </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Shapetype.Master"> <summary> <para> Master Element Toggle.</para> <para>Represents the attribte in schema: o:master </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Group"> <summary> <para>Shape Group.</para> <para>When the object is serialized out as xml, its qualified name is v:group.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Group <v:group></description></item> <item><description>Shape <v:shape></description></item> <item><description>Shapetype <v:shapetype></description></item> <item><description>Arc <v:arc></description></item> <item><description>Curve <v:curve></description></item> <item><description>ImageFile <v:image></description></item> <item><description>Line <v:line></description></item> <item><description>Oval <v:oval></description></item> <item><description>PolyLine <v:polyline></description></item> <item><description>Rectangle <v:rect></description></item> <item><description>RoundRectangle <v:roundrect></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Diagram <o:diagram></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Group.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Group.#ctor"> <summary> Initializes a new instance of the Group class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Group.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Group class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Group.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Group class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Group.#ctor(System.String)"> <summary> Initializes a new instance of the Group class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Group.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Class"> <summary> <para> CSS Reference.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.WrapCoordinates"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.OptionalString"> <summary> <para> spid.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Oned"> <summary> <para> oned.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.RegroupId"> <summary> <para> regroupid.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.DoubleClickNotify"> <summary> <para> doubleclicknotify.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Button"> <summary> <para> button.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.UserHidden"> <summary> <para> userhidden.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Bullet"> <summary> <para> bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.Horizontal"> <summary> <para> hr.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.HorizontalStandard"> <summary> <para> hrstd.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.HorizontalNoShade"> <summary> <para> hrnoshade.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.HorizontalPercentage"> <summary> <para> hrpct.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.HorizontalAlignment"> <summary> <para> hralign.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.AllowInCell"> <summary> <para> allowincell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.AllowOverlap"> <summary> <para> allowoverlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.UserDrawn"> <summary> <para> userdrawn.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.DiagramLayout"> <summary> <para> dgmlayout.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.DiagramNodeKind"> <summary> <para> dgmnodekind.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.DiagramLayoutMostRecentUsed"> <summary> <para> dgmlayoutmru.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.InsetMode"> <summary> <para> insetmode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.EditAs"> <summary> <para> Group Diagram Type.</para> <para>Represents the attribte in schema: editas </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.TableProperties"> <summary> <para> Table Properties.</para> <para>Represents the attribte in schema: o:tableproperties </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Group.TableLimits"> <summary> <para> Table Row Height Limits.</para> <para>Represents the attribte in schema: o:tablelimits </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Background"> <summary> <para>Document Background.</para> <para>When the object is serialized out as xml, its qualified name is v:background.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Fill <v:fill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Background.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Background.#ctor"> <summary> Initializes a new instance of the Background class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Background.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Background class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Background.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Background class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Background.#ctor(System.String)"> <summary> Initializes a new instance of the Background class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Background.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: fill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.Fillcolor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.TargetScreenSize"> <summary> <para> Target Screen Size.</para> <para>Represents the attribte in schema: o:targetscreensize </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Background.Fill"> <summary> <para> Fill.</para> <para>Represents the element tag in schema: v:fill </para> </summary> <remark> xmlns:v = urn:schemas-microsoft-com:vml </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.Arc"> <summary> <para>Arc Segment.</para> <para>When the object is serialized out as xml, its qualified name is v:arc.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Arc.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Arc.#ctor"> <summary> Initializes a new instance of the Arc class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Arc.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Arc class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Arc.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Arc class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Arc.#ctor(System.String)"> <summary> Initializes a new instance of the Arc class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Arc.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Wrapcoords"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.StartAngle"> <summary> <para> Starting Angle.</para> <para>Represents the attribte in schema: startangle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Arc.EndAngle"> <summary> <para> Ending Angle.</para> <para>Represents the attribte in schema: endangle </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Curve"> <summary> <para>Bezier Curve.</para> <para>When the object is serialized out as xml, its qualified name is v:curve.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Curve.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Curve.#ctor"> <summary> Initializes a new instance of the Curve class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Curve.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Curve class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Curve.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Curve class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Curve.#ctor(System.String)"> <summary> Initializes a new instance of the Curve class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Curve.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Class"> <summary> <para> CSS Reference.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.WrapCoordinates"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.From"> <summary> <para> Curve Starting Point.</para> <para>Represents the attribte in schema: from </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Control1"> <summary> <para> First Curve Control Point.</para> <para>Represents the attribte in schema: control1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.Control2"> <summary> <para> Second Curve Control Point.</para> <para>Represents the attribte in schema: control2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Curve.To"> <summary> <para> Curve Ending Point.</para> <para>Represents the attribte in schema: to </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.ImageFile"> <summary> <para>Image File.</para> <para>When the object is serialized out as xml, its qualified name is v:image.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageFile.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageFile.#ctor"> <summary> Initializes a new instance of the ImageFile class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageFile.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ImageFile class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageFile.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ImageFile class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageFile.#ctor(System.String)"> <summary> Initializes a new instance of the ImageFile class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.ImageFile.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Style"> <summary> <para> style.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Href"> <summary> <para> href.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Target"> <summary> <para> target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Class"> <summary> <para> class.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Alternate"> <summary> <para> alt.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.CoordinateSize"> <summary> <para> coordsize.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.WrapCoordinates"> <summary> <para> wrapcoords.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Print"> <summary> <para> print.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Source"> <summary> <para> Image Source.</para> <para>Represents the attribte in schema: src </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.CropLeft"> <summary> <para> Image Left Crop.</para> <para>Represents the attribte in schema: cropleft </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.CropTop"> <summary> <para> Image Top Crop.</para> <para>Represents the attribte in schema: croptop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.CropRight"> <summary> <para> Image Right Crop.</para> <para>Represents the attribte in schema: cropright </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.CropBottom"> <summary> <para> Image Bottom Crop.</para> <para>Represents the attribte in schema: cropbottom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Gain"> <summary> <para> Image Intensity.</para> <para>Represents the attribte in schema: gain </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.BlackLevel"> <summary> <para> Image Brightness.</para> <para>Represents the attribte in schema: blacklevel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.Gamma"> <summary> <para> Image Gamma Correction.</para> <para>Represents the attribte in schema: gamma </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.GrayScale"> <summary> <para> Image Grayscale Toggle.</para> <para>Represents the attribte in schema: grayscale </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ImageFile.BiLevel"> <summary> <para> Image Bilevel Toggle.</para> <para>Represents the attribte in schema: bilevel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Line"> <summary> <para>Line.</para> <para>When the object is serialized out as xml, its qualified name is v:line.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Line.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Line.#ctor"> <summary> Initializes a new instance of the Line class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Line.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Line class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Line.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Line class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Line.#ctor(System.String)"> <summary> Initializes a new instance of the Line class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Line.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Class"> <summary> <para> CSS Reference.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.WrapCoordinates"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.From"> <summary> <para> Line Start.</para> <para>Represents the attribte in schema: from </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Line.To"> <summary> <para> Line End Point.</para> <para>Represents the attribte in schema: to </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Oval"> <summary> <para>Oval.</para> <para>When the object is serialized out as xml, its qualified name is v:oval.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Oval.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Oval.#ctor"> <summary> Initializes a new instance of the Oval class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Oval.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Oval class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Oval.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Oval class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Oval.#ctor(System.String)"> <summary> Initializes a new instance of the Oval class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Oval.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Class"> <summary> <para> CSS Reference.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.WrapCoordinates"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Oval.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.PolyLine"> <summary> <para>Multiple Path Line.</para> <para>When the object is serialized out as xml, its qualified name is v:polyline.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Ink <o:ink></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.PolyLine.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.PolyLine.#ctor"> <summary> Initializes a new instance of the PolyLine class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.PolyLine.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PolyLine class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.PolyLine.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PolyLine class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.PolyLine.#ctor(System.String)"> <summary> Initializes a new instance of the PolyLine class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.PolyLine.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Class"> <summary> <para> CSS Reference.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.WrapCoordinates"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.PolyLine.Points"> <summary> <para> Points for Compound Line.</para> <para>Represents the attribte in schema: points </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Rectangle"> <summary> <para>Rectangle.</para> <para>When the object is serialized out as xml, its qualified name is v:rect.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.Rectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Rectangle.#ctor"> <summary> Initializes a new instance of the Rectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Rectangle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Rectangle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Rectangle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Rectangle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Rectangle.#ctor(System.String)"> <summary> Initializes a new instance of the Rectangle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.Rectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Style"> <summary> <para> Shape Styling Properties.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Href"> <summary> <para> Hyperlink Target.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Target"> <summary> <para> Hyperlink Display Target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Class"> <summary> <para> CSS Reference.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Title"> <summary> <para> Shape Title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Alternate"> <summary> <para> Alternate Text.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.CoordinateSize"> <summary> <para> Coordinate Space Size.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.CoordinateOrigin"> <summary> <para> Coordinate Space Origin.</para> <para>Represents the attribte in schema: coordorigin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.WrapCoordinates"> <summary> <para> Shape Bounding Polygon.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Print"> <summary> <para> Print Toggle.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.Rectangle.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="T:DocumentFormat.OpenXml.Vml.RoundRectangle"> <summary> <para>Rounded Rectangle.</para> <para>When the object is serialized out as xml, its qualified name is v:roundrect.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <v:path></description></item> <item><description>Formulas <v:formulas></description></item> <item><description>ShapeHandles <v:handles></description></item> <item><description>Fill <v:fill></description></item> <item><description>Stroke <v:stroke></description></item> <item><description>Shadow <v:shadow></description></item> <item><description>TextBox <v:textbox></description></item> <item><description>TextPath <v:textpath></description></item> <item><description>ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Vml.RoundRectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.RoundRectangle.#ctor"> <summary> Initializes a new instance of the RoundRectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.RoundRectangle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RoundRectangle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.RoundRectangle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RoundRectangle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.RoundRectangle.#ctor(System.String)"> <summary> Initializes a new instance of the RoundRectangle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Vml.RoundRectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Style"> <summary> <para> style.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Href"> <summary> <para> href.</para> <para>Represents the attribte in schema: href </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Target"> <summary> <para> target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Class"> <summary> <para> class.</para> <para>Represents the attribte in schema: class </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Alternate"> <summary> <para> alt.</para> <para>Represents the attribte in schema: alt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.CoordinateSize"> <summary> <para> coordsize.</para> <para>Represents the attribte in schema: coordsize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.WrapCoordinates"> <summary> <para> wrapcoords.</para> <para>Represents the attribte in schema: wrapcoords </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Print"> <summary> <para> print.</para> <para>Represents the attribte in schema: print </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.OptionalString"> <summary> <para> Optional String.</para> <para>Represents the attribte in schema: o:spid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Oned"> <summary> <para> Shape Handle Toggle.</para> <para>Represents the attribte in schema: o:oned </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.RegroupId"> <summary> <para> Regroup ID.</para> <para>Represents the attribte in schema: o:regroupid </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.DoubleClickNotify"> <summary> <para> Double-click Notification Toggle.</para> <para>Represents the attribte in schema: o:doubleclicknotify </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Button"> <summary> <para> Button Behavior Toggle.</para> <para>Represents the attribte in schema: o:button </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.UserHidden"> <summary> <para> Hide Script Anchors.</para> <para>Represents the attribte in schema: o:userhidden </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Bullet"> <summary> <para> Graphical Bullet.</para> <para>Represents the attribte in schema: o:bullet </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Horizontal"> <summary> <para> Horizontal Rule Toggle.</para> <para>Represents the attribte in schema: o:hr </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.HorizontalStandard"> <summary> <para> Horizontal Rule Standard Display Toggle.</para> <para>Represents the attribte in schema: o:hrstd </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.HorizontalNoShade"> <summary> <para> Horizontal Rule 3D Shading Toggle.</para> <para>Represents the attribte in schema: o:hrnoshade </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.HorizontalPercentage"> <summary> <para> Horizontal Rule Length Percentage.</para> <para>Represents the attribte in schema: o:hrpct </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.HorizontalAlignment"> <summary> <para> Horizontal Rule Alignment.</para> <para>Represents the attribte in schema: o:hralign </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.AllowInCell"> <summary> <para> Allow in Table Cell.</para> <para>Represents the attribte in schema: o:allowincell </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.AllowOverlap"> <summary> <para> Allow Shape Overlap.</para> <para>Represents the attribte in schema: o:allowoverlap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.UserDrawn"> <summary> <para> Exists In Master Slide.</para> <para>Represents the attribte in schema: o:userdrawn </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.BorderTopColor"> <summary> <para> Border Top Color.</para> <para>Represents the attribte in schema: o:bordertopcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.BorderLeftColor"> <summary> <para> Border Left Color.</para> <para>Represents the attribte in schema: o:borderleftcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.BorderBottomColor"> <summary> <para> Bottom Border Color.</para> <para>Represents the attribte in schema: o:borderbottomcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.BorderRightColor"> <summary> <para> Border Right Color.</para> <para>Represents the attribte in schema: o:borderrightcolor </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.DiagramLayout"> <summary> <para> Diagram Node Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayout </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.DiagramNodeKind"> <summary> <para> Diagram Node Identifier.</para> <para>Represents the attribte in schema: o:dgmnodekind </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.DiagramLayoutMostRecentUsed"> <summary> <para> Diagram Node Recent Layout Identifier.</para> <para>Represents the attribte in schema: o:dgmlayoutmru </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.InsetMode"> <summary> <para> Text Inset Mode.</para> <para>Represents the attribte in schema: o:insetmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Filled"> <summary> <para> Shape Fill Toggle.</para> <para>Represents the attribte in schema: filled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.FillColor"> <summary> <para> Fill Color.</para> <para>Represents the attribte in schema: fillcolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Stroked"> <summary> <para> Shape Stroke Toggle.</para> <para>Represents the attribte in schema: stroked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.StrokeColor"> <summary> <para> Shape Stroke Color.</para> <para>Represents the attribte in schema: strokecolor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.StrokeWeight"> <summary> <para> Shape Stroke Weight.</para> <para>Represents the attribte in schema: strokeweight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.InsetPen"> <summary> <para> Inset Border From Path.</para> <para>Represents the attribte in schema: insetpen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.OptionalNumber"> <summary> <para> Optional Number.</para> <para>Represents the attribte in schema: o:spt </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.ConnectorType"> <summary> <para> Shape Connector Type.</para> <para>Represents the attribte in schema: o:connectortype </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.BlackWhiteMode"> <summary> <para> Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwmode </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.PureBlackWhiteMode"> <summary> <para> Pure Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwpure </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.NormalBlackWhiteMode"> <summary> <para> Normal Black-and-White Mode.</para> <para>Represents the attribte in schema: o:bwnormal </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.ForceDash"> <summary> <para> Force Dashed Outline.</para> <para>Represents the attribte in schema: o:forcedash </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.OleIcon"> <summary> <para> Embedded Object Icon Toggle.</para> <para>Represents the attribte in schema: o:oleicon </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Ole"> <summary> <para> Embedded Object Toggle.</para> <para>Represents the attribte in schema: o:ole </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.PreferRelative"> <summary> <para> Relative Resize Toggle.</para> <para>Represents the attribte in schema: o:preferrelative </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.ClipToWrap"> <summary> <para> Clip to Wrapping Polygon.</para> <para>Represents the attribte in schema: o:cliptowrap </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.Clip"> <summary> <para> Clipping Toggle.</para> <para>Represents the attribte in schema: o:clip </para> </summary> <remark> xmlns:o=urn:schemas-microsoft-com:office:office </remark> </member> <member name="P:DocumentFormat.OpenXml.Vml.RoundRectangle.ArcSize"> <summary> <para> Rounded Corner Arc Size.</para> <para>Represents the attribte in schema: arcsize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.ShapeHandle"> <summary> <para>Shape Handle.</para> <para>When the object is serialized out as xml, its qualified name is v:h.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandle.#ctor"> <summary> Initializes a new instance of the ShapeHandle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.ShapeHandle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.Position"> <summary> <para> Handle Position.</para> <para>Represents the attribte in schema: position </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.Polar"> <summary> <para> Handle Polar Center.</para> <para>Represents the attribte in schema: polar </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.Map"> <summary> <para> Handle Coordinate Mapping.</para> <para>Represents the attribte in schema: map </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.InvertX"> <summary> <para> Invert Handle's X Position.</para> <para>Represents the attribte in schema: invx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.InvertY"> <summary> <para> Invert Handle's Y Position.</para> <para>Represents the attribte in schema: invy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.Switch"> <summary> <para> Handle Inversion Toggle.</para> <para>Represents the attribte in schema: switch </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.XRange"> <summary> <para> Handle X Position Range.</para> <para>Represents the attribte in schema: xrange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.YRange"> <summary> <para> Handle Y Position Range.</para> <para>Represents the attribte in schema: yrange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.ShapeHandle.RadiusRange"> <summary> <para> Handle Polar Radius Range.</para> <para>Represents the attribte in schema: radiusrange </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.Formula"> <summary> <para>Single Formula.</para> <para>When the object is serialized out as xml, its qualified name is v:f.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formula.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formula.#ctor"> <summary> Initializes a new instance of the Formula class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Vml.Formula.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Vml.Formula.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Formula.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Vml.Formula.Equation"> <summary> <para> Equation.</para> <para>Represents the attribte in schema: eqn </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.ExtensionHandlingBehaviorValues"> <summary> VML Extension Handling Behaviors </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ExtensionHandlingBehaviorValues.View"> <summary> Not renderable. <para>When the item is serialized out as xml, its value is "view".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ExtensionHandlingBehaviorValues.Edit"> <summary> Editable. <para>When the item is serialized out as xml, its value is "edit".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ExtensionHandlingBehaviorValues.BackwardCompatible"> <summary> Renderable. <para>When the item is serialized out as xml, its value is "backwardCompatible".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.FillTypeValues"> <summary> Shape Fill Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillTypeValues.Solid"> <summary> Solid Fill. <para>When the item is serialized out as xml, its value is "solid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillTypeValues.Gradient"> <summary> Linear Gradient. <para>When the item is serialized out as xml, its value is "gradient".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillTypeValues.GradientRadial"> <summary> Radial Gradient. <para>When the item is serialized out as xml, its value is "gradientRadial".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillTypeValues.Tile"> <summary> Tiled Image. <para>When the item is serialized out as xml, its value is "tile".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillTypeValues.Pattern"> <summary> Image Pattern. <para>When the item is serialized out as xml, its value is "pattern".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillTypeValues.Frame"> <summary> Stretch Image to Fit. <para>When the item is serialized out as xml, its value is "frame".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.FillMethodValues"> <summary> Gradient Fill Computation Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillMethodValues.None"> <summary> No Gradient Fill. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillMethodValues.Linear"> <summary> Linear Fill. <para>When the item is serialized out as xml, its value is "linear".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillMethodValues.Sigma"> <summary> Sigma Fill. <para>When the item is serialized out as xml, its value is "sigma".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillMethodValues.Any"> <summary> Application Default Fill. <para>When the item is serialized out as xml, its value is "any".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.FillMethodValues.Linearsigma"> <summary> Linear Sigma Fill. <para>When the item is serialized out as xml, its value is "linear sigma".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.StrokeLineStyleValues"> <summary> Stroke Line Style </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeLineStyleValues.Single"> <summary> Single Line. <para>When the item is serialized out as xml, its value is "single".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeLineStyleValues.ThinThin"> <summary> Two Thin Lines. <para>When the item is serialized out as xml, its value is "thinThin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeLineStyleValues.ThinThick"> <summary> Thin Line Outside Thick Line. <para>When the item is serialized out as xml, its value is "thinThick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeLineStyleValues.ThickThin"> <summary> Thick Line Outside Thin Line. <para>When the item is serialized out as xml, its value is "thickThin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeLineStyleValues.ThickBetweenThin"> <summary> Thck Line Between Thin Lines. <para>When the item is serialized out as xml, its value is "thickBetweenThin".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.StrokeJoinStyleValues"> <summary> Line Join Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeJoinStyleValues.Round"> <summary> Round Joint. <para>When the item is serialized out as xml, its value is "round".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeJoinStyleValues.Bevel"> <summary> Bevel Joint. <para>When the item is serialized out as xml, its value is "bevel".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeJoinStyleValues.Miter"> <summary> Miter Joint. <para>When the item is serialized out as xml, its value is "miter".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.StrokeEndCapValues"> <summary> Stroke End Cap Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeEndCapValues.Flat"> <summary> Flat End. <para>When the item is serialized out as xml, its value is "flat".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeEndCapValues.Square"> <summary> Square End. <para>When the item is serialized out as xml, its value is "square".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeEndCapValues.Round"> <summary> Round End. <para>When the item is serialized out as xml, its value is "round".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.StrokeArrowLengthValues"> <summary> Stroke Arrowhead Length </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowLengthValues.Short"> <summary> Short Arrowhead. <para>When the item is serialized out as xml, its value is "short".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowLengthValues.Medium"> <summary> Medium Arrowhead. <para>When the item is serialized out as xml, its value is "medium".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowLengthValues.Long"> <summary> Long Arrowhead. <para>When the item is serialized out as xml, its value is "long".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.StrokeArrowWidthValues"> <summary> Stroke Arrowhead Width </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowWidthValues.Narrow"> <summary> Narrow Arrowhead. <para>When the item is serialized out as xml, its value is "narrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowWidthValues.Medium"> <summary> Medium Arrowhead. <para>When the item is serialized out as xml, its value is "medium".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowWidthValues.Wide"> <summary> Wide Arrowhead. <para>When the item is serialized out as xml, its value is "wide".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.StrokeArrowValues"> <summary> Stroke Arrowhead Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowValues.None"> <summary> No Arrowhead. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowValues.Block"> <summary> Block Arrowhead. <para>When the item is serialized out as xml, its value is "block".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowValues.Classic"> <summary> Classic Arrowhead. <para>When the item is serialized out as xml, its value is "classic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowValues.Oval"> <summary> Oval Arrowhead. <para>When the item is serialized out as xml, its value is "oval".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowValues.Diamond"> <summary> Diamond Arrowhead. <para>When the item is serialized out as xml, its value is "diamond".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeArrowValues.Open"> <summary> Open Arrowhead. <para>When the item is serialized out as xml, its value is "open".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.ImageAspectValues"> <summary> Image Scaling Behavior </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ImageAspectValues.Ignore"> <summary> Ignore Aspect Ratio. <para>When the item is serialized out as xml, its value is "ignore".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ImageAspectValues.AtMost"> <summary> At Most. <para>When the item is serialized out as xml, its value is "atMost".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ImageAspectValues.AtLeast"> <summary> At Least. <para>When the item is serialized out as xml, its value is "atLeast".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.EditAsValues"> <summary> Shape Grouping Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.EditAsValues.Canvas"> <summary> Shape Canvas. <para>When the item is serialized out as xml, its value is "canvas".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.EditAsValues.OrganizationChart"> <summary> Organization Chart Diagram. <para>When the item is serialized out as xml, its value is "orgchart".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.EditAsValues.Radial"> <summary> Radial Diagram. <para>When the item is serialized out as xml, its value is "radial".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.EditAsValues.Cycle"> <summary> Cycle Diagram. <para>When the item is serialized out as xml, its value is "cycle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.EditAsValues.Stacked"> <summary> Pyramid Diagram. <para>When the item is serialized out as xml, its value is "stacked".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.EditAsValues.Venn"> <summary> Venn Diagram. <para>When the item is serialized out as xml, its value is "venn".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.EditAsValues.Bullseye"> <summary> Bullseye Diagram. <para>When the item is serialized out as xml, its value is "bullseye".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.ShadowValues"> <summary> Shadow Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ShadowValues.Single"> <summary> Single Shadow. <para>When the item is serialized out as xml, its value is "single".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ShadowValues.Double"> <summary> Double Shadow. <para>When the item is serialized out as xml, its value is "double".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ShadowValues.Emboss"> <summary> Embossed Shadow. <para>When the item is serialized out as xml, its value is "emboss".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ShadowValues.Perspective"> <summary> Perspective Shadow. <para>When the item is serialized out as xml, its value is "perspective".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ShadowValues.ShapeRelative"> <summary> shapeRelative. <para>When the item is serialized out as xml, its value is "shapeRelative".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.ShadowValues.DrawingRelative"> <summary> drawingRelative. <para>When the item is serialized out as xml, its value is "drawingRelative".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Vml.StrokeFillTypeValues"> <summary> Defines the StrokeFillTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeFillTypeValues.Solid"> <summary> solid. <para>When the item is serialized out as xml, its value is "solid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeFillTypeValues.Tile"> <summary> tile. <para>When the item is serialized out as xml, its value is "tile".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeFillTypeValues.Pattern"> <summary> pattern. <para>When the item is serialized out as xml, its value is "pattern".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Vml.StrokeFillTypeValues.Frame"> <summary> frame. <para>When the item is serialized out as xml, its value is "frame".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Ink.ContextNode"> <summary> <para>Defines the ContextNode Class.</para> <para>When the object is serialized out as xml, its qualified name is msink:context.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ContextNodeProperty <msink:property></description></item> <item><description>SourceLink <msink:sourceLink></description></item> <item><description>DestinationLink <msink:destinationLink></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.#ctor"> <summary> Initializes a new instance of the ContextNode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContextNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContextNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.#ctor(System.String)"> <summary> Initializes a new instance of the ContextNode class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.RotatedBoundingBox"> <summary> <para> rotatedBoundingBox.</para> <para>Represents the attribte in schema: rotatedBoundingBox </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.AlignmentLevel"> <summary> <para> alignmentLevel.</para> <para>Represents the attribte in schema: alignmentLevel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.ContentType"> <summary> <para> contentType.</para> <para>Represents the attribte in schema: contentType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.Ascender"> <summary> <para> ascender.</para> <para>Represents the attribte in schema: ascender </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.Descender"> <summary> <para> descender.</para> <para>Represents the attribte in schema: descender </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.Baseline"> <summary> <para> baseline.</para> <para>Represents the attribte in schema: baseline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.Midline"> <summary> <para> midline.</para> <para>Represents the attribte in schema: midline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.CustomRecognizerId"> <summary> <para> customRecognizerId.</para> <para>Represents the attribte in schema: customRecognizerId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.MathML"> <summary> <para> mathML.</para> <para>Represents the attribte in schema: mathML </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.MathStruct"> <summary> <para> mathStruct.</para> <para>Represents the attribte in schema: mathStruct </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.MathSymbol"> <summary> <para> mathSymbol.</para> <para>Represents the attribte in schema: mathSymbol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.BeginModifierType"> <summary> <para> beginModifierType.</para> <para>Represents the attribte in schema: beginModifierType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.EndModifierType"> <summary> <para> endModifierType.</para> <para>Represents the attribte in schema: endModifierType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.RotationAngle"> <summary> <para> rotationAngle.</para> <para>Represents the attribte in schema: rotationAngle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.HotPoints"> <summary> <para> hotPoints.</para> <para>Represents the attribte in schema: hotPoints </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.Centroid"> <summary> <para> centroid.</para> <para>Represents the attribte in schema: centroid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.SemanticType"> <summary> <para> semanticType.</para> <para>Represents the attribte in schema: semanticType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.ShapeName"> <summary> <para> shapeName.</para> <para>Represents the attribte in schema: shapeName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNode.ShapeGeometry"> <summary> <para> shapeGeometry.</para> <para>Represents the attribte in schema: shapeGeometry </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Ink.ContextNodeProperty"> <summary> <para>Defines the ContextNodeProperty Class.</para> <para>When the object is serialized out as xml, its qualified name is msink:property.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNodeProperty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNodeProperty.#ctor"> <summary> Initializes a new instance of the ContextNodeProperty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNodeProperty.#ctor(System.String)"> <summary> Initializes a new instance of the ContextNodeProperty class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextNodeProperty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNodeProperty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNodeProperty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextNodeProperty.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Ink.SourceLink"> <summary> <para>Defines the SourceLink Class.</para> <para>When the object is serialized out as xml, its qualified name is msink:sourceLink.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Ink.ContextLinkType"> <summary> Defines the ContextLinkType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.ContextLinkType.#ctor"> <summary> Initializes a new instance of the ContextLinkType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextLinkType.Direction"> <summary> <para> direction.</para> <para>Represents the attribte in schema: direction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.ContextLinkType.Reference"> <summary> <para> ref.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.SourceLink.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.SourceLink.#ctor"> <summary> Initializes a new instance of the SourceLink class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.SourceLink.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.SourceLink.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.SourceLink.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Ink.DestinationLink"> <summary> <para>Defines the DestinationLink Class.</para> <para>When the object is serialized out as xml, its qualified name is msink:destinationLink.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.DestinationLink.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.DestinationLink.#ctor"> <summary> Initializes a new instance of the DestinationLink class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Ink.DestinationLink.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.DestinationLink.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Ink.DestinationLink.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues"> <summary> Defines the KnownContextNodeTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.Root"> <summary> root. <para>When the item is serialized out as xml, its value is "root".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.UnclassifiedInk"> <summary> unclassifiedInk. <para>When the item is serialized out as xml, its value is "unclassifiedInk".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.WritingRegion"> <summary> writingRegion. <para>When the item is serialized out as xml, its value is "writingRegion".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.AnalysisHint"> <summary> analysisHint. <para>When the item is serialized out as xml, its value is "analysisHint".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.Object"> <summary> object. <para>When the item is serialized out as xml, its value is "object".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.InkDrawing"> <summary> inkDrawing. <para>When the item is serialized out as xml, its value is "inkDrawing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.Image"> <summary> image. <para>When the item is serialized out as xml, its value is "image".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.Paragraph"> <summary> paragraph. <para>When the item is serialized out as xml, its value is "paragraph".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.Line"> <summary> line. <para>When the item is serialized out as xml, its value is "line".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.InkBullet"> <summary> inkBullet. <para>When the item is serialized out as xml, its value is "inkBullet".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.InkWord"> <summary> inkWord. <para>When the item is serialized out as xml, its value is "inkWord".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.TextWord"> <summary> textWord. <para>When the item is serialized out as xml, its value is "textWord".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.CustomRecognizer"> <summary> customRecognizer. <para>When the item is serialized out as xml, its value is "customRecognizer".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.MathRegion"> <summary> mathRegion. <para>When the item is serialized out as xml, its value is "mathRegion".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.MathEquation"> <summary> mathEquation. <para>When the item is serialized out as xml, its value is "mathEquation".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.MathStruct"> <summary> mathStruct. <para>When the item is serialized out as xml, its value is "mathStruct".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.MathSymbol"> <summary> mathSymbol. <para>When the item is serialized out as xml, its value is "mathSymbol".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.MathIdentifier"> <summary> mathIdentifier. <para>When the item is serialized out as xml, its value is "mathIdentifier".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.MathOperator"> <summary> mathOperator. <para>When the item is serialized out as xml, its value is "mathOperator".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.MathNumber"> <summary> mathNumber. <para>When the item is serialized out as xml, its value is "mathNumber".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.NonInkDrawing"> <summary> nonInkDrawing. <para>When the item is serialized out as xml, its value is "nonInkDrawing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.GroupNode"> <summary> groupNode. <para>When the item is serialized out as xml, its value is "groupNode".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownContextNodeTypeValues.MixedDrawing"> <summary> mixedDrawing. <para>When the item is serialized out as xml, its value is "mixedDrawing".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Ink.LinkDirectionValues"> <summary> Defines the LinkDirectionValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.LinkDirectionValues.To"> <summary> to. <para>When the item is serialized out as xml, its value is "to".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.LinkDirectionValues.From"> <summary> from. <para>When the item is serialized out as xml, its value is "from".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.LinkDirectionValues.With"> <summary> with. <para>When the item is serialized out as xml, its value is "with".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues"> <summary> Defines the KnownSemanticTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.None"> <summary> none. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.Underline"> <summary> underline. <para>When the item is serialized out as xml, its value is "underline".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.Strikethrough"> <summary> strikethrough. <para>When the item is serialized out as xml, its value is "strikethrough".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.Highlight"> <summary> highlight. <para>When the item is serialized out as xml, its value is "highlight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.ScratchOut"> <summary> scratchOut. <para>When the item is serialized out as xml, its value is "scratchOut".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.VerticalRange"> <summary> verticalRange. <para>When the item is serialized out as xml, its value is "verticalRange".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.Callout"> <summary> callout. <para>When the item is serialized out as xml, its value is "callout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.Enclosure"> <summary> enclosure. <para>When the item is serialized out as xml, its value is "enclosure".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.Comment"> <summary> comment. <para>When the item is serialized out as xml, its value is "comment".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.Container"> <summary> container. <para>When the item is serialized out as xml, its value is "container".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Ink.KnownSemanticTypeValues.Connector"> <summary> connector. <para>When the item is serialized out as xml, its value is "connector".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone"> <summary> <para>Defines the UnsizedControlClone Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:control.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.#ctor"> <summary> Initializes a new instance of the UnsizedControlClone class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedControlClone.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton"> <summary> <para>Defines the UnsizedButton Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.#ctor"> <summary> Initializes a new instance of the UnsizedButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedButton.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.CheckBox"> <summary> <para>Defines the CheckBox Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:checkBox.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.#ctor"> <summary> Initializes a new instance of the CheckBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CheckBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery"> <summary> <para>Defines the UnsizedGallery Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:gallery.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Item <mso:item></description></item> <item><description>UnsizedButton <mso:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.#ctor"> <summary> Initializes a new instance of the UnsizedGallery class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the UnsizedGallery class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the UnsizedGallery class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.#ctor(System.String)"> <summary> Initializes a new instance of the UnsizedGallery class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Columns"> <summary> <para> columns.</para> <para>Represents the attribte in schema: columns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Rows"> <summary> <para> rows.</para> <para>Represents the attribte in schema: rows </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.ItemWidth"> <summary> <para> itemWidth.</para> <para>Represents the attribte in schema: itemWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.ItemHeight"> <summary> <para> itemHeight.</para> <para>Represents the attribte in schema: itemHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetItemWidth"> <summary> <para> getItemWidth.</para> <para>Represents the attribte in schema: getItemWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetItemHeight"> <summary> <para> getItemHeight.</para> <para>Represents the attribte in schema: getItemHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.ShowItemLabel"> <summary> <para> showItemLabel.</para> <para>Represents the attribte in schema: showItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.ShowItemImage"> <summary> <para> showItemImage.</para> <para>Represents the attribte in schema: showItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetItemScreentip"> <summary> <para> getItemScreentip.</para> <para>Represents the attribte in schema: getItemScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetItemSupertip"> <summary> <para> getItemSupertip.</para> <para>Represents the attribte in schema: getItemSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetItemImage"> <summary> <para> getItemImage.</para> <para>Represents the attribte in schema: getItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetSelectedItemID"> <summary> <para> getSelectedItemID.</para> <para>Represents the attribte in schema: getSelectedItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetSelectedItemIndex"> <summary> <para> getSelectedItemIndex.</para> <para>Represents the attribte in schema: getSelectedItemIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedGallery.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton"> <summary> <para>Defines the UnsizedToggleButton Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:toggleButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.#ctor"> <summary> Initializes a new instance of the UnsizedToggleButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedToggleButton.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator"> <summary> <para>Defines the MenuSeparator Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:menuSeparator.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.#ctor"> <summary> Initializes a new instance of the MenuSeparator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuSeparator.GetTitle"> <summary> <para> getTitle.</para> <para>Represents the attribte in schema: getTitle </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton"> <summary> <para>Defines the UnsizedSplitButton Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:splitButton.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VisibleButton <mso:button></description></item> <item><description>VisibleToggleButton <mso:toggleButton></description></item> <item><description>UnsizedMenu <mso:menu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.#ctor"> <summary> Initializes a new instance of the UnsizedSplitButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the UnsizedSplitButton class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the UnsizedSplitButton class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.#ctor(System.String)"> <summary> Initializes a new instance of the UnsizedSplitButton class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedSplitButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu"> <summary> <para>Defines the UnsizedMenu Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>UnsizedControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>CheckBox <mso:checkBox></description></item> <item><description>UnsizedGallery <mso:gallery></description></item> <item><description>UnsizedToggleButton <mso:toggleButton></description></item> <item><description>MenuSeparator <mso:menuSeparator></description></item> <item><description>UnsizedSplitButton <mso:splitButton></description></item> <item><description>UnsizedMenu <mso:menu></description></item> <item><description>UnsizedDynamicMenu <mso:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.#ctor"> <summary> Initializes a new instance of the UnsizedMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the UnsizedMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the UnsizedMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.#ctor(System.String)"> <summary> Initializes a new instance of the UnsizedMenu class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedMenu.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu"> <summary> <para>Defines the UnsizedDynamicMenu Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:dynamicMenu.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.#ctor"> <summary> Initializes a new instance of the UnsizedDynamicMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetContent"> <summary> <para> getContent.</para> <para>Represents the attribte in schema: getContent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.UnsizedDynamicMenu.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle"> <summary> <para>Defines the SplitButtonWithTitle Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:splitButton.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VisibleButton <mso:button></description></item> <item><description>VisibleToggleButton <mso:toggleButton></description></item> <item><description>MenuWithTitle <mso:menu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.#ctor"> <summary> Initializes a new instance of the SplitButtonWithTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SplitButtonWithTitle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SplitButtonWithTitle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.#ctor(System.String)"> <summary> Initializes a new instance of the SplitButtonWithTitle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButtonWithTitle.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle"> <summary> <para>Defines the MenuWithTitle Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>UnsizedControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>CheckBox <mso:checkBox></description></item> <item><description>UnsizedGallery <mso:gallery></description></item> <item><description>UnsizedToggleButton <mso:toggleButton></description></item> <item><description>MenuSeparator <mso:menuSeparator></description></item> <item><description>SplitButtonWithTitle <mso:splitButton></description></item> <item><description>MenuWithTitle <mso:menu></description></item> <item><description>UnsizedDynamicMenu <mso:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.#ctor"> <summary> Initializes a new instance of the MenuWithTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MenuWithTitle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MenuWithTitle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.#ctor(System.String)"> <summary> Initializes a new instance of the MenuWithTitle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetTitle"> <summary> <para> getTitle.</para> <para>Represents the attribte in schema: getTitle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuWithTitle.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.ControlClone"> <summary> <para>Defines the ControlClone Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:control.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.#ctor"> <summary> Initializes a new instance of the ControlClone class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ControlClone.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.TextLabel"> <summary> <para>Defines the TextLabel Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:labelControl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.#ctor"> <summary> Initializes a new instance of the TextLabel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.TextLabel.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Button"> <summary> <para>Defines the Button Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Button.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Button.#ctor"> <summary> Initializes a new instance of the Button class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Button.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Button.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton"> <summary> <para>Defines the ToggleButton Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:toggleButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.#ctor"> <summary> Initializes a new instance of the ToggleButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ToggleButton.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.EditBox"> <summary> <para>Defines the EditBox Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:editBox.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.EditBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.EditBox.#ctor"> <summary> Initializes a new instance of the EditBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.EditBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.MaxLength"> <summary> <para> maxLength.</para> <para>Represents the attribte in schema: maxLength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetText"> <summary> <para> getText.</para> <para>Represents the attribte in schema: getText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.OnChange"> <summary> <para> onChange.</para> <para>Represents the attribte in schema: onChange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.EditBox.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.ComboBox"> <summary> <para>Defines the ComboBox Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:comboBox.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Item <mso:item></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.#ctor"> <summary> Initializes a new instance of the ComboBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ComboBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ComboBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.#ctor(System.String)"> <summary> Initializes a new instance of the ComboBox class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.ShowItemImage"> <summary> <para> showItemImage.</para> <para>Represents the attribte in schema: showItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetItemScreentip"> <summary> <para> getItemScreentip.</para> <para>Represents the attribte in schema: getItemScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetItemSupertip"> <summary> <para> getItemSupertip.</para> <para>Represents the attribte in schema: getItemSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetItemImage"> <summary> <para> getItemImage.</para> <para>Represents the attribte in schema: getItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.MaxLength"> <summary> <para> maxLength.</para> <para>Represents the attribte in schema: maxLength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetText"> <summary> <para> getText.</para> <para>Represents the attribte in schema: getText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.OnChange"> <summary> <para> onChange.</para> <para>Represents the attribte in schema: onChange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ComboBox.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.DropDown"> <summary> <para>Defines the DropDown Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:dropDown.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Item <mso:item></description></item> <item><description>UnsizedButton <mso:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DropDown.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DropDown.#ctor"> <summary> Initializes a new instance of the DropDown class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DropDown.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DropDown class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DropDown.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DropDown class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DropDown.#ctor(System.String)"> <summary> Initializes a new instance of the DropDown class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DropDown.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.ShowItemImage"> <summary> <para> showItemImage.</para> <para>Represents the attribte in schema: showItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetItemScreentip"> <summary> <para> getItemScreentip.</para> <para>Represents the attribte in schema: getItemScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetItemSupertip"> <summary> <para> getItemSupertip.</para> <para>Represents the attribte in schema: getItemSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetItemImage"> <summary> <para> getItemImage.</para> <para>Represents the attribte in schema: getItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetSelectedItemID"> <summary> <para> getSelectedItemID.</para> <para>Represents the attribte in schema: getSelectedItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetSelectedItemIndex"> <summary> <para> getSelectedItemIndex.</para> <para>Represents the attribte in schema: getSelectedItemIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.ShowItemLabel"> <summary> <para> showItemLabel.</para> <para>Represents the attribte in schema: showItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DropDown.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Gallery"> <summary> <para>Defines the Gallery Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:gallery.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Item <mso:item></description></item> <item><description>UnsizedButton <mso:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Gallery.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Gallery.#ctor"> <summary> Initializes a new instance of the Gallery class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Gallery.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Gallery class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Gallery.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Gallery class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Gallery.#ctor(System.String)"> <summary> Initializes a new instance of the Gallery class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Gallery.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Columns"> <summary> <para> columns.</para> <para>Represents the attribte in schema: columns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Rows"> <summary> <para> rows.</para> <para>Represents the attribte in schema: rows </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.ItemWidth"> <summary> <para> itemWidth.</para> <para>Represents the attribte in schema: itemWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.ItemHeight"> <summary> <para> itemHeight.</para> <para>Represents the attribte in schema: itemHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetItemWidth"> <summary> <para> getItemWidth.</para> <para>Represents the attribte in schema: getItemWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetItemHeight"> <summary> <para> getItemHeight.</para> <para>Represents the attribte in schema: getItemHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.ShowItemLabel"> <summary> <para> showItemLabel.</para> <para>Represents the attribte in schema: showItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.ShowItemImage"> <summary> <para> showItemImage.</para> <para>Represents the attribte in schema: showItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetItemScreentip"> <summary> <para> getItemScreentip.</para> <para>Represents the attribte in schema: getItemScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetItemSupertip"> <summary> <para> getItemSupertip.</para> <para>Represents the attribte in schema: getItemSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetItemImage"> <summary> <para> getItemImage.</para> <para>Represents the attribte in schema: getItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetSelectedItemID"> <summary> <para> getSelectedItemID.</para> <para>Represents the attribte in schema: getSelectedItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetSelectedItemIndex"> <summary> <para> getSelectedItemIndex.</para> <para>Represents the attribte in schema: getSelectedItemIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Gallery.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Menu"> <summary> <para>Defines the Menu Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>UnsizedControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>CheckBox <mso:checkBox></description></item> <item><description>UnsizedGallery <mso:gallery></description></item> <item><description>UnsizedToggleButton <mso:toggleButton></description></item> <item><description>MenuSeparator <mso:menuSeparator></description></item> <item><description>UnsizedSplitButton <mso:splitButton></description></item> <item><description>UnsizedMenu <mso:menu></description></item> <item><description>UnsizedDynamicMenu <mso:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Menu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Menu.#ctor"> <summary> Initializes a new instance of the Menu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Menu.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Menu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Menu.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Menu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Menu.#ctor(System.String)"> <summary> Initializes a new instance of the Menu class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Menu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Menu.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu"> <summary> <para>Defines the DynamicMenu Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:dynamicMenu.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.#ctor"> <summary> Initializes a new instance of the DynamicMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetContent"> <summary> <para> getContent.</para> <para>Represents the attribte in schema: getContent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DynamicMenu.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.SplitButton"> <summary> <para>Defines the SplitButton Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:splitButton.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VisibleButton <mso:button></description></item> <item><description>VisibleToggleButton <mso:toggleButton></description></item> <item><description>UnsizedMenu <mso:menu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.#ctor"> <summary> Initializes a new instance of the SplitButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SplitButton class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SplitButton class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.#ctor(System.String)"> <summary> Initializes a new instance of the SplitButton class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SplitButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Box"> <summary> <para>Defines the Box Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:box.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlClone <mso:control></description></item> <item><description>TextLabel <mso:labelControl></description></item> <item><description>Button <mso:button></description></item> <item><description>ToggleButton <mso:toggleButton></description></item> <item><description>CheckBox <mso:checkBox></description></item> <item><description>EditBox <mso:editBox></description></item> <item><description>ComboBox <mso:comboBox></description></item> <item><description>DropDown <mso:dropDown></description></item> <item><description>Gallery <mso:gallery></description></item> <item><description>Menu <mso:menu></description></item> <item><description>DynamicMenu <mso:dynamicMenu></description></item> <item><description>SplitButton <mso:splitButton></description></item> <item><description>Box <mso:box></description></item> <item><description>ButtonGroup <mso:buttonGroup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Box.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Box.#ctor"> <summary> Initializes a new instance of the Box class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Box.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Box class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Box.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Box class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Box.#ctor(System.String)"> <summary> Initializes a new instance of the Box class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Box.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Box.BoxStyle"> <summary> <para> boxStyle.</para> <para>Represents the attribte in schema: boxStyle </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup"> <summary> <para>Defines the ButtonGroup Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:buttonGroup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>UnsizedControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>UnsizedToggleButton <mso:toggleButton></description></item> <item><description>UnsizedGallery <mso:gallery></description></item> <item><description>UnsizedMenu <mso:menu></description></item> <item><description>UnsizedDynamicMenu <mso:dynamicMenu></description></item> <item><description>UnsizedSplitButton <mso:splitButton></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.#ctor"> <summary> Initializes a new instance of the ButtonGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ButtonGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ButtonGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.#ctor(System.String)"> <summary> Initializes a new instance of the ButtonGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ButtonGroup.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot"> <summary> <para>Defines the MenuRoot Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>UnsizedControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>CheckBox <mso:checkBox></description></item> <item><description>UnsizedGallery <mso:gallery></description></item> <item><description>UnsizedToggleButton <mso:toggleButton></description></item> <item><description>MenuSeparator <mso:menuSeparator></description></item> <item><description>UnsizedSplitButton <mso:splitButton></description></item> <item><description>UnsizedMenu <mso:menu></description></item> <item><description>UnsizedDynamicMenu <mso:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.#ctor"> <summary> Initializes a new instance of the MenuRoot class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MenuRoot class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MenuRoot class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.#ctor(System.String)"> <summary> Initializes a new instance of the MenuRoot class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.GetTitle"> <summary> <para> getTitle.</para> <para>Represents the attribte in schema: getTitle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.MenuRoot.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.CustomUI"> <summary> <para>Defines the CustomUI Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:customUI.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RepurposedCommands <mso:commands></description></item> <item><description>Ribbon <mso:ribbon></description></item> </list> </remarks> <summary> Defines CustomUI. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.#ctor"> <summary> Initializes a new instance of the CustomUI class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomUI class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomUI class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.#ctor(System.String)"> <summary> Initializes a new instance of the CustomUI class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.#ctor(DocumentFormat.OpenXml.Packaging.CustomUIPart)"> <summary> CustomUI constructor. </summary> <param name="ownerPart">The owner part of the CustomUI.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.Load(DocumentFormat.OpenXml.Packaging.CustomUIPart)"> <summary> Loads the DOM from an OpenXML part. </summary> <param name="openXmlPart">The part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.Save(DocumentFormat.OpenXml.Packaging.CustomUIPart)"> <summary> Saves the DOM into the OpenXML part. </summary> <param name="openXmlPart">The part to be saved to.</param> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.OnLoad"> <summary> <para> onLoad.</para> <para>Represents the attribte in schema: onLoad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.LoadImage"> <summary> <para> loadImage.</para> <para>Represents the attribte in schema: loadImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.RepurposedCommands"> <summary> <para> RepurposedCommands.</para> <para>Represents the element tag in schema: mso:commands </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.Ribbon"> <summary> <para> Ribbon.</para> <para>Represents the element tag in schema: mso:ribbon </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.CustomUI.CustomUIPart"> <summary> Gets the CustomUIPart associated with this element, it could either be a QuickAccessToolbarCustomizationsPart or a RibbonExtensibilityPart. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Item"> <summary> <para>Defines the Item Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:item.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Item.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Item.#ctor"> <summary> Initializes a new instance of the Item class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Item.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Item.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Item.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Item.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Item.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Item.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Item.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Item.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Item.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton"> <summary> <para>Defines the VisibleButton Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.#ctor"> <summary> Initializes a new instance of the VisibleButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleButton.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton"> <summary> <para>Defines the VisibleToggleButton Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:toggleButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.#ctor"> <summary> Initializes a new instance of the VisibleToggleButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VisibleToggleButton.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator"> <summary> <para>Defines the VerticalSeparator Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:separator.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.#ctor"> <summary> Initializes a new instance of the VerticalSeparator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.VerticalSeparator.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher"> <summary> <para>Defines the DialogBoxLauncher Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:dialogBoxLauncher.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>UnsizedButton <mso:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.#ctor"> <summary> Initializes a new instance of the DialogBoxLauncher class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DialogBoxLauncher class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DialogBoxLauncher class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.#ctor(System.String)"> <summary> Initializes a new instance of the DialogBoxLauncher class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DialogBoxLauncher.UnsizedButton"> <summary> <para> UnsizedButton.</para> <para>Represents the element tag in schema: mso:button </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Group"> <summary> <para>Defines the Group Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:group.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlClone <mso:control></description></item> <item><description>TextLabel <mso:labelControl></description></item> <item><description>Button <mso:button></description></item> <item><description>ToggleButton <mso:toggleButton></description></item> <item><description>CheckBox <mso:checkBox></description></item> <item><description>EditBox <mso:editBox></description></item> <item><description>ComboBox <mso:comboBox></description></item> <item><description>DropDown <mso:dropDown></description></item> <item><description>Gallery <mso:gallery></description></item> <item><description>Menu <mso:menu></description></item> <item><description>DynamicMenu <mso:dynamicMenu></description></item> <item><description>SplitButton <mso:splitButton></description></item> <item><description>Box <mso:box></description></item> <item><description>ButtonGroup <mso:buttonGroup></description></item> <item><description>VerticalSeparator <mso:separator></description></item> <item><description>DialogBoxLauncher <mso:dialogBoxLauncher></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Group.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Group.#ctor"> <summary> Initializes a new instance of the Group class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Group.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Group class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Group.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Group class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Group.#ctor(System.String)"> <summary> Initializes a new instance of the Group class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Group.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Group.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone"> <summary> <para>Defines the QuickAccessToolbarControlClone Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:control.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.#ctor"> <summary> Initializes a new instance of the QuickAccessToolbarControlClone class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbarControlClone.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls"> <summary> <para>Defines the SharedQatControls Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:sharedControls.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>QuickAccessToolbarControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>VerticalSeparator <mso:separator></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.QatItemsType"> <summary> Defines the QatItemsType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>QuickAccessToolbarControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>VerticalSeparator <mso:separator></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QatItemsType.#ctor"> <summary> Initializes a new instance of the QatItemsType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QatItemsType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QatItemsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QatItemsType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QatItemsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QatItemsType.#ctor(System.String)"> <summary> Initializes a new instance of the QatItemsType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls.#ctor"> <summary> Initializes a new instance of the SharedQatControls class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SharedQatControls class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SharedQatControls class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls.#ctor(System.String)"> <summary> Initializes a new instance of the SharedQatControls class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.SharedQatControls.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls"> <summary> <para>Defines the DocumentSpecificQuickAccessToolbarControls Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:documentControls.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>QuickAccessToolbarControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>VerticalSeparator <mso:separator></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls.#ctor"> <summary> Initializes a new instance of the DocumentSpecificQuickAccessToolbarControls class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DocumentSpecificQuickAccessToolbarControls class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DocumentSpecificQuickAccessToolbarControls class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls.#ctor(System.String)"> <summary> Initializes a new instance of the DocumentSpecificQuickAccessToolbarControls class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.DocumentSpecificQuickAccessToolbarControls.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Tab"> <summary> <para>Defines the Tab Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:tab.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Group <mso:group></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tab.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tab.#ctor"> <summary> Initializes a new instance of the Tab class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tab.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Tab class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tab.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Tab class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tab.#ctor(System.String)"> <summary> Initializes a new instance of the Tab class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tab.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.InsertAfterQ"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.InsertBeforeQ"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tab.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet"> <summary> <para>Defines the ContextualTabSet Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:tabSet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tab <mso:tab></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.#ctor"> <summary> Initializes a new instance of the ContextualTabSet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContextualTabSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContextualTabSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.#ctor(System.String)"> <summary> Initializes a new instance of the ContextualTabSet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSet.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand"> <summary> <para>Defines the RepurposedCommand Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:command.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.#ctor"> <summary> Initializes a new instance of the RepurposedCommand class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommand.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu"> <summary> <para>Defines the OfficeMenu Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:officeMenu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>UnsizedControlClone <mso:control></description></item> <item><description>UnsizedButton <mso:button></description></item> <item><description>CheckBox <mso:checkBox></description></item> <item><description>UnsizedGallery <mso:gallery></description></item> <item><description>UnsizedToggleButton <mso:toggleButton></description></item> <item><description>MenuSeparator <mso:menuSeparator></description></item> <item><description>SplitButtonWithTitle <mso:splitButton></description></item> <item><description>MenuWithTitle <mso:menu></description></item> <item><description>UnsizedDynamicMenu <mso:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu.#ctor"> <summary> Initializes a new instance of the OfficeMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeMenu class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.OfficeMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar"> <summary> <para>Defines the QuickAccessToolbar Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:qat.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SharedQatControls <mso:sharedControls></description></item> <item><description>DocumentSpecificQuickAccessToolbarControls <mso:documentControls></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.#ctor"> <summary> Initializes a new instance of the QuickAccessToolbar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QuickAccessToolbar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QuickAccessToolbar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.#ctor(System.String)"> <summary> Initializes a new instance of the QuickAccessToolbar class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.SharedQatControls"> <summary> <para> SharedQatControls.</para> <para>Represents the element tag in schema: mso:sharedControls </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.QuickAccessToolbar.DocumentSpecificQuickAccessToolbarControls"> <summary> <para> DocumentSpecificQuickAccessToolbarControls.</para> <para>Represents the element tag in schema: mso:documentControls </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Tabs"> <summary> <para>Defines the Tabs Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:tabs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tab <mso:tab></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tabs.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tabs.#ctor"> <summary> Initializes a new instance of the Tabs class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tabs.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Tabs class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tabs.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Tabs class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tabs.#ctor(System.String)"> <summary> Initializes a new instance of the Tabs class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Tabs.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tabs.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Tabs.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets"> <summary> <para>Defines the ContextualTabSets Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:contextualTabs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ContextualTabSet <mso:tabSet></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets.#ctor"> <summary> Initializes a new instance of the ContextualTabSets class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContextualTabSets class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContextualTabSets class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets.#ctor(System.String)"> <summary> Initializes a new instance of the ContextualTabSets class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.ContextualTabSets.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands"> <summary> <para>Defines the RepurposedCommands Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:commands.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RepurposedCommand <mso:command></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands.#ctor"> <summary> Initializes a new instance of the RepurposedCommands class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RepurposedCommands class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RepurposedCommands class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands.#ctor(System.String)"> <summary> Initializes a new instance of the RepurposedCommands class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.RepurposedCommands.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.Ribbon"> <summary> <para>Defines the Ribbon Class.</para> <para>When the object is serialized out as xml, its qualified name is mso:ribbon.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OfficeMenu <mso:officeMenu></description></item> <item><description>QuickAccessToolbar <mso:qat></description></item> <item><description>Tabs <mso:tabs></description></item> <item><description>ContextualTabSets <mso:contextualTabs></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.#ctor"> <summary> Initializes a new instance of the Ribbon class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Ribbon class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Ribbon class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.#ctor(System.String)"> <summary> Initializes a new instance of the Ribbon class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.StartFromScratch"> <summary> <para> startFromScratch.</para> <para>Represents the attribte in schema: startFromScratch </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.OfficeMenu"> <summary> <para> OfficeMenu.</para> <para>Represents the element tag in schema: mso:officeMenu </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.QuickAccessToolbar"> <summary> <para> QuickAccessToolbar.</para> <para>Represents the element tag in schema: mso:qat </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.Tabs"> <summary> <para> Tabs.</para> <para>Represents the element tag in schema: mso:tabs </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomUI.Ribbon.ContextualTabSets"> <summary> <para> ContextualTabSets.</para> <para>Represents the element tag in schema: mso:contextualTabs </para> </summary> <remark> xmlns:mso = http://schemas.microsoft.com/office/2006/01/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.SizeValues"> <summary> Defines the SizeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.CustomUI.SizeValues.Normal"> <summary> normal. <para>When the item is serialized out as xml, its value is "normal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.CustomUI.SizeValues.Large"> <summary> large. <para>When the item is serialized out as xml, its value is "large".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.ItemSizeValues"> <summary> Defines the ItemSizeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.CustomUI.ItemSizeValues.Normal"> <summary> normal. <para>When the item is serialized out as xml, its value is "normal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.CustomUI.ItemSizeValues.Large"> <summary> large. <para>When the item is serialized out as xml, its value is "large".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomUI.BoxStyleValues"> <summary> Defines the BoxStyleValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.CustomUI.BoxStyleValues.Horizontal"> <summary> horizontal. <para>When the item is serialized out as xml, its value is "horizontal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.CustomUI.BoxStyleValues.Vertical"> <summary> vertical. <para>When the item is serialized out as xml, its value is "vertical".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData"> <summary> <para>Defines the ActiveXControlData Class.</para> <para>When the object is serialized out as xml, its qualified name is ax:ocx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ActiveXObjectProperty <ax:ocxPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.#ctor"> <summary> Initializes a new instance of the ActiveXControlData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ActiveXControlData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ActiveXControlData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.#ctor(System.String)"> <summary> Initializes a new instance of the ActiveXControlData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.ActiveXControlClassId"> <summary> <para> classid.</para> <para>Represents the attribte in schema: ax:classid </para> </summary> <remark> xmlns:ax=http://schemas.microsoft.com/office/2006/activeX </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.License"> <summary> <para> license.</para> <para>Represents the attribte in schema: ax:license </para> </summary> <remark> xmlns:ax=http://schemas.microsoft.com/office/2006/activeX </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXControlData.Persistence"> <summary> <para> persistence.</para> <para>Represents the attribte in schema: ax:persistence </para> </summary> <remark> xmlns:ax=http://schemas.microsoft.com/office/2006/activeX </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty"> <summary> <para>Defines the ActiveXObjectProperty Class.</para> <para>When the object is serialized out as xml, its qualified name is ax:ocxPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SharedComFont <ax:font></description></item> <item><description>SharedComPicture <ax:picture></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.#ctor"> <summary> Initializes a new instance of the ActiveXObjectProperty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ActiveXObjectProperty class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ActiveXObjectProperty class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.#ctor(System.String)"> <summary> Initializes a new instance of the ActiveXObjectProperty class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: ax:name </para> </summary> <remark> xmlns:ax=http://schemas.microsoft.com/office/2006/activeX </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.Value"> <summary> <para> value.</para> <para>Represents the attribte in schema: ax:value </para> </summary> <remark> xmlns:ax=http://schemas.microsoft.com/office/2006/activeX </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.SharedComFont"> <summary> <para> SharedComFont.</para> <para>Represents the element tag in schema: ax:font </para> </summary> <remark> xmlns:ax = http://schemas.microsoft.com/office/2006/activeX </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.ActiveXObjectProperty.SharedComPicture"> <summary> <para> SharedComPicture.</para> <para>Represents the element tag in schema: ax:picture </para> </summary> <remark> xmlns:ax = http://schemas.microsoft.com/office/2006/activeX </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont"> <summary> <para>Defines the SharedComFont Class.</para> <para>When the object is serialized out as xml, its qualified name is ax:font.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ActiveXObjectProperty <ax:ocxPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.#ctor"> <summary> Initializes a new instance of the SharedComFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SharedComFont class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SharedComFont class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.#ctor(System.String)"> <summary> Initializes a new instance of the SharedComFont class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.Persistence"> <summary> <para> persistence.</para> <para>Represents the attribte in schema: ax:persistence </para> </summary> <remark> xmlns:ax=http://schemas.microsoft.com/office/2006/activeX </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.SharedComFont.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.ActiveX.SharedComPicture"> <summary> <para>Defines the SharedComPicture Class.</para> <para>When the object is serialized out as xml, its qualified name is ax:picture.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComPicture.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComPicture.#ctor"> <summary> Initializes a new instance of the SharedComPicture class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.ActiveX.SharedComPicture.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.SharedComPicture.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.SharedComPicture.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ActiveX.SharedComPicture.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.ActiveX.PersistenceValues"> <summary> Defines the PersistenceValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.ActiveX.PersistenceValues.PersistPropertyBag"> <summary> persistPropertyBag. <para>When the item is serialized out as xml, its value is "persistPropertyBag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.ActiveX.PersistenceValues.PersistStream"> <summary> persistStream. <para>When the item is serialized out as xml, its value is "persistStream".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.ActiveX.PersistenceValues.PersistStreamInit"> <summary> persistStreamInit. <para>When the item is serialized out as xml, its value is "persistStreamInit".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.ActiveX.PersistenceValues.PersistStorage"> <summary> persistStorage. <para>When the item is serialized out as xml, its value is "persistStorage".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties"> <summary> <para>Defines the CoverPageProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is cppr:CoverPageProperties.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PublishDate <cppr:PublishDate></description></item> <item><description>DocumentAbstract <cppr:Abstract></description></item> <item><description>CompanyAddress <cppr:CompanyAddress></description></item> <item><description>CompanyPhoneNumber <cppr:CompanyPhone></description></item> <item><description>CompanyFaxNumber <cppr:CompanyFax></description></item> <item><description>CompanyEmailAddress <cppr:CompanyEmail></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.#ctor"> <summary> Initializes a new instance of the CoverPageProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CoverPageProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CoverPageProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.#ctor(System.String)"> <summary> Initializes a new instance of the CoverPageProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.PublishDate"> <summary> <para> PublishDate.</para> <para>Represents the element tag in schema: cppr:PublishDate </para> </summary> <remark> xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.DocumentAbstract"> <summary> <para> DocumentAbstract.</para> <para>Represents the element tag in schema: cppr:Abstract </para> </summary> <remark> xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.CompanyAddress"> <summary> <para> CompanyAddress.</para> <para>Represents the element tag in schema: cppr:CompanyAddress </para> </summary> <remark> xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.CompanyPhoneNumber"> <summary> <para> CompanyPhoneNumber.</para> <para>Represents the element tag in schema: cppr:CompanyPhone </para> </summary> <remark> xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.CompanyFaxNumber"> <summary> <para> CompanyFaxNumber.</para> <para>Represents the element tag in schema: cppr:CompanyFax </para> </summary> <remark> xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CoverPageProperties.CompanyEmailAddress"> <summary> <para> CompanyEmailAddress.</para> <para>Represents the element tag in schema: cppr:CompanyEmail </para> </summary> <remark> xmlns:cppr = http://schemas.microsoft.com/office/2006/coverPageProps </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.CoverPageProps.PublishDate"> <summary> <para>Defines the PublishDate Class.</para> <para>When the object is serialized out as xml, its qualified name is cppr:PublishDate.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.PublishDate.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.PublishDate.#ctor"> <summary> Initializes a new instance of the PublishDate class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.PublishDate.#ctor(System.String)"> <summary> Initializes a new instance of the PublishDate class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.PublishDate.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.PublishDate.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.PublishDate.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CoverPageProps.DocumentAbstract"> <summary> <para>Defines the DocumentAbstract Class.</para> <para>When the object is serialized out as xml, its qualified name is cppr:Abstract.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.DocumentAbstract.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.DocumentAbstract.#ctor"> <summary> Initializes a new instance of the DocumentAbstract class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.DocumentAbstract.#ctor(System.String)"> <summary> Initializes a new instance of the DocumentAbstract class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.DocumentAbstract.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.DocumentAbstract.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.DocumentAbstract.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyAddress"> <summary> <para>Defines the CompanyAddress Class.</para> <para>When the object is serialized out as xml, its qualified name is cppr:CompanyAddress.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyAddress.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyAddress.#ctor"> <summary> Initializes a new instance of the CompanyAddress class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyAddress.#ctor(System.String)"> <summary> Initializes a new instance of the CompanyAddress class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyAddress.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyAddress.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyAddress.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyPhoneNumber"> <summary> <para>Defines the CompanyPhoneNumber Class.</para> <para>When the object is serialized out as xml, its qualified name is cppr:CompanyPhone.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyPhoneNumber.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyPhoneNumber.#ctor"> <summary> Initializes a new instance of the CompanyPhoneNumber class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyPhoneNumber.#ctor(System.String)"> <summary> Initializes a new instance of the CompanyPhoneNumber class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyPhoneNumber.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyPhoneNumber.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyPhoneNumber.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyFaxNumber"> <summary> <para>Defines the CompanyFaxNumber Class.</para> <para>When the object is serialized out as xml, its qualified name is cppr:CompanyFax.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyFaxNumber.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyFaxNumber.#ctor"> <summary> Initializes a new instance of the CompanyFaxNumber class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyFaxNumber.#ctor(System.String)"> <summary> Initializes a new instance of the CompanyFaxNumber class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyFaxNumber.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyFaxNumber.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyFaxNumber.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyEmailAddress"> <summary> <para>Defines the CompanyEmailAddress Class.</para> <para>When the object is serialized out as xml, its qualified name is cppr:CompanyEmail.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyEmailAddress.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyEmailAddress.#ctor"> <summary> Initializes a new instance of the CompanyEmailAddress class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyEmailAddress.#ctor(System.String)"> <summary> Initializes a new instance of the CompanyEmailAddress class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyEmailAddress.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyEmailAddress.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CoverPageProps.CompanyEmailAddress.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors"> <summary> <para>Defines the CustomPropertyEditors Class.</para> <para>When the object is serialized out as xml, its qualified name is cdip:customPropertyEditors.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShowOnOpen <cdip:showOnOpen></description></item> <item><description>DefaultPropertyEditorNamespace <cdip:defaultPropertyEditorNamespace></description></item> <item><description>CustomPropertyEditor <cdip:customPropertyEditor></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.#ctor"> <summary> Initializes a new instance of the CustomPropertyEditors class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomPropertyEditors class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomPropertyEditors class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.#ctor(System.String)"> <summary> Initializes a new instance of the CustomPropertyEditors class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.ShowOnOpen"> <summary> <para> ShowOnOpen.</para> <para>Represents the element tag in schema: cdip:showOnOpen </para> </summary> <remark> xmlns:cdip = http://schemas.microsoft.com/office/2006/customDocumentInformationPanel </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditors.DefaultPropertyEditorNamespace"> <summary> <para> DefaultPropertyEditorNamespace.</para> <para>Represents the element tag in schema: cdip:defaultPropertyEditorNamespace </para> </summary> <remark> xmlns:cdip = http://schemas.microsoft.com/office/2006/customDocumentInformationPanel </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.PropertyEditorNamespace"> <summary> <para>Defines the PropertyEditorNamespace Class.</para> <para>When the object is serialized out as xml, its qualified name is cdip:XMLNamespace.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.PropertyEditorNamespace.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.PropertyEditorNamespace.#ctor"> <summary> Initializes a new instance of the PropertyEditorNamespace class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.PropertyEditorNamespace.#ctor(System.String)"> <summary> Initializes a new instance of the PropertyEditorNamespace class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.PropertyEditorNamespace.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.PropertyEditorNamespace.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.PropertyEditorNamespace.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.DefaultPropertyEditorNamespace"> <summary> <para>Defines the DefaultPropertyEditorNamespace Class.</para> <para>When the object is serialized out as xml, its qualified name is cdip:defaultPropertyEditorNamespace.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.DefaultPropertyEditorNamespace.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.DefaultPropertyEditorNamespace.#ctor"> <summary> Initializes a new instance of the DefaultPropertyEditorNamespace class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.DefaultPropertyEditorNamespace.#ctor(System.String)"> <summary> Initializes a new instance of the DefaultPropertyEditorNamespace class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.DefaultPropertyEditorNamespace.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.DefaultPropertyEditorNamespace.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.DefaultPropertyEditorNamespace.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.XsnFileLocation"> <summary> <para>Defines the XsnFileLocation Class.</para> <para>When the object is serialized out as xml, its qualified name is cdip:XSNLocation.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.XsnFileLocation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.XsnFileLocation.#ctor"> <summary> Initializes a new instance of the XsnFileLocation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.XsnFileLocation.#ctor(System.String)"> <summary> Initializes a new instance of the XsnFileLocation class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.XsnFileLocation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.XsnFileLocation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.XsnFileLocation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.ShowOnOpen"> <summary> <para>Defines the ShowOnOpen Class.</para> <para>When the object is serialized out as xml, its qualified name is cdip:showOnOpen.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.ShowOnOpen.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.ShowOnOpen.#ctor"> <summary> Initializes a new instance of the ShowOnOpen class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.ShowOnOpen.#ctor(System.String)"> <summary> Initializes a new instance of the ShowOnOpen class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.ShowOnOpen.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.ShowOnOpen.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.ShowOnOpen.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor"> <summary> <para>Defines the CustomPropertyEditor Class.</para> <para>When the object is serialized out as xml, its qualified name is cdip:customPropertyEditor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PropertyEditorNamespace <cdip:XMLNamespace></description></item> <item><description>XsnFileLocation <cdip:XSNLocation></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.#ctor"> <summary> Initializes a new instance of the CustomPropertyEditor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomPropertyEditor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomPropertyEditor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.#ctor(System.String)"> <summary> Initializes a new instance of the CustomPropertyEditor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.PropertyEditorNamespace"> <summary> <para> PropertyEditorNamespace.</para> <para>Represents the element tag in schema: cdip:XMLNamespace </para> </summary> <remark> xmlns:cdip = http://schemas.microsoft.com/office/2006/customDocumentInformationPanel </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomDocumentInformationPanel.CustomPropertyEditor.XsnFileLocation"> <summary> <para> XsnFileLocation.</para> <para>Represents the element tag in schema: cdip:XSNLocation </para> </summary> <remark> xmlns:cdip = http://schemas.microsoft.com/office/2006/customDocumentInformationPanel </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema"> <summary> <para>Defines the ContentTypeSchema Class.</para> <para>When the object is serialized out as xml, its qualified name is ct:contentTypeSchema.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.#ctor"> <summary> Initializes a new instance of the ContentTypeSchema class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentTypeSchema class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentTypeSchema class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.#ctor(System.String)"> <summary> Initializes a new instance of the ContentTypeSchema class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.UnderScore"> <summary> <para> _.</para> <para>Represents the attribte in schema: ct:_ </para> </summary> <remark> xmlns:ct=http://schemas.microsoft.com/office/2006/metadata/contentType </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.ReservedAttributeString"> <summary> <para> _.</para> <para>Represents the attribte in schema: ma:_ </para> </summary> <remark> xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.ContentTypeName"> <summary> <para> contentTypeName.</para> <para>Represents the attribte in schema: ma:contentTypeName </para> </summary> <remark> xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.ContentTypeID"> <summary> <para> contentTypeID.</para> <para>Represents the attribte in schema: ma:contentTypeID </para> </summary> <remark> xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.ContentTypeVersion"> <summary> <para> contentTypeVersion.</para> <para>Represents the attribte in schema: ma:contentTypeVersion </para> </summary> <remark> xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.ContentTypeDescription"> <summary> <para> contentTypeDescription.</para> <para>Represents the attribte in schema: ma:contentTypeDescription </para> </summary> <remark> xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.ContentTypeScope"> <summary> <para> contentTypeScope.</para> <para>Represents the attribte in schema: ma:contentTypeScope </para> </summary> <remark> xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.ContentType.ContentTypeSchema.VersionID"> <summary> <para> versionID.</para> <para>Represents the attribte in schema: ma:versionID </para> </summary> <remark> xmlns:ma=http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn"> <summary> <para>Defines the CustomXsn Class.</para> <para>When the object is serialized out as xml, its qualified name is ntns:customXsn.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>XsnLocation <ntns:xsnLocation></description></item> <item><description>CachedView <ntns:cached></description></item> <item><description>OpenByDefault <ntns:openByDefault></description></item> <item><description>Scope <ntns:xsnScope></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.#ctor"> <summary> Initializes a new instance of the CustomXsn class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomXsn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomXsn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.#ctor(System.String)"> <summary> Initializes a new instance of the CustomXsn class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.XsnLocation"> <summary> <para> XsnLocation.</para> <para>Represents the element tag in schema: ntns:xsnLocation </para> </summary> <remark> xmlns:ntns = http://schemas.microsoft.com/office/2006/metadata/customXsn </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.CachedView"> <summary> <para> CachedView.</para> <para>Represents the element tag in schema: ntns:cached </para> </summary> <remark> xmlns:ntns = http://schemas.microsoft.com/office/2006/metadata/customXsn </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.OpenByDefault"> <summary> <para> OpenByDefault.</para> <para>Represents the element tag in schema: ntns:openByDefault </para> </summary> <remark> xmlns:ntns = http://schemas.microsoft.com/office/2006/metadata/customXsn </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.CustomXsn.Scope"> <summary> <para> Scope.</para> <para>Represents the element tag in schema: ntns:xsnScope </para> </summary> <remark> xmlns:ntns = http://schemas.microsoft.com/office/2006/metadata/customXsn </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomXsn.XsnLocation"> <summary> <para>Defines the XsnLocation Class.</para> <para>When the object is serialized out as xml, its qualified name is ntns:xsnLocation.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.XsnLocation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.XsnLocation.#ctor"> <summary> Initializes a new instance of the XsnLocation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.XsnLocation.#ctor(System.String)"> <summary> Initializes a new instance of the XsnLocation class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.XsnLocation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.XsnLocation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.XsnLocation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomXsn.CachedView"> <summary> <para>Defines the CachedView Class.</para> <para>When the object is serialized out as xml, its qualified name is ntns:cached.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CachedView.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CachedView.#ctor"> <summary> Initializes a new instance of the CachedView class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CachedView.#ctor(System.String)"> <summary> Initializes a new instance of the CachedView class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.CachedView.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.CachedView.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.CachedView.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomXsn.OpenByDefault"> <summary> <para>Defines the OpenByDefault Class.</para> <para>When the object is serialized out as xml, its qualified name is ntns:openByDefault.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.OpenByDefault.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.OpenByDefault.#ctor"> <summary> Initializes a new instance of the OpenByDefault class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.OpenByDefault.#ctor(System.String)"> <summary> Initializes a new instance of the OpenByDefault class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.OpenByDefault.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.OpenByDefault.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.OpenByDefault.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.CustomXsn.Scope"> <summary> <para>Defines the Scope Class.</para> <para>When the object is serialized out as xml, its qualified name is ntns:xsnScope.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.Scope.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.Scope.#ctor"> <summary> Initializes a new instance of the Scope class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.Scope.#ctor(System.String)"> <summary> Initializes a new instance of the Scope class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.CustomXsn.Scope.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.Scope.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.CustomXsn.Scope.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.LongProperties.LongProperties"> <summary> <para>Defines the LongProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is lp:LongProperties.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LongProperty <lp:LongProp></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperties.#ctor"> <summary> Initializes a new instance of the LongProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LongProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LongProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperties.#ctor(System.String)"> <summary> Initializes a new instance of the LongProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.LongProperties.LongProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.LongProperties.LongProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.LongProperties.LongProperty"> <summary> <para>Defines the LongProperty Class.</para> <para>When the object is serialized out as xml, its qualified name is lp:LongProp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperty.#ctor"> <summary> Initializes a new instance of the LongProperty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperty.#ctor(System.String)"> <summary> Initializes a new instance of the LongProperty class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.LongProperties.LongProperty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.LongProperties.LongProperty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.LongProperties.LongProperty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.LongProperties.LongProperty.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy"> <summary> <para>Defines the Dummy Class.</para> <para>When the object is serialized out as xml, its qualified name is ma:DummyContentTypeElement.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.#ctor"> <summary> Initializes a new instance of the Dummy class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Decimals"> <summary> <para> decimals.</para> <para>Represents the attribte in schema: decimals </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Default"> <summary> <para> default.</para> <para>Represents the attribte in schema: default </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.DisplayName"> <summary> <para> displayName.</para> <para>Represents the attribte in schema: displayName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.FieldsID"> <summary> <para> fieldsID.</para> <para>Represents the attribte in schema: fieldsID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Format"> <summary> <para> format.</para> <para>Represents the attribte in schema: format </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Hidden"> <summary> <para> hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Index"> <summary> <para> index.</para> <para>Represents the attribte in schema: index </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.InternalName"> <summary> <para> internalName.</para> <para>Represents the attribte in schema: internalName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.LCID"> <summary> <para> LCID.</para> <para>Represents the attribte in schema: LCID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.List"> <summary> <para> list.</para> <para>Represents the attribte in schema: list </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Percentage"> <summary> <para> percentage.</para> <para>Represents the attribte in schema: percentage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.ReadOnly"> <summary> <para> readOnly.</para> <para>Represents the attribte in schema: readOnly </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.RequiredMultiChoice"> <summary> <para> requiredMultiChoice.</para> <para>Represents the attribte in schema: requiredMultiChoice </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Root"> <summary> <para> root.</para> <para>Represents the attribte in schema: root </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.ShowField"> <summary> <para> showField.</para> <para>Represents the attribte in schema: showField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.MetaAttributes.Dummy.Web"> <summary> <para> web.</para> <para>Represents the attribte in schema: web </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.MetaAttributes.TrueOnlyValues"> <summary> Defines the TrueOnlyValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office.MetaAttributes.TrueOnlyValues.True"> <summary> true. <para>When the item is serialized out as xml, its value is "true".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular"> <summary> <para>Defines the ControlCloneRegular Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:control.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.#ctor"> <summary> Initializes a new instance of the ControlCloneRegular class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneRegular.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular"> <summary> <para>Defines the ButtonRegular Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.#ctor"> <summary> Initializes a new instance of the ButtonRegular class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonRegular.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox"> <summary> <para>Defines the CheckBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:checkBox.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.#ctor"> <summary> Initializes a new instance of the CheckBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CheckBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular"> <summary> <para>Defines the GalleryRegular Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:gallery.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Item <mso14:item></description></item> <item><description>ButtonRegular <mso14:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.#ctor"> <summary> Initializes a new instance of the GalleryRegular class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GalleryRegular class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GalleryRegular class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.#ctor(System.String)"> <summary> Initializes a new instance of the GalleryRegular class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Columns"> <summary> <para> columns.</para> <para>Represents the attribte in schema: columns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Rows"> <summary> <para> rows.</para> <para>Represents the attribte in schema: rows </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ItemWidth"> <summary> <para> itemWidth.</para> <para>Represents the attribte in schema: itemWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ItemHeight"> <summary> <para> itemHeight.</para> <para>Represents the attribte in schema: itemHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetItemWidth"> <summary> <para> getItemWidth.</para> <para>Represents the attribte in schema: getItemWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetItemHeight"> <summary> <para> getItemHeight.</para> <para>Represents the attribte in schema: getItemHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ShowItemLabel"> <summary> <para> showItemLabel.</para> <para>Represents the attribte in schema: showItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ShowInRibbon"> <summary> <para> showInRibbon.</para> <para>Represents the attribte in schema: showInRibbon </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ShowItemImage"> <summary> <para> showItemImage.</para> <para>Represents the attribte in schema: showItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetItemScreentip"> <summary> <para> getItemScreentip.</para> <para>Represents the attribte in schema: getItemScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetItemSupertip"> <summary> <para> getItemSupertip.</para> <para>Represents the attribte in schema: getItemSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetItemImage"> <summary> <para> getItemImage.</para> <para>Represents the attribte in schema: getItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetSelectedItemID"> <summary> <para> getSelectedItemID.</para> <para>Represents the attribte in schema: getSelectedItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetSelectedItemIndex"> <summary> <para> getSelectedItemIndex.</para> <para>Represents the attribte in schema: getSelectedItemIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryRegular.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular"> <summary> <para>Defines the ToggleButtonRegular Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:toggleButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.#ctor"> <summary> Initializes a new instance of the ToggleButtonRegular class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButtonRegular.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator"> <summary> <para>Defines the MenuSeparator Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menuSeparator.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.#ctor"> <summary> Initializes a new instance of the MenuSeparator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparator.GetTitle"> <summary> <para> getTitle.</para> <para>Represents the attribte in schema: getTitle </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular"> <summary> <para>Defines the SplitButtonRegular Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:splitButton.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VisibleButton <mso14:button></description></item> <item><description>VisibleToggleButton <mso14:toggleButton></description></item> <item><description>MenuRegular <mso14:menu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.#ctor"> <summary> Initializes a new instance of the SplitButtonRegular class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SplitButtonRegular class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SplitButtonRegular class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.#ctor(System.String)"> <summary> Initializes a new instance of the SplitButtonRegular class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonRegular.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular"> <summary> <para>Defines the MenuRegular Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneRegular <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>CheckBox <mso14:checkBox></description></item> <item><description>GalleryRegular <mso14:gallery></description></item> <item><description>ToggleButtonRegular <mso14:toggleButton></description></item> <item><description>MenuSeparator <mso14:menuSeparator></description></item> <item><description>SplitButtonRegular <mso14:splitButton></description></item> <item><description>MenuRegular <mso14:menu></description></item> <item><description>DynamicMenuRegular <mso14:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.#ctor"> <summary> Initializes a new instance of the MenuRegular class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MenuRegular class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MenuRegular class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.#ctor(System.String)"> <summary> Initializes a new instance of the MenuRegular class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRegular.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular"> <summary> <para>Defines the DynamicMenuRegular Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:dynamicMenu.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.#ctor"> <summary> Initializes a new instance of the DynamicMenuRegular class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetContent"> <summary> <para> getContent.</para> <para>Represents the attribte in schema: getContent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenuRegular.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle"> <summary> <para>Defines the SplitButtonWithTitle Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:splitButton.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VisibleButton <mso14:button></description></item> <item><description>VisibleToggleButton <mso14:toggleButton></description></item> <item><description>MenuWithTitle <mso14:menu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.#ctor"> <summary> Initializes a new instance of the SplitButtonWithTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SplitButtonWithTitle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SplitButtonWithTitle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.#ctor(System.String)"> <summary> Initializes a new instance of the SplitButtonWithTitle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButtonWithTitle.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle"> <summary> <para>Defines the MenuWithTitle Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneRegular <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>CheckBox <mso14:checkBox></description></item> <item><description>GalleryRegular <mso14:gallery></description></item> <item><description>ToggleButtonRegular <mso14:toggleButton></description></item> <item><description>MenuSeparator <mso14:menuSeparator></description></item> <item><description>SplitButtonWithTitle <mso14:splitButton></description></item> <item><description>MenuWithTitle <mso14:menu></description></item> <item><description>DynamicMenuRegular <mso14:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.#ctor"> <summary> Initializes a new instance of the MenuWithTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MenuWithTitle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MenuWithTitle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.#ctor(System.String)"> <summary> Initializes a new instance of the MenuWithTitle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetTitle"> <summary> <para> getTitle.</para> <para>Represents the attribte in schema: getTitle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuWithTitle.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle"> <summary> <para>Defines the MenuSeparatorNoTitle Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menuSeparator.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.#ctor"> <summary> Initializes a new instance of the MenuSeparatorNoTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuSeparatorNoTitle.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone"> <summary> <para>Defines the ControlClone Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:control.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.#ctor"> <summary> Initializes a new instance of the ControlClone class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlClone.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl"> <summary> <para>Defines the LabelControl Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:labelControl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.#ctor"> <summary> Initializes a new instance of the LabelControl class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LabelControl.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Button"> <summary> <para>Defines the Button Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Button.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Button.#ctor"> <summary> Initializes a new instance of the Button class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Button.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Button.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton"> <summary> <para>Defines the ToggleButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:toggleButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.#ctor"> <summary> Initializes a new instance of the ToggleButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ToggleButton.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox"> <summary> <para>Defines the EditBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:editBox.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.#ctor"> <summary> Initializes a new instance of the EditBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.MaxLength"> <summary> <para> maxLength.</para> <para>Represents the attribte in schema: maxLength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetText"> <summary> <para> getText.</para> <para>Represents the attribte in schema: getText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.OnChange"> <summary> <para> onChange.</para> <para>Represents the attribte in schema: onChange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.EditBox.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox"> <summary> <para>Defines the ComboBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:comboBox.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Item <mso14:item></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.#ctor"> <summary> Initializes a new instance of the ComboBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ComboBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ComboBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.#ctor(System.String)"> <summary> Initializes a new instance of the ComboBox class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.ShowItemImage"> <summary> <para> showItemImage.</para> <para>Represents the attribte in schema: showItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetItemScreentip"> <summary> <para> getItemScreentip.</para> <para>Represents the attribte in schema: getItemScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetItemSupertip"> <summary> <para> getItemSupertip.</para> <para>Represents the attribte in schema: getItemSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetItemImage"> <summary> <para> getItemImage.</para> <para>Represents the attribte in schema: getItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.MaxLength"> <summary> <para> maxLength.</para> <para>Represents the attribte in schema: maxLength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetText"> <summary> <para> getText.</para> <para>Represents the attribte in schema: getText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.OnChange"> <summary> <para> onChange.</para> <para>Represents the attribte in schema: onChange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ComboBox.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular"> <summary> <para>Defines the DropDownRegular Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:dropDown.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Item <mso14:item></description></item> <item><description>ButtonRegular <mso14:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.#ctor"> <summary> Initializes a new instance of the DropDownRegular class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DropDownRegular class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DropDownRegular class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.#ctor(System.String)"> <summary> Initializes a new instance of the DropDownRegular class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.ShowItemImage"> <summary> <para> showItemImage.</para> <para>Represents the attribte in schema: showItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetItemScreentip"> <summary> <para> getItemScreentip.</para> <para>Represents the attribte in schema: getItemScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetItemSupertip"> <summary> <para> getItemSupertip.</para> <para>Represents the attribte in schema: getItemSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetItemImage"> <summary> <para> getItemImage.</para> <para>Represents the attribte in schema: getItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetSelectedItemID"> <summary> <para> getSelectedItemID.</para> <para>Represents the attribte in schema: getSelectedItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetSelectedItemIndex"> <summary> <para> getSelectedItemIndex.</para> <para>Represents the attribte in schema: getSelectedItemIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.ShowItemLabel"> <summary> <para> showItemLabel.</para> <para>Represents the attribte in schema: showItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DropDownRegular.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery"> <summary> <para>Defines the Gallery Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:gallery.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Item <mso14:item></description></item> <item><description>ButtonRegular <mso14:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.#ctor"> <summary> Initializes a new instance of the Gallery class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Gallery class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Gallery class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.#ctor(System.String)"> <summary> Initializes a new instance of the Gallery class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Columns"> <summary> <para> columns.</para> <para>Represents the attribte in schema: columns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Rows"> <summary> <para> rows.</para> <para>Represents the attribte in schema: rows </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ItemWidth"> <summary> <para> itemWidth.</para> <para>Represents the attribte in schema: itemWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ItemHeight"> <summary> <para> itemHeight.</para> <para>Represents the attribte in schema: itemHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetItemWidth"> <summary> <para> getItemWidth.</para> <para>Represents the attribte in schema: getItemWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetItemHeight"> <summary> <para> getItemHeight.</para> <para>Represents the attribte in schema: getItemHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ShowItemLabel"> <summary> <para> showItemLabel.</para> <para>Represents the attribte in schema: showItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ShowInRibbon"> <summary> <para> showInRibbon.</para> <para>Represents the attribte in schema: showInRibbon </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ShowItemImage"> <summary> <para> showItemImage.</para> <para>Represents the attribte in schema: showItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetItemScreentip"> <summary> <para> getItemScreentip.</para> <para>Represents the attribte in schema: getItemScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetItemSupertip"> <summary> <para> getItemSupertip.</para> <para>Represents the attribte in schema: getItemSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetItemImage"> <summary> <para> getItemImage.</para> <para>Represents the attribte in schema: getItemImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetSelectedItemID"> <summary> <para> getSelectedItemID.</para> <para>Represents the attribte in schema: getSelectedItemID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetSelectedItemIndex"> <summary> <para> getSelectedItemIndex.</para> <para>Represents the attribte in schema: getSelectedItemIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Gallery.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Menu"> <summary> <para>Defines the Menu Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneRegular <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>CheckBox <mso14:checkBox></description></item> <item><description>GalleryRegular <mso14:gallery></description></item> <item><description>ToggleButtonRegular <mso14:toggleButton></description></item> <item><description>MenuSeparator <mso14:menuSeparator></description></item> <item><description>SplitButtonRegular <mso14:splitButton></description></item> <item><description>MenuRegular <mso14:menu></description></item> <item><description>DynamicMenuRegular <mso14:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.#ctor"> <summary> Initializes a new instance of the Menu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Menu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Menu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.#ctor(System.String)"> <summary> Initializes a new instance of the Menu class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Menu.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu"> <summary> <para>Defines the DynamicMenu Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:dynamicMenu.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.#ctor"> <summary> Initializes a new instance of the DynamicMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetContent"> <summary> <para> getContent.</para> <para>Represents the attribte in schema: getContent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.InvalidateContentOnDrop"> <summary> <para> invalidateContentOnDrop.</para> <para>Represents the attribte in schema: invalidateContentOnDrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DynamicMenu.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton"> <summary> <para>Defines the SplitButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:splitButton.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VisibleButton <mso14:button></description></item> <item><description>VisibleToggleButton <mso14:toggleButton></description></item> <item><description>MenuRegular <mso14:menu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.#ctor"> <summary> Initializes a new instance of the SplitButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SplitButton class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SplitButton class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.#ctor(System.String)"> <summary> Initializes a new instance of the SplitButton class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SplitButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Box"> <summary> <para>Defines the Box Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:box.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlClone <mso14:control></description></item> <item><description>LabelControl <mso14:labelControl></description></item> <item><description>Button <mso14:button></description></item> <item><description>ToggleButton <mso14:toggleButton></description></item> <item><description>CheckBox <mso14:checkBox></description></item> <item><description>EditBox <mso14:editBox></description></item> <item><description>ComboBox <mso14:comboBox></description></item> <item><description>DropDownRegular <mso14:dropDown></description></item> <item><description>Gallery <mso14:gallery></description></item> <item><description>Menu <mso14:menu></description></item> <item><description>DynamicMenu <mso14:dynamicMenu></description></item> <item><description>SplitButton <mso14:splitButton></description></item> <item><description>Box <mso14:box></description></item> <item><description>ButtonGroup <mso14:buttonGroup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Box.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Box.#ctor"> <summary> Initializes a new instance of the Box class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Box.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Box class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Box.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Box class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Box.#ctor(System.String)"> <summary> Initializes a new instance of the Box class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Box.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Box.BoxStyle"> <summary> <para> boxStyle.</para> <para>Represents the attribte in schema: boxStyle </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup"> <summary> <para>Defines the ButtonGroup Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:buttonGroup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneRegular <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>ToggleButtonRegular <mso14:toggleButton></description></item> <item><description>GalleryRegular <mso14:gallery></description></item> <item><description>MenuRegular <mso14:menu></description></item> <item><description>DynamicMenuRegular <mso14:dynamicMenu></description></item> <item><description>SplitButtonRegular <mso14:splitButton></description></item> <item><description>Separator <mso14:separator></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.#ctor"> <summary> Initializes a new instance of the ButtonGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ButtonGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ButtonGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.#ctor(System.String)"> <summary> Initializes a new instance of the ButtonGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ButtonGroup.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton"> <summary> <para>Defines the BackstageMenuButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.#ctor"> <summary> Initializes a new instance of the BackstageMenuButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.IsDefinitive"> <summary> <para> isDefinitive.</para> <para>Represents the attribte in schema: isDefinitive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox"> <summary> <para>Defines the BackstageMenuCheckBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:checkBox.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.#ctor"> <summary> Initializes a new instance of the BackstageMenuCheckBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuCheckBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu"> <summary> <para>Defines the BackstageSubMenu Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageMenuGroup <mso14:menuGroup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.#ctor"> <summary> Initializes a new instance of the BackstageSubMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackstageSubMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackstageSubMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.#ctor(System.String)"> <summary> Initializes a new instance of the BackstageSubMenu class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageSubMenu.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton"> <summary> <para>Defines the BackstageMenuToggleButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:toggleButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.#ctor"> <summary> Initializes a new instance of the BackstageMenuToggleButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuToggleButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton"> <summary> <para>Defines the BackstageGroupButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.#ctor"> <summary> Initializes a new instance of the BackstageGroupButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Style"> <summary> <para> style.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.IsDefinitive"> <summary> <para> isDefinitive.</para> <para>Represents the attribte in schema: isDefinitive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroupButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox"> <summary> <para>Defines the BackstageCheckBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:checkBox.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.#ctor"> <summary> Initializes a new instance of the BackstageCheckBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageCheckBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox"> <summary> <para>Defines the BackstageEditBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:editBox.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.#ctor"> <summary> Initializes a new instance of the BackstageEditBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.AlignLabel"> <summary> <para> alignLabel.</para> <para>Represents the attribte in schema: alignLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.GetText"> <summary> <para> getText.</para> <para>Represents the attribte in schema: getText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.OnChange"> <summary> <para> onChange.</para> <para>Represents the attribte in schema: onChange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.MaxLength"> <summary> <para> maxLength.</para> <para>Represents the attribte in schema: maxLength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageEditBox.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown"> <summary> <para>Defines the BackstageDropDown Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:dropDown.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ItemBackstageItem <mso14:item></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.#ctor"> <summary> Initializes a new instance of the BackstageDropDown class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackstageDropDown class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackstageDropDown class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.#ctor(System.String)"> <summary> Initializes a new instance of the BackstageDropDown class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.AlignLabel"> <summary> <para> alignLabel.</para> <para>Represents the attribte in schema: alignLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetSelectedItemIndex"> <summary> <para> getSelectedItemIndex.</para> <para>Represents the attribte in schema: getSelectedItemIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageDropDown.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup"> <summary> <para>Defines the RadioGroup Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:radioGroup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RadioButtonBackstageItem <mso14:radioButton></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.#ctor"> <summary> Initializes a new instance of the RadioGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RadioGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RadioGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.#ctor(System.String)"> <summary> Initializes a new instance of the RadioGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.AlignLabel"> <summary> <para> alignLabel.</para> <para>Represents the attribte in schema: alignLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.GetSelectedItemIndex"> <summary> <para> getSelectedItemIndex.</para> <para>Represents the attribte in schema: getSelectedItemIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioGroup.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox"> <summary> <para>Defines the BackstageComboBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:comboBox.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ItemBackstageItem <mso14:item></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.#ctor"> <summary> Initializes a new instance of the BackstageComboBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackstageComboBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackstageComboBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.#ctor(System.String)"> <summary> Initializes a new instance of the BackstageComboBox class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.AlignLabel"> <summary> <para> alignLabel.</para> <para>Represents the attribte in schema: alignLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.GetText"> <summary> <para> getText.</para> <para>Represents the attribte in schema: getText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.OnChange"> <summary> <para> onChange.</para> <para>Represents the attribte in schema: onChange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.SizeString"> <summary> <para> sizeString.</para> <para>Represents the attribte in schema: sizeString </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.GetItemCount"> <summary> <para> getItemCount.</para> <para>Represents the attribte in schema: getItemCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.GetItemLabel"> <summary> <para> getItemLabel.</para> <para>Represents the attribte in schema: getItemLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageComboBox.GetItemID"> <summary> <para> getItemID.</para> <para>Represents the attribte in schema: getItemID </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink"> <summary> <para>Defines the Hyperlink Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:hyperlink.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.#ctor"> <summary> Initializes a new instance of the Hyperlink class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.AlignLabel"> <summary> <para> alignLabel.</para> <para>Represents the attribte in schema: alignLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.Target"> <summary> <para> target.</para> <para>Represents the attribte in schema: target </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Hyperlink.GetTarget"> <summary> <para> getTarget.</para> <para>Represents the attribte in schema: getTarget </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl"> <summary> <para>Defines the BackstageLabelControl Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:labelControl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.#ctor"> <summary> Initializes a new instance of the BackstageLabelControl class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.AlignLabel"> <summary> <para> alignLabel.</para> <para>Represents the attribte in schema: alignLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageLabelControl.NoWrap"> <summary> <para> noWrap.</para> <para>Represents the attribte in schema: noWrap </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox"> <summary> <para>Defines the GroupBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:groupBox.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageGroupButton <mso14:button></description></item> <item><description>BackstageCheckBox <mso14:checkBox></description></item> <item><description>BackstageEditBox <mso14:editBox></description></item> <item><description>BackstageDropDown <mso14:dropDown></description></item> <item><description>RadioGroup <mso14:radioGroup></description></item> <item><description>BackstageComboBox <mso14:comboBox></description></item> <item><description>Hyperlink <mso14:hyperlink></description></item> <item><description>BackstageLabelControl <mso14:labelControl></description></item> <item><description>GroupBox <mso14:groupBox></description></item> <item><description>LayoutContainer <mso14:layoutContainer></description></item> <item><description>ImageControl <mso14:imageControl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.#ctor"> <summary> Initializes a new instance of the GroupBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.#ctor(System.String)"> <summary> Initializes a new instance of the GroupBox class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.GroupBox.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer"> <summary> <para>Defines the LayoutContainer Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:layoutContainer.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageGroupButton <mso14:button></description></item> <item><description>BackstageCheckBox <mso14:checkBox></description></item> <item><description>BackstageEditBox <mso14:editBox></description></item> <item><description>BackstageDropDown <mso14:dropDown></description></item> <item><description>RadioGroup <mso14:radioGroup></description></item> <item><description>BackstageComboBox <mso14:comboBox></description></item> <item><description>Hyperlink <mso14:hyperlink></description></item> <item><description>BackstageLabelControl <mso14:labelControl></description></item> <item><description>GroupBox <mso14:groupBox></description></item> <item><description>LayoutContainer <mso14:layoutContainer></description></item> <item><description>ImageControl <mso14:imageControl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.#ctor"> <summary> Initializes a new instance of the LayoutContainer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LayoutContainer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LayoutContainer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.#ctor(System.String)"> <summary> Initializes a new instance of the LayoutContainer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.Align"> <summary> <para> align.</para> <para>Represents the attribte in schema: align </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.Expand"> <summary> <para> expand.</para> <para>Represents the attribte in schema: expand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutContainer.LayoutChildren"> <summary> <para> layoutChildren.</para> <para>Represents the attribte in schema: layoutChildren </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl"> <summary> <para>Defines the ImageControl Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:imageControl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.#ctor"> <summary> Initializes a new instance of the ImageControl class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.AltText"> <summary> <para> altText.</para> <para>Represents the attribte in schema: altText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ImageControl.GetAltText"> <summary> <para> getAltText.</para> <para>Represents the attribte in schema: getAltText </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup"> <summary> <para>Defines the BackstageGroup Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:group.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PrimaryItem <mso14:primaryItem></description></item> <item><description>TopItemsGroupControls <mso14:topItems></description></item> <item><description>BottomItemsGroupControls <mso14:bottomItems></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.#ctor"> <summary> Initializes a new instance of the BackstageGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackstageGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackstageGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.#ctor(System.String)"> <summary> Initializes a new instance of the BackstageGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.Style"> <summary> <para> style.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.GetStyle"> <summary> <para> getStyle.</para> <para>Represents the attribte in schema: getStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.HelperText"> <summary> <para> helperText.</para> <para>Represents the attribte in schema: helperText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.GetHelperText"> <summary> <para> getHelperText.</para> <para>Represents the attribte in schema: getHelperText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroup.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup"> <summary> <para>Defines the TaskGroup Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:taskGroup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TaskGroupCategory <mso14:category></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.#ctor"> <summary> Initializes a new instance of the TaskGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TaskGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TaskGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.#ctor(System.String)"> <summary> Initializes a new instance of the TaskGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.HelperText"> <summary> <para> helperText.</para> <para>Represents the attribte in schema: helperText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.GetHelperText"> <summary> <para> getHelperText.</para> <para>Represents the attribte in schema: getHelperText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroup.AllowedTaskSizes"> <summary> <para> allowedTaskSizes.</para> <para>Represents the attribte in schema: allowedTaskSizes </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot"> <summary> <para>Defines the MenuRoot Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneRegular <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>CheckBox <mso14:checkBox></description></item> <item><description>GalleryRegular <mso14:gallery></description></item> <item><description>ToggleButtonRegular <mso14:toggleButton></description></item> <item><description>MenuSeparator <mso14:menuSeparator></description></item> <item><description>SplitButtonRegular <mso14:splitButton></description></item> <item><description>MenuRegular <mso14:menu></description></item> <item><description>DynamicMenuRegular <mso14:dynamicMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.#ctor"> <summary> Initializes a new instance of the MenuRoot class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MenuRoot class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MenuRoot class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.#ctor(System.String)"> <summary> Initializes a new instance of the MenuRoot class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.GetTitle"> <summary> <para> getTitle.</para> <para>Represents the attribte in schema: getTitle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.MenuRoot.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI"> <summary> <para>Defines the CustomUI Class. It is the root element of RibbonAndBackstageCustomizationsPart.</para> <para>When the object is serialized out as xml, its qualified name is mso14:customUI.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Commands <mso14:commands></description></item> <item><description>Ribbon <mso14:ribbon></description></item> <item><description>Backstage <mso14:backstage></description></item> <item><description>ContextMenus <mso14:contextMenus></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.#ctor(DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart)"> <summary> CustomUI constructor </summary> <param name="ownerPart">The owner part of the CustomUI</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.Load(DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart)"> <summary> Loads the DOM from the RibbonAndBackstageCustomizationsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomUI class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomUI class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.#ctor(System.String)"> <summary> Initializes a new instance of the CustomUI class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.#ctor"> <summary> Initializes a new instance of the CustomUI class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.Save(DocumentFormat.OpenXml.Packaging.RibbonAndBackstageCustomizationsPart)"> <summary> Saves the DOM into the RibbonAndBackstageCustomizationsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.OnLoad"> <summary> <para> onLoad.</para> <para>Represents the attribte in schema: onLoad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.LoadImage"> <summary> <para> loadImage.</para> <para>Represents the attribte in schema: loadImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.RibbonAndBackstageCustomizationsPart"> <summary> Gets the RibbonAndBackstageCustomizationsPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.Commands"> <summary> <para> Commands.</para> <para>Represents the element tag in schema: mso14:commands </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.Ribbon"> <summary> <para> Ribbon.</para> <para>Represents the element tag in schema: mso14:ribbon </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.Backstage"> <summary> <para> Backstage.</para> <para>Represents the element tag in schema: mso14:backstage </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.CustomUI.ContextMenus"> <summary> <para> ContextMenus.</para> <para>Represents the element tag in schema: mso14:contextMenus </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Item"> <summary> <para>Defines the Item Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:item.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Item.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Item.#ctor"> <summary> Initializes a new instance of the Item class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Item.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Item.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Item.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Item.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Item.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Item.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Item.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Item.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Item.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton"> <summary> <para>Defines the VisibleButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.#ctor"> <summary> Initializes a new instance of the VisibleButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleButton.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton"> <summary> <para>Defines the VisibleToggleButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:toggleButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.#ctor"> <summary> Initializes a new instance of the VisibleToggleButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetPressed"> <summary> <para> getPressed.</para> <para>Represents the attribte in schema: getPressed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.VisibleToggleButton.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Separator"> <summary> <para>Defines the Separator Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:separator.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.#ctor"> <summary> Initializes a new instance of the Separator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Separator.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher"> <summary> <para>Defines the DialogBoxLauncher Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:dialogBoxLauncher.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ButtonRegular <mso14:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.#ctor"> <summary> Initializes a new instance of the DialogBoxLauncher class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DialogBoxLauncher class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DialogBoxLauncher class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.#ctor(System.String)"> <summary> Initializes a new instance of the DialogBoxLauncher class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DialogBoxLauncher.ButtonRegular"> <summary> <para> ButtonRegular.</para> <para>Represents the element tag in schema: mso14:button </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Group"> <summary> <para>Defines the Group Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:group.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlClone <mso14:control></description></item> <item><description>LabelControl <mso14:labelControl></description></item> <item><description>Button <mso14:button></description></item> <item><description>ToggleButton <mso14:toggleButton></description></item> <item><description>CheckBox <mso14:checkBox></description></item> <item><description>EditBox <mso14:editBox></description></item> <item><description>ComboBox <mso14:comboBox></description></item> <item><description>DropDownRegular <mso14:dropDown></description></item> <item><description>Gallery <mso14:gallery></description></item> <item><description>Menu <mso14:menu></description></item> <item><description>DynamicMenu <mso14:dynamicMenu></description></item> <item><description>SplitButton <mso14:splitButton></description></item> <item><description>Box <mso14:box></description></item> <item><description>ButtonGroup <mso14:buttonGroup></description></item> <item><description>Separator <mso14:separator></description></item> <item><description>DialogBoxLauncher <mso14:dialogBoxLauncher></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Group.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Group.#ctor"> <summary> Initializes a new instance of the Group class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Group.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Group class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Group.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Group class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Group.#ctor(System.String)"> <summary> Initializes a new instance of the Group class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Group.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.AutoScale"> <summary> <para> autoScale.</para> <para>Represents the attribte in schema: autoScale </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Group.CenterVertically"> <summary> <para> centerVertically.</para> <para>Represents the attribte in schema: centerVertically </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat"> <summary> <para>Defines the ControlCloneQat Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:control.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.#ctor"> <summary> Initializes a new instance of the ControlCloneQat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.IdQ"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetSize"> <summary> <para> getSize.</para> <para>Represents the attribte in schema: getSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.ShowImage"> <summary> <para> showImage.</para> <para>Represents the attribte in schema: showImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ControlCloneQat.GetShowImage"> <summary> <para> getShowImage.</para> <para>Represents the attribte in schema: getShowImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems"> <summary> <para>Defines the SharedControlsQatItems Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:sharedControls.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneQat <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>Separator <mso14:separator></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.QatItemsType"> <summary> Defines the QatItemsType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneQat <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>Separator <mso14:separator></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QatItemsType.#ctor"> <summary> Initializes a new instance of the QatItemsType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QatItemsType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QatItemsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QatItemsType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QatItemsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QatItemsType.#ctor(System.String)"> <summary> Initializes a new instance of the QatItemsType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems.#ctor"> <summary> Initializes a new instance of the SharedControlsQatItems class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SharedControlsQatItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SharedControlsQatItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems.#ctor(System.String)"> <summary> Initializes a new instance of the SharedControlsQatItems class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SharedControlsQatItems.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems"> <summary> <para>Defines the DocumentControlsQatItems Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:documentControls.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneQat <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>Separator <mso14:separator></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems.#ctor"> <summary> Initializes a new instance of the DocumentControlsQatItems class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DocumentControlsQatItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DocumentControlsQatItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems.#ctor(System.String)"> <summary> Initializes a new instance of the DocumentControlsQatItems class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.DocumentControlsQatItems.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Tab"> <summary> <para>Defines the Tab Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:tab.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Group <mso14:group></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.#ctor"> <summary> Initializes a new instance of the Tab class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Tab class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Tab class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.#ctor(System.String)"> <summary> Initializes a new instance of the Tab class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tab.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet"> <summary> <para>Defines the TabSet Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:tabSet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tab <mso14:tab></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.#ctor"> <summary> Initializes a new instance of the TabSet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TabSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TabSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.#ctor(System.String)"> <summary> Initializes a new instance of the TabSet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TabSet.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Command"> <summary> <para>Defines the Command Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:command.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Command.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Command.#ctor"> <summary> Initializes a new instance of the Command class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Command.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Command.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Command.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Command.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Command.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Command.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Command.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar"> <summary> <para>Defines the QuickAccessToolbar Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:qat.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SharedControlsQatItems <mso14:sharedControls></description></item> <item><description>DocumentControlsQatItems <mso14:documentControls></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.#ctor"> <summary> Initializes a new instance of the QuickAccessToolbar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QuickAccessToolbar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QuickAccessToolbar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.#ctor(System.String)"> <summary> Initializes a new instance of the QuickAccessToolbar class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.SharedControlsQatItems"> <summary> <para> SharedControlsQatItems.</para> <para>Represents the element tag in schema: mso14:sharedControls </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.QuickAccessToolbar.DocumentControlsQatItems"> <summary> <para> DocumentControlsQatItems.</para> <para>Represents the element tag in schema: mso14:documentControls </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs"> <summary> <para>Defines the Tabs Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:tabs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tab <mso14:tab></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs.#ctor"> <summary> Initializes a new instance of the Tabs class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Tabs class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Tabs class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs.#ctor(System.String)"> <summary> Initializes a new instance of the Tabs class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Tabs.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs"> <summary> <para>Defines the ContextualTabs Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:contextualTabs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TabSet <mso14:tabSet></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs.#ctor"> <summary> Initializes a new instance of the ContextualTabs class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContextualTabs class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContextualTabs class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs.#ctor(System.String)"> <summary> Initializes a new instance of the ContextualTabs class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ContextualTabs.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu"> <summary> <para>Defines the ContextMenu Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:contextMenu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlCloneRegular <mso14:control></description></item> <item><description>ButtonRegular <mso14:button></description></item> <item><description>CheckBox <mso14:checkBox></description></item> <item><description>GalleryRegular <mso14:gallery></description></item> <item><description>ToggleButtonRegular <mso14:toggleButton></description></item> <item><description>SplitButtonRegular <mso14:splitButton></description></item> <item><description>MenuRegular <mso14:menu></description></item> <item><description>DynamicMenuRegular <mso14:dynamicMenu></description></item> <item><description>MenuSeparatorNoTitle <mso14:menuSeparator></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.#ctor"> <summary> Initializes a new instance of the ContextMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContextMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContextMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.#ctor(System.String)"> <summary> Initializes a new instance of the ContextMenu class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenu.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ItemBackstageItem"> <summary> <para>Defines the ItemBackstageItem Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:item.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageItemType"> <summary> Defines the BackstageItemType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageItemType.#ctor"> <summary> Initializes a new instance of the BackstageItemType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageItemType.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageItemType.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageItemType.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ItemBackstageItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ItemBackstageItem.#ctor"> <summary> Initializes a new instance of the ItemBackstageItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ItemBackstageItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ItemBackstageItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ItemBackstageItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.RadioButtonBackstageItem"> <summary> <para>Defines the RadioButtonBackstageItem Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:radioButton.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioButtonBackstageItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioButtonBackstageItem.#ctor"> <summary> Initializes a new instance of the RadioButtonBackstageItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.RadioButtonBackstageItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioButtonBackstageItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.RadioButtonBackstageItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton"> <summary> <para>Defines the BackstageRegularButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.#ctor"> <summary> Initializes a new instance of the BackstageRegularButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.IsDefinitive"> <summary> <para> isDefinitive.</para> <para>Represents the attribte in schema: isDefinitive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageRegularButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu"> <summary> <para>Defines the BackstagePrimaryMenu Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menu.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageMenuGroup <mso14:menuGroup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.#ctor"> <summary> Initializes a new instance of the BackstagePrimaryMenu class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackstagePrimaryMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackstagePrimaryMenu class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.#ctor(System.String)"> <summary> Initializes a new instance of the BackstagePrimaryMenu class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Screentip"> <summary> <para> screentip.</para> <para>Represents the attribte in schema: screentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.GetScreentip"> <summary> <para> getScreentip.</para> <para>Represents the attribte in schema: getScreentip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Supertip"> <summary> <para> supertip.</para> <para>Represents the attribte in schema: supertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.GetSupertip"> <summary> <para> getSupertip.</para> <para>Represents the attribte in schema: getSupertip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstagePrimaryMenu.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup"> <summary> <para>Defines the BackstageMenuGroup Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:menuGroup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageMenuButton <mso14:button></description></item> <item><description>BackstageMenuCheckBox <mso14:checkBox></description></item> <item><description>BackstageSubMenu <mso14:menu></description></item> <item><description>BackstageMenuToggleButton <mso14:toggleButton></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.#ctor"> <summary> Initializes a new instance of the BackstageMenuGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackstageMenuGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackstageMenuGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.#ctor(System.String)"> <summary> Initializes a new instance of the BackstageMenuGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageMenuGroup.ItemSize"> <summary> <para> itemSize.</para> <para>Represents the attribte in schema: itemSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem"> <summary> <para>Defines the PrimaryItem Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:primaryItem.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageRegularButton <mso14:button></description></item> <item><description>BackstagePrimaryMenu <mso14:menu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.#ctor"> <summary> Initializes a new instance of the PrimaryItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PrimaryItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PrimaryItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.#ctor(System.String)"> <summary> Initializes a new instance of the PrimaryItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.BackstageRegularButton"> <summary> <para> BackstageRegularButton.</para> <para>Represents the element tag in schema: mso14:button </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.PrimaryItem.BackstagePrimaryMenu"> <summary> <para> BackstagePrimaryMenu.</para> <para>Represents the element tag in schema: mso14:menu </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls"> <summary> <para>Defines the TopItemsGroupControls Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:topItems.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageGroupButton <mso14:button></description></item> <item><description>BackstageCheckBox <mso14:checkBox></description></item> <item><description>BackstageEditBox <mso14:editBox></description></item> <item><description>BackstageDropDown <mso14:dropDown></description></item> <item><description>RadioGroup <mso14:radioGroup></description></item> <item><description>BackstageComboBox <mso14:comboBox></description></item> <item><description>Hyperlink <mso14:hyperlink></description></item> <item><description>BackstageLabelControl <mso14:labelControl></description></item> <item><description>GroupBox <mso14:groupBox></description></item> <item><description>LayoutContainer <mso14:layoutContainer></description></item> <item><description>ImageControl <mso14:imageControl></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.GroupControlsType"> <summary> Defines the GroupControlsType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageGroupButton <mso14:button></description></item> <item><description>BackstageCheckBox <mso14:checkBox></description></item> <item><description>BackstageEditBox <mso14:editBox></description></item> <item><description>BackstageDropDown <mso14:dropDown></description></item> <item><description>RadioGroup <mso14:radioGroup></description></item> <item><description>BackstageComboBox <mso14:comboBox></description></item> <item><description>Hyperlink <mso14:hyperlink></description></item> <item><description>BackstageLabelControl <mso14:labelControl></description></item> <item><description>GroupBox <mso14:groupBox></description></item> <item><description>LayoutContainer <mso14:layoutContainer></description></item> <item><description>ImageControl <mso14:imageControl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupControlsType.#ctor"> <summary> Initializes a new instance of the GroupControlsType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupControlsType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupControlsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupControlsType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupControlsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.GroupControlsType.#ctor(System.String)"> <summary> Initializes a new instance of the GroupControlsType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls.#ctor"> <summary> Initializes a new instance of the TopItemsGroupControls class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TopItemsGroupControls class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TopItemsGroupControls class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls.#ctor(System.String)"> <summary> Initializes a new instance of the TopItemsGroupControls class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TopItemsGroupControls.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls"> <summary> <para>Defines the BottomItemsGroupControls Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:bottomItems.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageGroupButton <mso14:button></description></item> <item><description>BackstageCheckBox <mso14:checkBox></description></item> <item><description>BackstageEditBox <mso14:editBox></description></item> <item><description>BackstageDropDown <mso14:dropDown></description></item> <item><description>RadioGroup <mso14:radioGroup></description></item> <item><description>BackstageComboBox <mso14:comboBox></description></item> <item><description>Hyperlink <mso14:hyperlink></description></item> <item><description>BackstageLabelControl <mso14:labelControl></description></item> <item><description>GroupBox <mso14:groupBox></description></item> <item><description>LayoutContainer <mso14:layoutContainer></description></item> <item><description>ImageControl <mso14:imageControl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls.#ctor"> <summary> Initializes a new instance of the BottomItemsGroupControls class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BottomItemsGroupControls class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BottomItemsGroupControls class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls.#ctor(System.String)"> <summary> Initializes a new instance of the BottomItemsGroupControls class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BottomItemsGroupControls.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory"> <summary> <para>Defines the TaskGroupCategory Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:category.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TaskGroupTask <mso14:task></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.#ctor"> <summary> Initializes a new instance of the TaskGroupCategory class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TaskGroupCategory class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TaskGroupCategory class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.#ctor(System.String)"> <summary> Initializes a new instance of the TaskGroupCategory class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupCategory.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask"> <summary> <para>Defines the TaskGroupTask Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:task.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.#ctor"> <summary> Initializes a new instance of the TaskGroupTask class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.IsDefinitive"> <summary> <para> isDefinitive.</para> <para>Represents the attribte in schema: isDefinitive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskGroupTask.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory"> <summary> <para>Defines the TaskFormGroupCategory Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:category.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TaskFormGroupTask <mso14:task></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.#ctor"> <summary> Initializes a new instance of the TaskFormGroupCategory class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TaskFormGroupCategory class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TaskFormGroupCategory class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.#ctor(System.String)"> <summary> Initializes a new instance of the TaskFormGroupCategory class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupCategory.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask"> <summary> <para>Defines the TaskFormGroupTask Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:task.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageGroup <mso14:group></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.#ctor"> <summary> Initializes a new instance of the TaskFormGroupTask class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TaskFormGroupTask class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TaskFormGroupTask class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.#ctor(System.String)"> <summary> Initializes a new instance of the TaskFormGroupTask class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.Description"> <summary> <para> description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.GetDescription"> <summary> <para> getDescription.</para> <para>Represents the attribte in schema: getDescription </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroupTask.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup"> <summary> <para>Defines the TaskFormGroup Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:taskFormGroup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TaskFormGroupCategory <mso14:category></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.#ctor"> <summary> Initializes a new instance of the TaskFormGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TaskFormGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TaskFormGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.#ctor(System.String)"> <summary> Initializes a new instance of the TaskFormGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.HelperText"> <summary> <para> helperText.</para> <para>Represents the attribte in schema: helperText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.GetHelperText"> <summary> <para> getHelperText.</para> <para>Represents the attribte in schema: getHelperText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.ShowLabel"> <summary> <para> showLabel.</para> <para>Represents the attribte in schema: showLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.GetShowLabel"> <summary> <para> getShowLabel.</para> <para>Represents the attribte in schema: getShowLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.TaskFormGroup.AllowedTaskSizes"> <summary> <para> allowedTaskSizes.</para> <para>Represents the attribte in schema: allowedTaskSizes </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups"> <summary> <para>Defines the BackstageGroups Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:firstColumn.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TaskFormGroup <mso14:taskFormGroup></description></item> <item><description>BackstageGroup <mso14:group></description></item> <item><description>TaskGroup <mso14:taskGroup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups.#ctor"> <summary> Initializes a new instance of the BackstageGroups class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackstageGroups class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackstageGroups class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups.#ctor(System.String)"> <summary> Initializes a new instance of the BackstageGroups class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageGroups.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups"> <summary> <para>Defines the SimpleGroups Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:secondColumn.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageGroup <mso14:group></description></item> <item><description>TaskGroup <mso14:taskGroup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups.#ctor"> <summary> Initializes a new instance of the SimpleGroups class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SimpleGroups class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SimpleGroups class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups.#ctor(System.String)"> <summary> Initializes a new instance of the SimpleGroups class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.SimpleGroups.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab"> <summary> <para>Defines the BackstageTab Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:tab.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageGroups <mso14:firstColumn></description></item> <item><description>SimpleGroups <mso14:secondColumn></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.#ctor"> <summary> Initializes a new instance of the BackstageTab class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackstageTab class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackstageTab class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.#ctor(System.String)"> <summary> Initializes a new instance of the BackstageTab class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.GetTitle"> <summary> <para> getTitle.</para> <para>Represents the attribte in schema: getTitle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.ColumnWidthPercent"> <summary> <para> columnWidthPercent.</para> <para>Represents the attribte in schema: columnWidthPercent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.FirstColumnMinWidth"> <summary> <para> firstColumnMinWidth.</para> <para>Represents the attribte in schema: firstColumnMinWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.FirstColumnMaxWidth"> <summary> <para> firstColumnMaxWidth.</para> <para>Represents the attribte in schema: firstColumnMaxWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.SecondColumnMinWidth"> <summary> <para> secondColumnMinWidth.</para> <para>Represents the attribte in schema: secondColumnMinWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.SecondColumnMaxWidth"> <summary> <para> secondColumnMaxWidth.</para> <para>Represents the attribte in schema: secondColumnMaxWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.BackstageGroups"> <summary> <para> BackstageGroups.</para> <para>Represents the element tag in schema: mso14:firstColumn </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageTab.SimpleGroups"> <summary> <para> SimpleGroups.</para> <para>Represents the element tag in schema: mso14:secondColumn </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton"> <summary> <para>Defines the BackstageFastCommandButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:button.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.#ctor"> <summary> Initializes a new instance of the BackstageFastCommandButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.IdMso"> <summary> <para> idMso.</para> <para>Represents the attribte in schema: idMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.InsertAfterMso"> <summary> <para> insertAfterMso.</para> <para>Represents the attribte in schema: insertAfterMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.InsertBeforeMso"> <summary> <para> insertBeforeMso.</para> <para>Represents the attribte in schema: insertBeforeMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.InsertAfterQulifiedId"> <summary> <para> insertAfterQ.</para> <para>Represents the attribte in schema: insertAfterQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.InsertBeforeQulifiedId"> <summary> <para> insertBeforeQ.</para> <para>Represents the attribte in schema: insertBeforeQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.QualifiedId"> <summary> <para> idQ.</para> <para>Represents the attribte in schema: idQ </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.Tag"> <summary> <para> tag.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.OnAction"> <summary> <para> onAction.</para> <para>Represents the attribte in schema: onAction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.IsDefinitive"> <summary> <para> isDefinitive.</para> <para>Represents the attribte in schema: isDefinitive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.Enabled"> <summary> <para> enabled.</para> <para>Represents the attribte in schema: enabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.GetEnabled"> <summary> <para> getEnabled.</para> <para>Represents the attribte in schema: getEnabled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.Label"> <summary> <para> label.</para> <para>Represents the attribte in schema: label </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.GetLabel"> <summary> <para> getLabel.</para> <para>Represents the attribte in schema: getLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.GetVisible"> <summary> <para> getVisible.</para> <para>Represents the attribte in schema: getVisible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.Keytip"> <summary> <para> keytip.</para> <para>Represents the attribte in schema: keytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.GetKeytip"> <summary> <para> getKeytip.</para> <para>Represents the attribte in schema: getKeytip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.Image"> <summary> <para> image.</para> <para>Represents the attribte in schema: image </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.ImageMso"> <summary> <para> imageMso.</para> <para>Represents the attribte in schema: imageMso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.BackstageFastCommandButton.GetImage"> <summary> <para> getImage.</para> <para>Represents the attribte in schema: getImage </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Commands"> <summary> <para>Defines the Commands Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:commands.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Command <mso14:command></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Commands.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Commands.#ctor"> <summary> Initializes a new instance of the Commands class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Commands.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Commands class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Commands.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Commands class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Commands.#ctor(System.String)"> <summary> Initializes a new instance of the Commands class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Commands.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Commands.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Commands.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon"> <summary> <para>Defines the Ribbon Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:ribbon.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>QuickAccessToolbar <mso14:qat></description></item> <item><description>Tabs <mso14:tabs></description></item> <item><description>ContextualTabs <mso14:contextualTabs></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.#ctor"> <summary> Initializes a new instance of the Ribbon class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Ribbon class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Ribbon class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.#ctor(System.String)"> <summary> Initializes a new instance of the Ribbon class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.StartFromScratch"> <summary> <para> startFromScratch.</para> <para>Represents the attribte in schema: startFromScratch </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.QuickAccessToolbar"> <summary> <para> QuickAccessToolbar.</para> <para>Represents the element tag in schema: mso14:qat </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.Tabs"> <summary> <para> Tabs.</para> <para>Represents the element tag in schema: mso14:tabs </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Ribbon.ContextualTabs"> <summary> <para> ContextualTabs.</para> <para>Represents the element tag in schema: mso14:contextualTabs </para> </summary> <remark> xmlns:mso14 = http://schemas.microsoft.com/office/2009/07/customui </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage"> <summary> <para>Defines the Backstage Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:backstage.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackstageTab <mso14:tab></description></item> <item><description>BackstageFastCommandButton <mso14:button></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.#ctor"> <summary> Initializes a new instance of the Backstage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Backstage class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Backstage class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.#ctor(System.String)"> <summary> Initializes a new instance of the Backstage class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.OnShow"> <summary> <para> onShow.</para> <para>Represents the attribte in schema: onShow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.Backstage.OnHide"> <summary> <para> onHide.</para> <para>Represents the attribte in schema: onHide </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus"> <summary> <para>Defines the ContextMenus Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is mso14:contextMenus.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ContextMenu <mso14:contextMenu></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus.#ctor"> <summary> Initializes a new instance of the ContextMenus class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContextMenus class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContextMenus class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus.#ctor(System.String)"> <summary> Initializes a new instance of the ContextMenus class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.CustomUI.ContextMenus.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryShowInRibbonValues"> <summary> Defines the GalleryShowInRibbonValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryShowInRibbonValues.False"> <summary> false. <para>When the item is serialized out as xml, its value is "false".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.GalleryShowInRibbonValues.Zero"> <summary> 0. <para>When the item is serialized out as xml, its value is "0".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.SizeValues"> <summary> Defines the SizeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.SizeValues.Normal"> <summary> normal. <para>When the item is serialized out as xml, its value is "normal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.SizeValues.Large"> <summary> large. <para>When the item is serialized out as xml, its value is "large".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ItemSizeValues"> <summary> Defines the ItemSizeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ItemSizeValues.Normal"> <summary> normal. <para>When the item is serialized out as xml, its value is "normal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ItemSizeValues.Large"> <summary> large. <para>When the item is serialized out as xml, its value is "large".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.BoxStyleValues"> <summary> Defines the BoxStyleValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.BoxStyleValues.Horizontal"> <summary> horizontal. <para>When the item is serialized out as xml, its value is "horizontal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.BoxStyleValues.Vertical"> <summary> vertical. <para>When the item is serialized out as xml, its value is "vertical".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.TaskSizesValues"> <summary> Defines the TaskSizesValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.TaskSizesValues.LargeMediumSmall"> <summary> largeMediumSmall. <para>When the item is serialized out as xml, its value is "largeMediumSmall".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.TaskSizesValues.LargeMedium"> <summary> largeMedium. <para>When the item is serialized out as xml, its value is "largeMedium".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.TaskSizesValues.Large"> <summary> large. <para>When the item is serialized out as xml, its value is "large".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.TaskSizesValues.MediumSmall"> <summary> mediumSmall. <para>When the item is serialized out as xml, its value is "mediumSmall".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.TaskSizesValues.Medium"> <summary> medium. <para>When the item is serialized out as xml, its value is "medium".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.TaskSizesValues.Small"> <summary> small. <para>When the item is serialized out as xml, its value is "small".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues"> <summary> Defines the ExpandValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.TopLeft"> <summary> topLeft. <para>When the item is serialized out as xml, its value is "topLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.Top"> <summary> top. <para>When the item is serialized out as xml, its value is "top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.TopRight"> <summary> topRight. <para>When the item is serialized out as xml, its value is "topRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.Left"> <summary> left. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.Center"> <summary> center. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.Right"> <summary> right. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.BottomLeft"> <summary> bottomLeft. <para>When the item is serialized out as xml, its value is "bottomLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.Bottom"> <summary> bottom. <para>When the item is serialized out as xml, its value is "bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.ExpandValues.BottomRight"> <summary> bottomRight. <para>When the item is serialized out as xml, its value is "bottomRight".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.StyleValues"> <summary> Defines the StyleValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.StyleValues.Normal"> <summary> normal. <para>When the item is serialized out as xml, its value is "normal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.StyleValues.Warning"> <summary> warning. <para>When the item is serialized out as xml, its value is "warning".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.StyleValues.Error"> <summary> error. <para>When the item is serialized out as xml, its value is "error".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.Style2Values"> <summary> Defines the Style2Values enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.Style2Values.Normal"> <summary> normal. <para>When the item is serialized out as xml, its value is "normal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.Style2Values.Borderless"> <summary> borderless. <para>When the item is serialized out as xml, its value is "borderless".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.Style2Values.Large"> <summary> large. <para>When the item is serialized out as xml, its value is "large".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutChildrenValues"> <summary> Defines the LayoutChildrenValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutChildrenValues.Horizontal"> <summary> horizontal. <para>When the item is serialized out as xml, its value is "horizontal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.CustomUI.LayoutChildrenValues.Vertical"> <summary> vertical. <para>When the item is serialized out as xml, its value is "vertical".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions"> <summary> <para>Defines the PivotOptions Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:pivotOptions.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DropZoneFilter <c14:dropZoneFilter></description></item> <item><description>DropZoneCategories <c14:dropZoneCategories></description></item> <item><description>DropZoneData <c14:dropZoneData></description></item> <item><description>DropZoneSeries <c14:dropZoneSeries></description></item> <item><description>DropZonesVisible <c14:dropZonesVisible></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.#ctor"> <summary> Initializes a new instance of the PivotOptions class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotOptions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotOptions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.#ctor(System.String)"> <summary> Initializes a new instance of the PivotOptions class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.DropZoneFilter"> <summary> <para> DropZoneFilter.</para> <para>Represents the element tag in schema: c14:dropZoneFilter </para> </summary> <remark> xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.DropZoneCategories"> <summary> <para> DropZoneCategories.</para> <para>Represents the element tag in schema: c14:dropZoneCategories </para> </summary> <remark> xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.DropZoneData"> <summary> <para> DropZoneData.</para> <para>Represents the element tag in schema: c14:dropZoneData </para> </summary> <remark> xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.DropZoneSeries"> <summary> <para> DropZoneSeries.</para> <para>Represents the element tag in schema: c14:dropZoneSeries </para> </summary> <remark> xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions.DropZonesVisible"> <summary> <para> DropZonesVisible.</para> <para>Represents the element tag in schema: c14:dropZonesVisible </para> </summary> <remark> xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions"> <summary> <para>Defines the SketchOptions Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:sketchOptions.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>InSketchMode <c14:inSketchMode></description></item> <item><description>ShowSketchButton <c14:showSketchBtn></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.#ctor"> <summary> Initializes a new instance of the SketchOptions class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SketchOptions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SketchOptions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.#ctor(System.String)"> <summary> Initializes a new instance of the SketchOptions class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.InSketchMode"> <summary> <para> InSketchMode.</para> <para>Represents the element tag in schema: c14:inSketchMode </para> </summary> <remark> xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions.ShowSketchButton"> <summary> <para> ShowSketchButton.</para> <para>Represents the element tag in schema: c14:showSketchBtn </para> </summary> <remark> xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat"> <summary> <para>Defines the InvertSolidFillFormat Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:invertSolidFillFmt.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeProperties <c14:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.#ctor"> <summary> Initializes a new instance of the InvertSolidFillFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the InvertSolidFillFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the InvertSolidFillFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.#ctor(System.String)"> <summary> Initializes a new instance of the InvertSolidFillFormat class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat.ShapeProperties"> <summary> <para> ShapeProperties.</para> <para>Represents the element tag in schema: c14:spPr </para> </summary> <remark> xmlns:c14 = http://schemas.microsoft.com/office/drawing/2007/8/2/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style"> <summary> <para>Defines the Style Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:style.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style.#ctor"> <summary> Initializes a new instance of the Style class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties"> <summary> <para>Defines the ShapeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneFilter"> <summary> <para>Defines the DropZoneFilter Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:dropZoneFilter.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.BooleanFalseType"> <summary> Defines the BooleanFalseType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.BooleanFalseType.#ctor"> <summary> Initializes a new instance of the BooleanFalseType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.BooleanFalseType.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneFilter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneFilter.#ctor"> <summary> Initializes a new instance of the DropZoneFilter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneFilter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneFilter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneFilter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneCategories"> <summary> <para>Defines the DropZoneCategories Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:dropZoneCategories.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneCategories.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneCategories.#ctor"> <summary> Initializes a new instance of the DropZoneCategories class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneCategories.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneCategories.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneCategories.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneData"> <summary> <para>Defines the DropZoneData Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:dropZoneData.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneData.#ctor"> <summary> Initializes a new instance of the DropZoneData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneSeries"> <summary> <para>Defines the DropZoneSeries Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:dropZoneSeries.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneSeries.#ctor"> <summary> Initializes a new instance of the DropZoneSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZoneSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZonesVisible"> <summary> <para>Defines the DropZonesVisible Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:dropZonesVisible.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZonesVisible.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZonesVisible.#ctor"> <summary> Initializes a new instance of the DropZonesVisible class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZonesVisible.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZonesVisible.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.DropZonesVisible.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InSketchMode"> <summary> <para>Defines the InSketchMode Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:inSketchMode.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InSketchMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InSketchMode.#ctor"> <summary> Initializes a new instance of the InSketchMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InSketchMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InSketchMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.InSketchMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShowSketchButton"> <summary> <para>Defines the ShowSketchButton Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is c14:showSketchBtn.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShowSketchButton.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShowSketchButton.#ctor"> <summary> Initializes a new instance of the ShowSketchButton class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShowSketchButton.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShowSketchButton.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShowSketchButton.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Charts.ShowSketchButton.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.Drawing"> <summary> <para>Defines the Drawing Class. It is the root element of DiagramPersistLayoutPart.</para> <para>When the object is serialized out as xml, its qualified name is dsp:drawing.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeTree <dsp:spTree></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.#ctor(DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart)"> <summary> Drawing constructor </summary> <param name="ownerPart">The owner part of the Drawing</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.Load(DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart)"> <summary> Loads the DOM from the DiagramPersistLayoutPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Drawing class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Drawing class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.#ctor(System.String)"> <summary> Initializes a new instance of the Drawing class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.#ctor"> <summary> Initializes a new instance of the Drawing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.Save(DocumentFormat.OpenXml.Packaging.DiagramPersistLayoutPart)"> <summary> Saves the DOM into the DiagramPersistLayoutPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Drawing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Drawing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Drawing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Drawing.DiagramPersistLayoutPart"> <summary> Gets the DiagramPersistLayoutPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Drawing.ShapeTree"> <summary> <para> ShapeTree.</para> <para>Represents the element tag in schema: dsp:spTree </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock"> <summary> <para>Defines the DataModelExtensionBlock Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:dataModelExt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock.#ctor"> <summary> Initializes a new instance of the DataModelExtensionBlock class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock.RelId"> <summary> <para> relId.</para> <para>Represents the attribte in schema: relId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock.MinVer"> <summary> <para> minVer.</para> <para>Represents the attribte in schema: minVer </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.Title"> <summary> <para> title, this property is only available in Office2010.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties"> <summary> <para>Defines the NonVisualDrawingShapeProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:cNvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ShapeLocks <a:spLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.TextBox"> <summary> <para> Text Box.</para> <para>Represents the attribte in schema: txBox </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.ShapeLocks"> <summary> <para> Shape Locks.</para> <para>Represents the element tag in schema: a:spLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualDrawingShapeProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties"> <summary> <para>Defines the ShapeNonVisualProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:nvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <dsp:cNvPr></description></item> <item><description>NonVisualDrawingShapeProperties <dsp:cNvSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.#ctor"> <summary> Initializes a new instance of the ShapeNonVisualProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeNonVisualProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeNonVisualProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeNonVisualProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: dsp:cNvPr </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeNonVisualProperties.NonVisualDrawingShapeProperties"> <summary> <para> NonVisualDrawingShapeProperties.</para> <para>Represents the element tag in schema: dsp:cNvSpPr </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties"> <summary> <para>Defines the ShapeProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle"> <summary> <para>Defines the ShapeStyle Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:style.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.LineReference <a:lnRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FillReference <a:fillRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectReference <a:effectRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FontReference <a:fontRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.#ctor"> <summary> Initializes a new instance of the ShapeStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.LineReference"> <summary> <para> LineReference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.FillReference"> <summary> <para> FillReference.</para> <para>Represents the element tag in schema: a:fillRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.EffectReference"> <summary> <para> EffectReference.</para> <para>Represents the element tag in schema: a:effectRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeStyle.FontReference"> <summary> <para> Font Reference.</para> <para>Represents the element tag in schema: a:fontRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.TextBody"> <summary> <para>Defines the TextBody Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:txBody.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BodyProperties <a:bodyPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ListStyle <a:lstStyle></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Paragraph <a:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.TextBody.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.TextBody.#ctor"> <summary> Initializes a new instance of the TextBody class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.TextBody.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.TextBody.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.TextBody.#ctor(System.String)"> <summary> Initializes a new instance of the TextBody class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.TextBody.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.TextBody.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.TextBody.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.TextBody.BodyProperties"> <summary> <para> Body Properties.</para> <para>Represents the element tag in schema: a:bodyPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.TextBody.ListStyle"> <summary> <para> Text List Styles.</para> <para>Represents the element tag in schema: a:lstStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.Transform2D"> <summary> <para>Defines the Transform2D Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:txXfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Transform2D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Transform2D.#ctor"> <summary> Initializes a new instance of the Transform2D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Transform2D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Transform2D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Transform2D.#ctor(System.String)"> <summary> Initializes a new instance of the Transform2D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Transform2D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Transform2D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Transform2D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Transform2D.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Transform2D.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Transform2D.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Transform2D.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Transform2D.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties"> <summary> <para>Defines the NonVisualGroupDrawingShapeProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:cNvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GroupShapeLocks <a:grpSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupDrawingShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupDrawingShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupDrawingShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupDrawingShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.GroupShapeLocks"> <summary> <para> Group Shape Locks.</para> <para>Represents the element tag in schema: a:grpSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.NonVisualGroupDrawingShapeProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties"> <summary> <para>Defines the GroupShapeNonVisualProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:nvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <dsp:cNvPr></description></item> <item><description>NonVisualGroupDrawingShapeProperties <dsp:cNvGrpSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.#ctor"> <summary> Initializes a new instance of the GroupShapeNonVisualProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeNonVisualProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeNonVisualProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeNonVisualProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: dsp:cNvPr </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeNonVisualProperties.NonVisualGroupDrawingShapeProperties"> <summary> <para> NonVisualGroupDrawingShapeProperties.</para> <para>Represents the element tag in schema: dsp:cNvGrpSpPr </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties"> <summary> <para>Defines the GroupShapeProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:grpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.TransformGroup <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.#ctor"> <summary> Initializes a new instance of the GroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeProperties.TransformGroup"> <summary> <para> 2D Transform for Grouped Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.Shape"> <summary> <para>Defines the Shape Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:sp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeNonVisualProperties <dsp:nvSpPr></description></item> <item><description>ShapeProperties <dsp:spPr></description></item> <item><description>ShapeStyle <dsp:style></description></item> <item><description>TextBody <dsp:txBody></description></item> <item><description>Transform2D <dsp:txXfrm></description></item> <item><description>OfficeArtExtensionList <dsp:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Shape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Shape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Shape.#ctor(System.String)"> <summary> Initializes a new instance of the Shape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.ModelId"> <summary> <para> modelId.</para> <para>Represents the attribte in schema: modelId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.ShapeNonVisualProperties"> <summary> <para> ShapeNonVisualProperties.</para> <para>Represents the element tag in schema: dsp:nvSpPr </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.ShapeProperties"> <summary> <para> ShapeProperties.</para> <para>Represents the element tag in schema: dsp:spPr </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.ShapeStyle"> <summary> <para> ShapeStyle.</para> <para>Represents the element tag in schema: dsp:style </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.TextBody"> <summary> <para> TextBody.</para> <para>Represents the element tag in schema: dsp:txBody </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: dsp:txXfrm </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.Shape.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: dsp:extLst </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.GroupShape"> <summary> <para>Defines the GroupShape Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:grpSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GroupShapeNonVisualProperties <dsp:nvGrpSpPr></description></item> <item><description>GroupShapeProperties <dsp:grpSpPr></description></item> <item><description>Shape <dsp:sp></description></item> <item><description>GroupShape <dsp:grpSp></description></item> <item><description>OfficeArtExtensionList <dsp:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.GroupShapeType"> <summary> Defines the GroupShapeType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GroupShapeNonVisualProperties <dsp:nvGrpSpPr></description></item> <item><description>GroupShapeProperties <dsp:grpSpPr></description></item> <item><description>Shape <dsp:sp></description></item> <item><description>GroupShape <dsp:grpSp></description></item> <item><description>OfficeArtExtensionList <dsp:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeType.#ctor"> <summary> Initializes a new instance of the GroupShapeType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShapeType.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeType.GroupShapeNonVisualProperties"> <summary> <para> GroupShapeNonVisualProperties.</para> <para>Represents the element tag in schema: dsp:nvGrpSpPr </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShapeType.GroupShapeProperties"> <summary> <para> GroupShapeProperties.</para> <para>Represents the element tag in schema: dsp:grpSpPr </para> </summary> <remark> xmlns:dsp = http://schemas.microsoft.com/office/drawing/2008/diagram </remark> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShape.#ctor"> <summary> Initializes a new instance of the GroupShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShape.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.GroupShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.GroupShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Drawing.ShapeTree"> <summary> <para>Defines the ShapeTree Class.</para> <para>When the object is serialized out as xml, its qualified name is dsp:spTree.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GroupShapeNonVisualProperties <dsp:nvGrpSpPr></description></item> <item><description>GroupShapeProperties <dsp:grpSpPr></description></item> <item><description>Shape <dsp:sp></description></item> <item><description>GroupShape <dsp:grpSp></description></item> <item><description>OfficeArtExtensionList <dsp:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeTree.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeTree.#ctor"> <summary> Initializes a new instance of the ShapeTree class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeTree.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeTree class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeTree.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeTree class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeTree.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeTree class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Drawing.ShapeTree.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeTree.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Drawing.ShapeTree.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart"> <summary> <para>Defines the ContentPart Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:contentPart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualContentProperties <cdr14:nvContentPr></description></item> <item><description>NonVisualContentPartProperties <cdr14:nvContentPartPr></description></item> <item><description>ApplicationNonVisualDrawingProperties <cdr14:nvPr></description></item> <item><description>Transform2D <cdr14:xfrm></description></item> <item><description>OfficeArtExtensionList <cdr14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.#ctor"> <summary> Initializes a new instance of the ContentPart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.#ctor(System.String)"> <summary> Initializes a new instance of the ContentPart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.RelationshipId"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.BlackWhiteMode"> <summary> <para> bwMode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.NonVisualContentProperties"> <summary> <para> NonVisualContentProperties.</para> <para>Represents the element tag in schema: cdr14:nvContentPr </para> </summary> <remark> xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.NonVisualContentPartProperties"> <summary> <para> NonVisualContentPartProperties.</para> <para>Represents the element tag in schema: cdr14:nvContentPartPr </para> </summary> <remark> xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.ApplicationNonVisualDrawingProperties"> <summary> <para> ApplicationNonVisualDrawingProperties.</para> <para>Represents the element tag in schema: cdr14:nvPr </para> </summary> <remark> xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: cdr14:xfrm </para> </summary> <remark> xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: cdr14:extLst </para> </summary> <remark> xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties"> <summary> <para>Defines the NonVisualInkProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:cNvInkPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartPropertiesType"> <summary> Defines the NonVisualInkContentPartPropertiesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartPropertiesType.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartPropertiesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartPropertiesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartPropertiesType.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartPropertiesType.IsComment"> <summary> <para> isComment.</para> <para>Represents the attribte in schema: isComment </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartPropertiesType.ContentPartLocks"> <summary> <para> ContentPartLocks.</para> <para>Represents the element tag in schema: a14:cpLocks </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartPropertiesType.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: a14:extLst </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties"> <summary> <para>Defines the NonVisualInkContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:cNvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualInkContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties"> <summary> <para>Defines the NonVisualContentProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:nvContentPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <cdr14:cNvPr></description></item> <item><description>NonVisualInkProperties <cdr14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <cdr14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPartNonVisualType"> <summary> Defines the ContentPartNonVisualType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <cdr14:cNvPr></description></item> <item><description>NonVisualInkProperties <cdr14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <cdr14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPartNonVisualType.#ctor"> <summary> Initializes a new instance of the ContentPartNonVisualType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPartNonVisualType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentPartNonVisualType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPartNonVisualType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentPartNonVisualType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPartNonVisualType.#ctor(System.String)"> <summary> Initializes a new instance of the ContentPartNonVisualType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPartNonVisualType.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: cdr14:cNvPr </para> </summary> <remark> xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPartNonVisualType.NonVisualInkProperties"> <summary> <para> NonVisualInkProperties.</para> <para>Represents the element tag in schema: cdr14:cNvInkPr </para> </summary> <remark> xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPartNonVisualType.NonVisualInkContentPartProperties"> <summary> <para> NonVisualInkContentPartProperties.</para> <para>Represents the element tag in schema: cdr14:cNvContentPartPr </para> </summary> <remark> xmlns:cdr14 = http://schemas.microsoft.com/office/drawing/2010/chartDrawing </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties.#ctor"> <summary> Initializes a new instance of the NonVisualContentProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualContentProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualContentProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualContentProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties"> <summary> <para>Defines the NonVisualContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:nvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <cdr14:cNvPr></description></item> <item><description>NonVisualInkProperties <cdr14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <cdr14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties.#ctor"> <summary> Initializes a new instance of the NonVisualContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.NonVisualContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ApplicationNonVisualDrawingProperties"> <summary> <para>Defines the ApplicationNonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:nvPr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ApplicationNonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ApplicationNonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ApplicationNonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ApplicationNonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ApplicationNonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ApplicationNonVisualDrawingProperties.Macro"> <summary> <para> macro.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ApplicationNonVisualDrawingProperties.Published"> <summary> <para> fPublished.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D"> <summary> <para>Defines the Transform2D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.#ctor"> <summary> Initializes a new instance of the Transform2D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.#ctor(System.String)"> <summary> Initializes a new instance of the Transform2D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.Transform2D.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is cdr14:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.LegacyCompatibility.CompatibilityShape"> <summary> <para>Defines the CompatibilityShape Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is com14:compatSp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.LegacyCompatibility.CompatibilityShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.LegacyCompatibility.CompatibilityShape.#ctor"> <summary> Initializes a new instance of the CompatibilityShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.LegacyCompatibility.CompatibilityShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.LegacyCompatibility.CompatibilityShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.LegacyCompatibility.CompatibilityShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.LegacyCompatibility.CompatibilityShape.ShapeId"> <summary> <para> spid.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is dgm14:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages"> <summary> <para>Defines the RecolorImages Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is dgm14:recolorImg.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages.#ctor"> <summary> Initializes a new instance of the RecolorImages class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.CameraTool"> <summary> <para>Defines the CameraTool Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:cameraTool.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.CameraTool.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.CameraTool.#ctor"> <summary> Initializes a new instance of the CameraTool class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.CameraTool.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.CameraTool.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.CameraTool.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.CameraTool.CellRange"> <summary> <para> cellRange.</para> <para>Represents the attribte in schema: cellRange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.CameraTool.ShapeId"> <summary> <para> spid.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension"> <summary> <para>Defines the CompatExtension Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:compatExt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension.#ctor"> <summary> Initializes a new instance of the CompatExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension.ShapeId"> <summary> <para> spid.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas"> <summary> <para>Defines the IsCanvas Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:isCanvas.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas.#ctor"> <summary> Initializes a new instance of the IsCanvas class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart"> <summary> <para>Defines the GvmlContentPart Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:contentPart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualContentProperties <a14:nvContentPr></description></item> <item><description>NonVisualContentPartProperties <a14:nvContentPartPr></description></item> <item><description>Transform2D <a14:xfrm></description></item> <item><description>OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.#ctor"> <summary> Initializes a new instance of the GvmlContentPart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GvmlContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GvmlContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.#ctor(System.String)"> <summary> Initializes a new instance of the GvmlContentPart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.BlackWhiteMode"> <summary> <para> bwMode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.RelationshipId"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.NonVisualContentProperties"> <summary> <para> NonVisualContentProperties.</para> <para>Represents the element tag in schema: a14:nvContentPr </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.NonVisualContentPartProperties"> <summary> <para> NonVisualContentPartProperties.</para> <para>Represents the element tag in schema: a14:nvContentPartPr </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: a14:xfrm </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: a14:extLst </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured"> <summary> <para>Defines the ShadowObscured Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:shadowObscured.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured.#ctor"> <summary> Initializes a new instance of the ShadowObscured class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties"> <summary> <para>Defines the HiddenFillProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:hiddenFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.#ctor"> <summary> Initializes a new instance of the HiddenFillProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HiddenFillProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HiddenFillProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.#ctor(System.String)"> <summary> Initializes a new instance of the HiddenFillProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.NoFill"> <summary> <para> NoFill.</para> <para>Represents the element tag in schema: a:noFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.SolidFill"> <summary> <para> SolidFill.</para> <para>Represents the element tag in schema: a:solidFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.GradientFill"> <summary> <para> GradientFill.</para> <para>Represents the element tag in schema: a:gradFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.BlipFill"> <summary> <para> BlipFill.</para> <para>Represents the element tag in schema: a:blipFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.PatternFill"> <summary> <para> Pattern Fill.</para> <para>Represents the element tag in schema: a:pattFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties.GroupFill"> <summary> <para> Group Fill.</para> <para>Represents the element tag in schema: a:grpFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties"> <summary> <para>Defines the HiddenLineProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:hiddenLine.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetDash <a:prstDash></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomDash <a:custDash></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Round <a:round></description></item> <item><description>DocumentFormat.OpenXml.Drawing.LineJoinBevel <a:bevel></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Miter <a:miter></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HeadEnd <a:headEnd></description></item> <item><description>DocumentFormat.OpenXml.Drawing.TailEnd <a:tailEnd></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.#ctor"> <summary> Initializes a new instance of the HiddenLineProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HiddenLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HiddenLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.#ctor(System.String)"> <summary> Initializes a new instance of the HiddenLineProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.Width"> <summary> <para> Line Width.</para> <para>Represents the attribte in schema: w </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.CapType"> <summary> <para> Line Ending Cap Type.</para> <para>Represents the attribte in schema: cap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.CompoundLineType"> <summary> <para> Compound Line Type.</para> <para>Represents the attribte in schema: cmpd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties.Alignment"> <summary> <para> Stroke Alignment.</para> <para>Represents the attribte in schema: algn </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties"> <summary> <para>Defines the HiddenEffectsProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:hiddenEffects.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.#ctor"> <summary> Initializes a new instance of the HiddenEffectsProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HiddenEffectsProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HiddenEffectsProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.#ctor(System.String)"> <summary> Initializes a new instance of the HiddenEffectsProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.EffectList"> <summary> <para> Effect Container.</para> <para>Represents the element tag in schema: a:effectLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties.EffectDag"> <summary> <para> Effect Container.</para> <para>Represents the element tag in schema: a:effectDag </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D"> <summary> <para>Defines the HiddenScene3D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:hiddenScene3d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Camera <a:camera></description></item> <item><description>DocumentFormat.OpenXml.Drawing.LightRig <a:lightRig></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Backdrop <a:backdrop></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.#ctor"> <summary> Initializes a new instance of the HiddenScene3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HiddenScene3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HiddenScene3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.#ctor(System.String)"> <summary> Initializes a new instance of the HiddenScene3D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.Camera"> <summary> <para> Camera.</para> <para>Represents the element tag in schema: a:camera </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.LightRig"> <summary> <para> Light Rig.</para> <para>Represents the element tag in schema: a:lightRig </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.Backdrop"> <summary> <para> Backdrop Plane.</para> <para>Represents the element tag in schema: a:backdrop </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D"> <summary> <para>Defines the HiddenShape3D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:hiddenSp3d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BevelTop <a:bevelT></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BevelBottom <a:bevelB></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtrusionColor <a:extrusionClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ContourColor <a:contourClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.#ctor"> <summary> Initializes a new instance of the HiddenShape3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HiddenShape3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HiddenShape3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.#ctor(System.String)"> <summary> Initializes a new instance of the HiddenShape3D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.Z"> <summary> <para> Shape Depth.</para> <para>Represents the attribte in schema: z </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.ExtrusionHeight"> <summary> <para> Extrusion Height.</para> <para>Represents the attribte in schema: extrusionH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.ContourWidth"> <summary> <para> Contour Width.</para> <para>Represents the attribte in schema: contourW </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.PresetMaterial"> <summary> <para> Preset Material Type.</para> <para>Represents the attribte in schema: prstMaterial </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.BevelTop"> <summary> <para> Top Bevel.</para> <para>Represents the element tag in schema: a:bevelT </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.BevelBottom"> <summary> <para> Bottom Bevel.</para> <para>Represents the element tag in schema: a:bevelB </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.ExtrusionColor"> <summary> <para> Extrusion Color.</para> <para>Represents the element tag in schema: a:extrusionClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.ContourColor"> <summary> <para> Contour Color.</para> <para>Represents the element tag in schema: a:contourClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties"> <summary> <para>Defines the ImageProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:imgProps.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ImageLayer <a14:imgLayer></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.#ctor"> <summary> Initializes a new instance of the ImageProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ImageProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ImageProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ImageProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties.ImageLayer"> <summary> <para> ImageLayer.</para> <para>Represents the element tag in schema: a14:imgLayer </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi"> <summary> <para>Defines the UseLocalDpi Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:useLocalDpi.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi.#ctor"> <summary> Initializes a new instance of the UseLocalDpi class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.TextMath"> <summary> <para>Defines the TextMath Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:m.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.TextMath.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.TextMath.#ctor"> <summary> Initializes a new instance of the TextMath class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.TextMath.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.TextMath.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.TextMath.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks"> <summary> <para>Defines the ContentPartLocks Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:cpLocks.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.#ctor"> <summary> Initializes a new instance of the ContentPartLocks class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentPartLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentPartLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.#ctor(System.String)"> <summary> Initializes a new instance of the ContentPartLocks class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoGrouping"> <summary> <para> Disallow Shape Grouping.</para> <para>Represents the attribte in schema: noGrp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoSelection"> <summary> <para> Disallow Shape Selection.</para> <para>Represents the attribte in schema: noSelect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoRotation"> <summary> <para> Disallow Shape Rotation.</para> <para>Represents the attribte in schema: noRot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoChangeAspect"> <summary> <para> Disallow Aspect Ratio Change.</para> <para>Represents the attribte in schema: noChangeAspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoMove"> <summary> <para> Disallow Shape Movement.</para> <para>Represents the attribte in schema: noMove </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoResize"> <summary> <para> Disallow Shape Resize.</para> <para>Represents the attribte in schema: noResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoEditPoints"> <summary> <para> Disallow Shape Point Editing.</para> <para>Represents the attribte in schema: noEditPoints </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoAdjustHandles"> <summary> <para> Disallow Showing Adjust Handles.</para> <para>Represents the attribte in schema: noAdjustHandles </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoChangeArrowheads"> <summary> <para> Disallow Arrowhead Changes.</para> <para>Represents the attribte in schema: noChangeArrowheads </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.NoChangeShapeType"> <summary> <para> Disallow Shape Type Change.</para> <para>Represents the attribte in schema: noChangeShapeType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: a14:extLst </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties"> <summary> <para>Defines the NonVisualInkProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:cNvInkPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ContentPartLocks <a14:cpLocks></description></item> <item><description>OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartPropertiesType"> <summary> Defines the NonVisualInkContentPartPropertiesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ContentPartLocks <a14:cpLocks></description></item> <item><description>OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartPropertiesType.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartPropertiesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartPropertiesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartPropertiesType.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartPropertiesType.IsComment"> <summary> <para> isComment.</para> <para>Represents the attribte in schema: isComment </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartPropertiesType.ContentPartLocks"> <summary> <para> ContentPartLocks.</para> <para>Represents the element tag in schema: a14:cpLocks </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartPropertiesType.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: a14:extLst </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties"> <summary> <para>Defines the NonVisualInkContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:cNvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ContentPartLocks <a14:cpLocks></description></item> <item><description>OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualInkContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties"> <summary> <para>Defines the NonVisualContentProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:nvContentPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <a14:cNvPr></description></item> <item><description>NonVisualInkProperties <a14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <a14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPartNonVisualType"> <summary> Defines the GvmlContentPartNonVisualType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <a14:cNvPr></description></item> <item><description>NonVisualInkProperties <a14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <a14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPartNonVisualType.#ctor"> <summary> Initializes a new instance of the GvmlContentPartNonVisualType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPartNonVisualType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GvmlContentPartNonVisualType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPartNonVisualType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GvmlContentPartNonVisualType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPartNonVisualType.#ctor(System.String)"> <summary> Initializes a new instance of the GvmlContentPartNonVisualType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPartNonVisualType.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: a14:cNvPr </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPartNonVisualType.NonVisualInkProperties"> <summary> <para> NonVisualInkProperties.</para> <para>Represents the element tag in schema: a14:cNvInkPr </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPartNonVisualType.NonVisualInkContentPartProperties"> <summary> <para> NonVisualInkContentPartProperties.</para> <para>Represents the element tag in schema: a14:cNvContentPartPr </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties.#ctor"> <summary> Initializes a new instance of the NonVisualContentProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualContentProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualContentProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualContentProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties"> <summary> <para>Defines the NonVisualContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:nvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <a14:cNvPr></description></item> <item><description>NonVisualInkProperties <a14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <a14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties.#ctor"> <summary> Initializes a new instance of the NonVisualContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.NonVisualContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D"> <summary> <para>Defines the Transform2D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.#ctor"> <summary> Initializes a new instance of the Transform2D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.#ctor(System.String)"> <summary> Initializes a new instance of the Transform2D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Transform2D.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark"> <summary> <para>Defines the ForegroundMark Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:foregroundMark.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.#ctor"> <summary> Initializes a new instance of the ForegroundMark class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.FirstXCoordinate"> <summary> <para> x1.</para> <para>Represents the attribte in schema: x1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.FirstYCoordinate"> <summary> <para> y1.</para> <para>Represents the attribte in schema: y1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.SecondXCoordinate"> <summary> <para> x2.</para> <para>Represents the attribte in schema: x2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ForegroundMark.SecondYCoordinate"> <summary> <para> y2.</para> <para>Represents the attribte in schema: y2 </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark"> <summary> <para>Defines the BackgroundMark Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:backgroundMark.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.#ctor"> <summary> Initializes a new instance of the BackgroundMark class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.FirstXCoordinate"> <summary> <para> x1.</para> <para>Represents the attribte in schema: x1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.FirstYCoordinate"> <summary> <para> y1.</para> <para>Represents the attribte in schema: y1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.SecondXCoordinate"> <summary> <para> x2.</para> <para>Represents the attribte in schema: x2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundMark.SecondYCoordinate"> <summary> <para> y2.</para> <para>Represents the attribte in schema: y2 </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticBlur"> <summary> <para>Defines the ArtisticBlur Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticBlur.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticBlur.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticBlur.#ctor"> <summary> Initializes a new instance of the ArtisticBlur class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticBlur.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticBlur.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticBlur.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticBlur.Radius"> <summary> <para> radius.</para> <para>Represents the attribte in schema: radius </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCement"> <summary> <para>Defines the ArtisticCement Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticCement.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCement.#ctor"> <summary> Initializes a new instance of the ArtisticCement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCement.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCement.CrackSpacing"> <summary> <para> crackSpacing.</para> <para>Represents the attribte in schema: crackSpacing </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticChalkSketch"> <summary> <para>Defines the ArtisticChalkSketch Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticChalkSketch.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticChalkSketch.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticChalkSketch.#ctor"> <summary> Initializes a new instance of the ArtisticChalkSketch class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticChalkSketch.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticChalkSketch.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticChalkSketch.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticChalkSketch.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticChalkSketch.Pressure"> <summary> <para> pressure.</para> <para>Represents the attribte in schema: pressure </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCrisscrossEtching"> <summary> <para>Defines the ArtisticCrisscrossEtching Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticCrisscrossEtching.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCrisscrossEtching.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCrisscrossEtching.#ctor"> <summary> Initializes a new instance of the ArtisticCrisscrossEtching class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCrisscrossEtching.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCrisscrossEtching.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCrisscrossEtching.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCrisscrossEtching.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCrisscrossEtching.Pressure"> <summary> <para> pressure.</para> <para>Represents the attribte in schema: pressure </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCutout"> <summary> <para>Defines the ArtisticCutout Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticCutout.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCutout.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCutout.#ctor"> <summary> Initializes a new instance of the ArtisticCutout class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCutout.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCutout.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCutout.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCutout.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticCutout.NumberOfShades"> <summary> <para> numberOfShades.</para> <para>Represents the attribte in schema: numberOfShades </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticFilmGrain"> <summary> <para>Defines the ArtisticFilmGrain Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticFilmGrain.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticFilmGrain.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticFilmGrain.#ctor"> <summary> Initializes a new instance of the ArtisticFilmGrain class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticFilmGrain.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticFilmGrain.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticFilmGrain.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticFilmGrain.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticFilmGrain.GrainSize"> <summary> <para> grainSize.</para> <para>Represents the attribte in schema: grainSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlass"> <summary> <para>Defines the ArtisticGlass Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticGlass.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlass.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlass.#ctor"> <summary> Initializes a new instance of the ArtisticGlass class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlass.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlass.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlass.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlass.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlass.Scaling"> <summary> <para> scaling.</para> <para>Represents the attribte in schema: scaling </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowDiffused"> <summary> <para>Defines the ArtisticGlowDiffused Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticGlowDiffused.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowDiffused.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowDiffused.#ctor"> <summary> Initializes a new instance of the ArtisticGlowDiffused class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowDiffused.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowDiffused.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowDiffused.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowDiffused.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowDiffused.Intensity"> <summary> <para> intensity.</para> <para>Represents the attribte in schema: intensity </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowEdges"> <summary> <para>Defines the ArtisticGlowEdges Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticGlowEdges.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowEdges.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowEdges.#ctor"> <summary> Initializes a new instance of the ArtisticGlowEdges class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowEdges.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowEdges.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowEdges.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowEdges.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticGlowEdges.Smoothness"> <summary> <para> smoothness.</para> <para>Represents the attribte in schema: smoothness </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLightScreen"> <summary> <para>Defines the ArtisticLightScreen Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticLightScreen.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLightScreen.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLightScreen.#ctor"> <summary> Initializes a new instance of the ArtisticLightScreen class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLightScreen.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLightScreen.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLightScreen.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLightScreen.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLightScreen.GridSize"> <summary> <para> gridSize.</para> <para>Represents the attribte in schema: gridSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLineDrawing"> <summary> <para>Defines the ArtisticLineDrawing Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticLineDrawing.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLineDrawing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLineDrawing.#ctor"> <summary> Initializes a new instance of the ArtisticLineDrawing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLineDrawing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLineDrawing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLineDrawing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLineDrawing.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticLineDrawing.PencilSize"> <summary> <para> pencilSize.</para> <para>Represents the attribte in schema: pencilSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMarker"> <summary> <para>Defines the ArtisticMarker Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticMarker.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMarker.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMarker.#ctor"> <summary> Initializes a new instance of the ArtisticMarker class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMarker.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMarker.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMarker.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMarker.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMarker.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMosaicBubbles"> <summary> <para>Defines the ArtisticMosaicBubbles Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticMosiaicBubbles.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMosaicBubbles.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMosaicBubbles.#ctor"> <summary> Initializes a new instance of the ArtisticMosaicBubbles class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMosaicBubbles.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMosaicBubbles.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMosaicBubbles.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMosaicBubbles.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticMosaicBubbles.Pressure"> <summary> <para> pressure.</para> <para>Represents the attribte in schema: pressure </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintStrokes"> <summary> <para>Defines the ArtisticPaintStrokes Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticPaintStrokes.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintStrokes.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintStrokes.#ctor"> <summary> Initializes a new instance of the ArtisticPaintStrokes class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintStrokes.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintStrokes.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintStrokes.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintStrokes.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintStrokes.Intensity"> <summary> <para> intensity.</para> <para>Represents the attribte in schema: intensity </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintBrush"> <summary> <para>Defines the ArtisticPaintBrush Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticPaintBrush.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintBrush.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintBrush.#ctor"> <summary> Initializes a new instance of the ArtisticPaintBrush class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintBrush.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintBrush.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintBrush.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintBrush.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPaintBrush.BrushSize"> <summary> <para> brushSize.</para> <para>Represents the attribte in schema: brushSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPastelsSmooth"> <summary> <para>Defines the ArtisticPastelsSmooth Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticPastelsSmooth.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPastelsSmooth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPastelsSmooth.#ctor"> <summary> Initializes a new instance of the ArtisticPastelsSmooth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPastelsSmooth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPastelsSmooth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPastelsSmooth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPastelsSmooth.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPastelsSmooth.BrushSize"> <summary> <para> scaling.</para> <para>Represents the attribte in schema: scaling </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilGrayscale"> <summary> <para>Defines the ArtisticPencilGrayscale Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticPencilGrayscale.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilGrayscale.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilGrayscale.#ctor"> <summary> Initializes a new instance of the ArtisticPencilGrayscale class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilGrayscale.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilGrayscale.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilGrayscale.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilGrayscale.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilGrayscale.BrushSize"> <summary> <para> pencilSize.</para> <para>Represents the attribte in schema: pencilSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilSketch"> <summary> <para>Defines the ArtisticPencilSketch Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticPencilSketch.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilSketch.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilSketch.#ctor"> <summary> Initializes a new instance of the ArtisticPencilSketch class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilSketch.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilSketch.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilSketch.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilSketch.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPencilSketch.Pressure"> <summary> <para> pressure.</para> <para>Represents the attribte in schema: pressure </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPhotocopy"> <summary> <para>Defines the ArtisticPhotocopy Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticPhotocopy.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPhotocopy.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPhotocopy.#ctor"> <summary> Initializes a new instance of the ArtisticPhotocopy class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPhotocopy.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPhotocopy.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPhotocopy.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPhotocopy.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPhotocopy.Detail"> <summary> <para> detail.</para> <para>Represents the attribte in schema: detail </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPlasticWrap"> <summary> <para>Defines the ArtisticPlasticWrap Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticPlasticWrap.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPlasticWrap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPlasticWrap.#ctor"> <summary> Initializes a new instance of the ArtisticPlasticWrap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPlasticWrap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPlasticWrap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPlasticWrap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPlasticWrap.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticPlasticWrap.Smoothness"> <summary> <para> smoothness.</para> <para>Represents the attribte in schema: smoothness </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticTexturizer"> <summary> <para>Defines the ArtisticTexturizer Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticTexturizer.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticTexturizer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticTexturizer.#ctor"> <summary> Initializes a new instance of the ArtisticTexturizer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticTexturizer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticTexturizer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticTexturizer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticTexturizer.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticTexturizer.Scaling"> <summary> <para> scaling.</para> <para>Represents the attribte in schema: scaling </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticWatercolorSponge"> <summary> <para>Defines the ArtisticWatercolorSponge Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:artisticWatercolorSponge.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticWatercolorSponge.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticWatercolorSponge.#ctor"> <summary> Initializes a new instance of the ArtisticWatercolorSponge class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticWatercolorSponge.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticWatercolorSponge.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticWatercolorSponge.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticWatercolorSponge.Transparancy"> <summary> <para> trans.</para> <para>Represents the attribte in schema: trans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ArtisticWatercolorSponge.BrushSize"> <summary> <para> brushSize.</para> <para>Represents the attribte in schema: brushSize </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval"> <summary> <para>Defines the BackgroundRemoval Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:backgroundRemoval.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ForegroundMark <a14:foregroundMark></description></item> <item><description>BackgroundMark <a14:backgroundMark></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.#ctor"> <summary> Initializes a new instance of the BackgroundRemoval class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackgroundRemoval class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackgroundRemoval class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.#ctor(System.String)"> <summary> Initializes a new instance of the BackgroundRemoval class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.MarqueeTop"> <summary> <para> t.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.MarqueeBottom"> <summary> <para> b.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.MarqueeLeft"> <summary> <para> l.</para> <para>Represents the attribte in schema: l </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BackgroundRemoval.MarqueeRight"> <summary> <para> r.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.BrightnessContrast"> <summary> <para>Defines the BrightnessContrast Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:brightnessContrast.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BrightnessContrast.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BrightnessContrast.#ctor"> <summary> Initializes a new instance of the BrightnessContrast class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.BrightnessContrast.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BrightnessContrast.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BrightnessContrast.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BrightnessContrast.Bright"> <summary> <para> bright.</para> <para>Represents the attribte in schema: bright </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.BrightnessContrast.Contrast"> <summary> <para> contrast.</para> <para>Represents the attribte in schema: contrast </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ColorTemperature"> <summary> <para>Defines the ColorTemperature Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:colorTemperature.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ColorTemperature.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ColorTemperature.#ctor"> <summary> Initializes a new instance of the ColorTemperature class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ColorTemperature.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ColorTemperature.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ColorTemperature.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ColorTemperature.ColorTemperatureValue"> <summary> <para> colorTemp.</para> <para>Represents the attribte in schema: colorTemp </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Saturation"> <summary> <para>Defines the Saturation Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:saturation.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Saturation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Saturation.#ctor"> <summary> Initializes a new instance of the Saturation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Saturation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Saturation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Saturation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Saturation.SaturationAmount"> <summary> <para> sat.</para> <para>Represents the attribte in schema: sat </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.SharpenSoften"> <summary> <para>Defines the SharpenSoften Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:sharpenSoften.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.SharpenSoften.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.SharpenSoften.#ctor"> <summary> Initializes a new instance of the SharpenSoften class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.SharpenSoften.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.SharpenSoften.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.SharpenSoften.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.SharpenSoften.Amount"> <summary> <para> amount.</para> <para>Represents the attribte in schema: amount </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect"> <summary> <para>Defines the ImageEffect Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:imgEffect.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArtisticBlur <a14:artisticBlur></description></item> <item><description>ArtisticCement <a14:artisticCement></description></item> <item><description>ArtisticChalkSketch <a14:artisticChalkSketch></description></item> <item><description>ArtisticCrisscrossEtching <a14:artisticCrisscrossEtching></description></item> <item><description>ArtisticCutout <a14:artisticCutout></description></item> <item><description>ArtisticFilmGrain <a14:artisticFilmGrain></description></item> <item><description>ArtisticGlass <a14:artisticGlass></description></item> <item><description>ArtisticGlowDiffused <a14:artisticGlowDiffused></description></item> <item><description>ArtisticGlowEdges <a14:artisticGlowEdges></description></item> <item><description>ArtisticLightScreen <a14:artisticLightScreen></description></item> <item><description>ArtisticLineDrawing <a14:artisticLineDrawing></description></item> <item><description>ArtisticMarker <a14:artisticMarker></description></item> <item><description>ArtisticMosaicBubbles <a14:artisticMosiaicBubbles></description></item> <item><description>ArtisticPaintStrokes <a14:artisticPaintStrokes></description></item> <item><description>ArtisticPaintBrush <a14:artisticPaintBrush></description></item> <item><description>ArtisticPastelsSmooth <a14:artisticPastelsSmooth></description></item> <item><description>ArtisticPencilGrayscale <a14:artisticPencilGrayscale></description></item> <item><description>ArtisticPencilSketch <a14:artisticPencilSketch></description></item> <item><description>ArtisticPhotocopy <a14:artisticPhotocopy></description></item> <item><description>ArtisticPlasticWrap <a14:artisticPlasticWrap></description></item> <item><description>ArtisticTexturizer <a14:artisticTexturizer></description></item> <item><description>ArtisticWatercolorSponge <a14:artisticWatercolorSponge></description></item> <item><description>BackgroundRemoval <a14:backgroundRemoval></description></item> <item><description>BrightnessContrast <a14:brightnessContrast></description></item> <item><description>ColorTemperature <a14:colorTemperature></description></item> <item><description>Saturation <a14:saturation></description></item> <item><description>SharpenSoften <a14:sharpenSoften></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.#ctor"> <summary> Initializes a new instance of the ImageEffect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ImageEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ImageEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.#ctor(System.String)"> <summary> Initializes a new instance of the ImageEffect class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.Visible"> <summary> <para> visible.</para> <para>Represents the attribte in schema: visible </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticBlur"> <summary> <para> ArtisticBlur.</para> <para>Represents the element tag in schema: a14:artisticBlur </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticCement"> <summary> <para> ArtisticCement.</para> <para>Represents the element tag in schema: a14:artisticCement </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticChalkSketch"> <summary> <para> ArtisticChalkSketch.</para> <para>Represents the element tag in schema: a14:artisticChalkSketch </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticCrisscrossEtching"> <summary> <para> ArtisticCrisscrossEtching.</para> <para>Represents the element tag in schema: a14:artisticCrisscrossEtching </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticCutout"> <summary> <para> ArtisticCutout.</para> <para>Represents the element tag in schema: a14:artisticCutout </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticFilmGrain"> <summary> <para> ArtisticFilmGrain.</para> <para>Represents the element tag in schema: a14:artisticFilmGrain </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticGlass"> <summary> <para> ArtisticGlass.</para> <para>Represents the element tag in schema: a14:artisticGlass </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticGlowDiffused"> <summary> <para> ArtisticGlowDiffused.</para> <para>Represents the element tag in schema: a14:artisticGlowDiffused </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticGlowEdges"> <summary> <para> ArtisticGlowEdges.</para> <para>Represents the element tag in schema: a14:artisticGlowEdges </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticLightScreen"> <summary> <para> ArtisticLightScreen.</para> <para>Represents the element tag in schema: a14:artisticLightScreen </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticLineDrawing"> <summary> <para> ArtisticLineDrawing.</para> <para>Represents the element tag in schema: a14:artisticLineDrawing </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticMarker"> <summary> <para> ArtisticMarker.</para> <para>Represents the element tag in schema: a14:artisticMarker </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticMosaicBubbles"> <summary> <para> ArtisticMosaicBubbles.</para> <para>Represents the element tag in schema: a14:artisticMosiaicBubbles </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticPaintStrokes"> <summary> <para> ArtisticPaintStrokes.</para> <para>Represents the element tag in schema: a14:artisticPaintStrokes </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticPaintBrush"> <summary> <para> ArtisticPaintBrush.</para> <para>Represents the element tag in schema: a14:artisticPaintBrush </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticPastelsSmooth"> <summary> <para> ArtisticPastelsSmooth.</para> <para>Represents the element tag in schema: a14:artisticPastelsSmooth </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticPencilGrayscale"> <summary> <para> ArtisticPencilGrayscale.</para> <para>Represents the element tag in schema: a14:artisticPencilGrayscale </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticPencilSketch"> <summary> <para> ArtisticPencilSketch.</para> <para>Represents the element tag in schema: a14:artisticPencilSketch </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticPhotocopy"> <summary> <para> ArtisticPhotocopy.</para> <para>Represents the element tag in schema: a14:artisticPhotocopy </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticPlasticWrap"> <summary> <para> ArtisticPlasticWrap.</para> <para>Represents the element tag in schema: a14:artisticPlasticWrap </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticTexturizer"> <summary> <para> ArtisticTexturizer.</para> <para>Represents the element tag in schema: a14:artisticTexturizer </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ArtisticWatercolorSponge"> <summary> <para> ArtisticWatercolorSponge.</para> <para>Represents the element tag in schema: a14:artisticWatercolorSponge </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.BackgroundRemoval"> <summary> <para> BackgroundRemoval.</para> <para>Represents the element tag in schema: a14:backgroundRemoval </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.BrightnessContrast"> <summary> <para> BrightnessContrast.</para> <para>Represents the element tag in schema: a14:brightnessContrast </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.ColorTemperature"> <summary> <para> ColorTemperature.</para> <para>Represents the element tag in schema: a14:colorTemperature </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.Saturation"> <summary> <para> Saturation.</para> <para>Represents the element tag in schema: a14:saturation </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageEffect.SharpenSoften"> <summary> <para> SharpenSoften.</para> <para>Represents the element tag in schema: a14:sharpenSoften </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer"> <summary> <para>Defines the ImageLayer Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a14:imgLayer.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ImageEffect <a14:imgEffect></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.#ctor"> <summary> Initializes a new instance of the ImageLayer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ImageLayer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ImageLayer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.#ctor(System.String)"> <summary> Initializes a new instance of the ImageLayer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.ImageLayer.Embed"> <summary> <para> embed.</para> <para>Represents the attribte in schema: r:embed </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle"> <summary> <para>Defines the ShapeStyle Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is pic14:style.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.LineReference <a:lnRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FillReference <a:fillRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectReference <a:effectRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FontReference <a:fontRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.#ctor"> <summary> Initializes a new instance of the ShapeStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.LineReference"> <summary> <para> LineReference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.FillReference"> <summary> <para> FillReference.</para> <para>Represents the element tag in schema: a:fillRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.EffectReference"> <summary> <para> EffectReference.</para> <para>Represents the element tag in schema: a:effectRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle.FontReference"> <summary> <para> Font Reference.</para> <para>Represents the element tag in schema: a:fontRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is pic14:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer"> <summary> <para>Defines the Slicer Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is sle:slicer.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OfficeArtExtensionList <sle:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.#ctor"> <summary> Initializes a new instance of the Slicer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Slicer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Slicer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.#ctor(System.String)"> <summary> Initializes a new instance of the Slicer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: sle:extLst </para> </summary> <remark> xmlns:sle = http://schemas.microsoft.com/office/drawing/2010/slicer </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is sle:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Drawing.Slicer.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.Macrosheet"> <summary> <para>Defines the Macrosheet Class. It is the root element of MacroSheetPart.</para> <para>When the object is serialized out as xml, its qualified name is xne:macrosheet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.SheetProperties <x:sheetPr></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.SheetDimension <x:dimension></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.SheetViews <x:sheetViews></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.SheetFormatProperties <x:sheetFormatPr></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.Columns <x:cols></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.SheetData <x:sheetData></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.SheetProtection <x:sheetProtection></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.AutoFilter <x:autoFilter></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.SortState <x:sortState></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.DataConsolidate <x:dataConsolidate></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.CustomSheetViews <x:customSheetViews></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.PhoneticProperties <x:phoneticPr></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.ConditionalFormatting <x:conditionalFormatting></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.PrintOptions <x:printOptions></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.PageMargins <x:pageMargins></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.PageSetup <x:pageSetup></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.HeaderFooter <x:headerFooter></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.RowBreaks <x:rowBreaks></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.ColumnBreaks <x:colBreaks></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.CustomProperties <x:customProperties></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.Drawing <x:drawing></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.LegacyDrawing <x:legacyDrawing></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.LegacyDrawingHeaderFooter <x:legacyDrawingHF></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.Picture <x:picture></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.OleObjects <x:oleObjects></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.DrawingHeaderFooter <x:drawingHF></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.#ctor(DocumentFormat.OpenXml.Packaging.MacroSheetPart)"> <summary> Macrosheet constructor </summary> <param name="ownerPart">The owner part of the Macrosheet</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.Load(DocumentFormat.OpenXml.Packaging.MacroSheetPart)"> <summary> Loads the DOM from the MacroSheetPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Macrosheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Macrosheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.#ctor(System.String)"> <summary> Initializes a new instance of the Macrosheet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.#ctor"> <summary> Initializes a new instance of the Macrosheet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.Save(DocumentFormat.OpenXml.Packaging.MacroSheetPart)"> <summary> Saves the DOM into the MacroSheetPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Macrosheet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Macrosheet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Macrosheet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Macrosheet.MacroSheetPart"> <summary> Gets the MacroSheetPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Macrosheet.SheetProperties"> <summary> <para> Sheet Properties.</para> <para>Represents the element tag in schema: x:sheetPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Macrosheet.SheetDimension"> <summary> <para> Macro Sheet Dimensions.</para> <para>Represents the element tag in schema: x:dimension </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Macrosheet.SheetViews"> <summary> <para> Macro Sheet Views.</para> <para>Represents the element tag in schema: x:sheetViews </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Macrosheet.SheetFormatProperties"> <summary> <para> Sheet Format Properties.</para> <para>Represents the element tag in schema: x:sheetFormatPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap"> <summary> <para>Worksheet Sort Map. It is the root element of WorksheetSortMapPart.</para> <para>When the object is serialized out as xml, its qualified name is xne:worksheetSortMap.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RowSortMap <xne:rowSortMap></description></item> <item><description>ColumnSortMap <xne:colSortMap></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.#ctor(DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart)"> <summary> WorksheetSortMap constructor </summary> <param name="ownerPart">The owner part of the WorksheetSortMap</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.Load(DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart)"> <summary> Loads the DOM from the WorksheetSortMapPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WorksheetSortMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WorksheetSortMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.#ctor(System.String)"> <summary> Initializes a new instance of the WorksheetSortMap class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.#ctor"> <summary> Initializes a new instance of the WorksheetSortMap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.Save(DocumentFormat.OpenXml.Packaging.WorksheetSortMapPart)"> <summary> Saves the DOM into the WorksheetSortMapPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.WorksheetSortMapPart"> <summary> Gets the WorksheetSortMapPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.RowSortMap"> <summary> <para> Row Sort Map.</para> <para>Represents the element tag in schema: xne:rowSortMap </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.WorksheetSortMap.ColumnSortMap"> <summary> <para> Column Sort Map.</para> <para>Represents the element tag in schema: xne:colSortMap </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.ReferenceSequence"> <summary> <para>Defines the ReferenceSequence Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xne:sqref.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ReferenceSequence.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ReferenceSequence.#ctor"> <summary> Initializes a new instance of the ReferenceSequence class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ReferenceSequence.#ctor(System.String)"> <summary> Initializes a new instance of the ReferenceSequence class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ReferenceSequence.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.ReferenceSequence.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.ReferenceSequence.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.Formula"> <summary> <para>Defines the Formula Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xne:f.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Formula.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Formula.#ctor"> <summary> Initializes a new instance of the Formula class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Formula.#ctor(System.String)"> <summary> Initializes a new instance of the Formula class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.Formula.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Formula.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.Formula.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.RowSortMap"> <summary> <para>Row Sort Map.</para> <para>When the object is serialized out as xml, its qualified name is xne:rowSortMap.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RowSortMapItem <xne:row></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMap.#ctor"> <summary> Initializes a new instance of the RowSortMap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMap.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RowSortMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMap.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RowSortMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMap.#ctor(System.String)"> <summary> Initializes a new instance of the RowSortMap class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.RowSortMap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.RowSortMap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.RowSortMap.Ref"> <summary> <para> Reference.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.RowSortMap.Count"> <summary> <para> Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap"> <summary> <para>Column Sort Map.</para> <para>When the object is serialized out as xml, its qualified name is xne:colSortMap.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColumnSortMapItem <xne:col></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.#ctor"> <summary> Initializes a new instance of the ColumnSortMap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColumnSortMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColumnSortMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.#ctor(System.String)"> <summary> Initializes a new instance of the ColumnSortMap class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.Ref"> <summary> <para> Reference.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.ColumnSortMap.Count"> <summary> <para> Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.RowSortMapItem"> <summary> <para>Row.</para> <para>When the object is serialized out as xml, its qualified name is xne:row.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.SortMapItemType"> <summary> Defines the SortMapItemType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.SortMapItemType.#ctor"> <summary> Initializes a new instance of the SortMapItemType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.SortMapItemType.NewVal"> <summary> <para> New Value.</para> <para>Represents the attribte in schema: newVal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.SortMapItemType.OldVal"> <summary> <para> Old Value.</para> <para>Represents the attribte in schema: oldVal </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMapItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMapItem.#ctor"> <summary> Initializes a new instance of the RowSortMapItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.RowSortMapItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.RowSortMapItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.RowSortMapItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Excel.ColumnSortMapItem"> <summary> <para>Column.</para> <para>When the object is serialized out as xml, its qualified name is xne:col.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMapItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMapItem.#ctor"> <summary> Initializes a new instance of the ColumnSortMapItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Excel.ColumnSortMapItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.ColumnSortMapItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Excel.ColumnSortMapItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart"> <summary> <para>Defines the ContentPart Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:contentPart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExcelNonVisualContentPartProperties <xdr14:nvContentPr></description></item> <item><description>ExcelNonVisualContentPartShapeProperties <xdr14:nvContentPartPr></description></item> <item><description>ApplicationNonVisualDrawingProperties <xdr14:nvPr></description></item> <item><description>Transform2D <xdr14:xfrm></description></item> <item><description>OfficeArtExtensionList <xdr14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.#ctor"> <summary> Initializes a new instance of the ContentPart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.#ctor(System.String)"> <summary> Initializes a new instance of the ContentPart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.RelationshipId"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.BlackWhiteMode"> <summary> <para> bwMode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.ExcelNonVisualContentPartProperties"> <summary> <para> ExcelNonVisualContentPartProperties.</para> <para>Represents the element tag in schema: xdr14:nvContentPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.ExcelNonVisualContentPartShapeProperties"> <summary> <para> ExcelNonVisualContentPartShapeProperties.</para> <para>Represents the element tag in schema: xdr14:nvContentPartPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.ApplicationNonVisualDrawingProperties"> <summary> <para> ApplicationNonVisualDrawingProperties.</para> <para>Represents the element tag in schema: xdr14:nvPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: xdr14:xfrm </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: xdr14:extLst </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties"> <summary> <para>Defines the NonVisualInkProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:cNvInkPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartPropertiesType"> <summary> Defines the NonVisualInkContentPartPropertiesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartPropertiesType.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartPropertiesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartPropertiesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartPropertiesType.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartPropertiesType.IsComment"> <summary> <para> isComment.</para> <para>Represents the attribte in schema: isComment </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartPropertiesType.ContentPartLocks"> <summary> <para> ContentPartLocks.</para> <para>Represents the element tag in schema: a14:cpLocks </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartPropertiesType.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: a14:extLst </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties"> <summary> <para>Defines the NonVisualInkContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:cNvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.NonVisualInkContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties"> <summary> <para>Defines the ExcelNonVisualContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:nvContentPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <xdr14:cNvPr></description></item> <item><description>NonVisualInkProperties <xdr14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <xdr14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPartNonVisualType"> <summary> Defines the ContentPartNonVisualType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <xdr14:cNvPr></description></item> <item><description>NonVisualInkProperties <xdr14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <xdr14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPartNonVisualType.#ctor"> <summary> Initializes a new instance of the ContentPartNonVisualType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPartNonVisualType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentPartNonVisualType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPartNonVisualType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentPartNonVisualType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPartNonVisualType.#ctor(System.String)"> <summary> Initializes a new instance of the ContentPartNonVisualType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPartNonVisualType.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: xdr14:cNvPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPartNonVisualType.NonVisualInkProperties"> <summary> <para> NonVisualInkProperties.</para> <para>Represents the element tag in schema: xdr14:cNvInkPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPartNonVisualType.NonVisualInkContentPartProperties"> <summary> <para> NonVisualInkContentPartProperties.</para> <para>Represents the element tag in schema: xdr14:cNvContentPartPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties.#ctor"> <summary> Initializes a new instance of the ExcelNonVisualContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExcelNonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExcelNonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ExcelNonVisualContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties"> <summary> <para>Defines the ExcelNonVisualContentPartShapeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:nvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <xdr14:cNvPr></description></item> <item><description>NonVisualInkProperties <xdr14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <xdr14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties.#ctor"> <summary> Initializes a new instance of the ExcelNonVisualContentPartShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExcelNonVisualContentPartShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExcelNonVisualContentPartShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ExcelNonVisualContentPartShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties"> <summary> <para>Defines the ApplicationNonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:nvPr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties.Macro"> <summary> <para> macro.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties.PublishedFlag"> <summary> <para> fPublished.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D"> <summary> <para>Defines the Transform2D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.#ctor"> <summary> Initializes a new instance of the Transform2D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.#ctor(System.String)"> <summary> Initializes a new instance of the Transform2D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr14:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties"> <summary> <para>Defines the NonVisualContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:nvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <p14:cNvPr></description></item> <item><description>NonVisualInkContentPartProperties <p14:cNvContentPartPr></description></item> <item><description>ApplicationNonVisualDrawingProperties <p14:nvPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.#ctor"> <summary> Initializes a new instance of the NonVisualContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: p14:cNvPr </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.NonVisualInkContentPartProperties"> <summary> <para> NonVisualInkContentPartProperties.</para> <para>Represents the element tag in schema: p14:cNvContentPartPr </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties.ApplicationNonVisualDrawingProperties"> <summary> <para> ApplicationNonVisualDrawingProperties.</para> <para>Represents the element tag in schema: p14:nvPr </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D"> <summary> <para>Defines the Transform2D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.#ctor"> <summary> Initializes a new instance of the Transform2D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.#ctor(System.String)"> <summary> Initializes a new instance of the Transform2D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify"> <summary> <para>Defines the ExtensionListModify Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Presentation.Extension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.#ctor"> <summary> Initializes a new instance of the ExtensionListModify class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionListModify class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionListModify class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionListModify class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify.Modify"> <summary> <para> Modify.</para> <para>Represents the attribte in schema: mod </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.Media"> <summary> <para>Defines the Media Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:media.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MediaTrim <p14:trim></description></item> <item><description>MediaFade <p14:fade></description></item> <item><description>MediaBookmarkList <p14:bmkLst></description></item> <item><description>ExtensionList <p14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.#ctor"> <summary> Initializes a new instance of the Media class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Media class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Media class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.#ctor(System.String)"> <summary> Initializes a new instance of the Media class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.Embed"> <summary> <para> Embedded Picture Reference.</para> <para>Represents the attribte in schema: r:embed </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.Link"> <summary> <para> Linked Picture Reference.</para> <para>Represents the attribte in schema: r:link </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.MediaTrim"> <summary> <para> MediaTrim.</para> <para>Represents the element tag in schema: p14:trim </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.MediaFade"> <summary> <para> MediaFade.</para> <para>Represents the element tag in schema: p14:fade </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.MediaBookmarkList"> <summary> <para> MediaBookmarkList.</para> <para>Represents the element tag in schema: p14:bmkLst </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Media.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p14:extLst </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.VortexTransition"> <summary> <para>Defines the VortexTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:vortex.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.SideDirectionTransitionType"> <summary> Defines the SideDirectionTransitionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SideDirectionTransitionType.#ctor"> <summary> Initializes a new instance of the SideDirectionTransitionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SideDirectionTransitionType.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.VortexTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.VortexTransition.#ctor"> <summary> Initializes a new instance of the VortexTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.VortexTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.VortexTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.VortexTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.PanTransition"> <summary> <para>Defines the PanTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:pan.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PanTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PanTransition.#ctor"> <summary> Initializes a new instance of the PanTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PanTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PanTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PanTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.SwitchTransition"> <summary> <para>Defines the SwitchTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:switch.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.LeftRightDirectionTransitionType"> <summary> Defines the LeftRightDirectionTransitionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LeftRightDirectionTransitionType.#ctor"> <summary> Initializes a new instance of the LeftRightDirectionTransitionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LeftRightDirectionTransitionType.Direction"> <summary> <para> dir.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SwitchTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SwitchTransition.#ctor"> <summary> Initializes a new instance of the SwitchTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SwitchTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SwitchTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SwitchTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.FlipTransition"> <summary> <para>Defines the FlipTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:flip.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlipTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlipTransition.#ctor"> <summary> Initializes a new instance of the FlipTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlipTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FlipTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FlipTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.FerrisTransition"> <summary> <para>Defines the FerrisTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:ferris.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FerrisTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FerrisTransition.#ctor"> <summary> Initializes a new instance of the FerrisTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FerrisTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FerrisTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FerrisTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.GalleryTransition"> <summary> <para>Defines the GalleryTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:gallery.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.GalleryTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.GalleryTransition.#ctor"> <summary> Initializes a new instance of the GalleryTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.GalleryTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.GalleryTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.GalleryTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ConveyorTransition"> <summary> <para>Defines the ConveyorTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:conveyor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ConveyorTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ConveyorTransition.#ctor"> <summary> Initializes a new instance of the ConveyorTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ConveyorTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ConveyorTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ConveyorTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition"> <summary> <para>Defines the RippleTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:ripple.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition.#ctor"> <summary> Initializes a new instance of the RippleTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition.Direction"> <summary> <para> dir.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.HoneycombTransition"> <summary> <para>Defines the HoneycombTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:honeycomb.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.EmptyType"> <summary> Defines the EmptyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.EmptyType.#ctor"> <summary> Initializes a new instance of the EmptyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.HoneycombTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.HoneycombTransition.#ctor"> <summary> Initializes a new instance of the HoneycombTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.HoneycombTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.HoneycombTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.HoneycombTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.FlashTransition"> <summary> <para>Defines the FlashTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:flash.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlashTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlashTransition.#ctor"> <summary> Initializes a new instance of the FlashTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlashTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FlashTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FlashTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition"> <summary> <para>Defines the PrismTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:prism.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition.#ctor"> <summary> Initializes a new instance of the PrismTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition.Direction"> <summary> <para> dir.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition.IsContent"> <summary> <para> isContent.</para> <para>Represents the attribte in schema: isContent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition.IsInverted"> <summary> <para> isInverted.</para> <para>Represents the attribte in schema: isInverted </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.DoorsTransition"> <summary> <para>Defines the DoorsTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:doors.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.OrientationTransitionType"> <summary> Defines the OrientationTransitionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.OrientationTransitionType.#ctor"> <summary> Initializes a new instance of the OrientationTransitionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.OrientationTransitionType.Direction"> <summary> <para> Transition Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DoorsTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DoorsTransition.#ctor"> <summary> Initializes a new instance of the DoorsTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DoorsTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.DoorsTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.DoorsTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.WindowTransition"> <summary> <para>Defines the WindowTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:window.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WindowTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WindowTransition.#ctor"> <summary> Initializes a new instance of the WindowTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WindowTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.WindowTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.WindowTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition"> <summary> <para>Defines the GlitterTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:glitter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition.#ctor"> <summary> Initializes a new instance of the GlitterTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition.Direction"> <summary> <para> dir.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition.Pattern"> <summary> <para> pattern.</para> <para>Represents the attribte in schema: pattern </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition"> <summary> <para>Defines the WarpTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:warp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition.#ctor"> <summary> Initializes a new instance of the WarpTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition"> <summary> <para>Defines the FlythroughTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:flythrough.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition.#ctor"> <summary> Initializes a new instance of the FlythroughTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition.Direction"> <summary> <para> dir.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition.HasBounce"> <summary> <para> hasBounce.</para> <para>Represents the attribte in schema: hasBounce </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition"> <summary> <para>Defines the ShredTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:shred.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition.#ctor"> <summary> Initializes a new instance of the ShredTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition.Pattern"> <summary> <para> pattern.</para> <para>Represents the attribte in schema: pattern </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition.Direction"> <summary> <para> dir.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition"> <summary> <para>Defines the RevealTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:reveal.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition.#ctor"> <summary> Initializes a new instance of the RevealTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition.ThroughBlack"> <summary> <para> thruBlk.</para> <para>Represents the attribte in schema: thruBlk </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition.Direction"> <summary> <para> dir.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition"> <summary> <para>Defines the WheelReverseTransition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:wheelReverse.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition.#ctor"> <summary> Initializes a new instance of the WheelReverseTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition.Spokes"> <summary> <para> Spokes.</para> <para>Represents the attribte in schema: spokes </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget"> <summary> <para>Defines the BookmarkTarget Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:bmkTgt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget.#ctor"> <summary> Initializes a new instance of the BookmarkTarget class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget.ShapeId"> <summary> <para> spid.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget.BookmarkName"> <summary> <para> bmkName.</para> <para>Represents the attribte in schema: bmkName </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties"> <summary> <para>Defines the SectionProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:sectionPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SectionOld <p14:section></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties.#ctor"> <summary> Initializes a new instance of the SectionProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SectionProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SectionProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties.#ctor(System.String)"> <summary> Initializes a new instance of the SectionProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList"> <summary> <para>Defines the SectionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:sectionLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Section <p14:section></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList.#ctor"> <summary> Initializes a new instance of the SectionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SectionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SectionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList.#ctor(System.String)"> <summary> Initializes a new instance of the SectionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode"> <summary> <para>Defines the BrowseMode Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:browseMode.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode.#ctor"> <summary> Initializes a new instance of the BrowseMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode.ShowStatus"> <summary> <para> showStatus.</para> <para>Represents the attribte in schema: showStatus </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor"> <summary> <para>Defines the LaserColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:laserClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.#ctor"> <summary> Initializes a new instance of the LaserColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LaserColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LaserColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.#ctor(System.String)"> <summary> Initializes a new instance of the LaserColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi"> <summary> <para>Defines the DefaultImageDpi Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:defaultImageDpi.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi.#ctor"> <summary> Initializes a new instance of the DefaultImageDpi class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData"> <summary> <para>Defines the DiscardImageEditData Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:discardImageEditData.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData.#ctor"> <summary> Initializes a new instance of the DiscardImageEditData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls"> <summary> <para>Defines the ShowMediaControls Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:showMediaCtrls.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls.#ctor"> <summary> Initializes a new instance of the ShowMediaControls class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList"> <summary> <para>Defines the LaserTraceList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:laserTraceLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TracePointList <p14:tracePtLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList.#ctor"> <summary> Initializes a new instance of the LaserTraceList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LaserTraceList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LaserTraceList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList.#ctor(System.String)"> <summary> Initializes a new instance of the LaserTraceList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.CreationId"> <summary> <para>Defines the CreationId Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:creationId.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.RandomIdType"> <summary> Defines the RandomIdType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.RandomIdType.#ctor"> <summary> Initializes a new instance of the RandomIdType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.RandomIdType.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.CreationId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.CreationId.#ctor"> <summary> Initializes a new instance of the CreationId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.CreationId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.CreationId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.CreationId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ModificationId"> <summary> <para>Defines the ModificationId Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:modId.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ModificationId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ModificationId.#ctor"> <summary> Initializes a new instance of the ModificationId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ModificationId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ModificationId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ModificationId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList"> <summary> <para>Defines the ShowEventRecordList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:showEvtLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TriggerEventRecord <p14:triggerEvt></description></item> <item><description>PlayEventRecord <p14:playEvt></description></item> <item><description>StopEventRecord <p14:stopEvt></description></item> <item><description>PauseEventRecord <p14:pauseEvt></description></item> <item><description>ResumeEventRecord <p14:resumeEvt></description></item> <item><description>SeekEventRecord <p14:seekEvt></description></item> <item><description>NullEventRecord <p14:nullEvt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.#ctor"> <summary> Initializes a new instance of the ShowEventRecordList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShowEventRecordList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShowEventRecordList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.#ctor(System.String)"> <summary> Initializes a new instance of the ShowEventRecordList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.TriggerEventRecord"> <summary> <para> TriggerEventRecord.</para> <para>Represents the element tag in schema: p14:triggerEvt </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.PlayEventRecord"> <summary> <para> PlayEventRecord.</para> <para>Represents the element tag in schema: p14:playEvt </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.StopEventRecord"> <summary> <para> StopEventRecord.</para> <para>Represents the element tag in schema: p14:stopEvt </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.PauseEventRecord"> <summary> <para> PauseEventRecord.</para> <para>Represents the element tag in schema: p14:pauseEvt </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.ResumeEventRecord"> <summary> <para> ResumeEventRecord.</para> <para>Represents the element tag in schema: p14:resumeEvt </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.SeekEventRecord"> <summary> <para> SeekEventRecord.</para> <para>Represents the element tag in schema: p14:seekEvt </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList.NullEventRecord"> <summary> <para> NullEventRecord.</para> <para>Represents the element tag in schema: p14:nullEvt </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties"> <summary> <para>Defines the NonVisualInkContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:cNvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.IsComment"> <summary> <para> isComment.</para> <para>Represents the attribte in schema: isComment </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.ContentPartLocks"> <summary> <para> ContentPartLocks.</para> <para>Represents the element tag in schema: a14:cpLocks </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualInkContentPartProperties.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: a14:extLst </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties"> <summary> <para>Defines the ApplicationNonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:nvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Presentation.PlaceholderShape <p:ph></description></item> <item><description>DocumentFormat.OpenXml.Drawing.AudioFromCD <a:audioCd></description></item> <item><description>DocumentFormat.OpenXml.Drawing.WaveAudioFile <a:wavAudioFile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.AudioFromFile <a:audioFile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.VideoFromFile <a:videoFile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.QuickTimeFromFile <a:quickTimeFile></description></item> <item><description>DocumentFormat.OpenXml.Presentation.CustomerDataList <p:custDataLst></description></item> <item><description>DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.IsPhoto"> <summary> <para> Is a Photo Album.</para> <para>Represents the attribte in schema: isPhoto </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.UserDrawn"> <summary> <para> Is User Drawn.</para> <para>Represents the attribte in schema: userDrawn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ApplicationNonVisualDrawingProperties.PlaceholderShape"> <summary> <para> Placeholder Shape.</para> <para>Represents the element tag in schema: p:ph </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmark"> <summary> <para>Defines the MediaBookmark Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:bmk.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmark.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmark.#ctor"> <summary> Initializes a new instance of the MediaBookmark class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmark.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmark.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmark.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmark.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmark.Time"> <summary> <para> time.</para> <para>Represents the attribte in schema: time </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaTrim"> <summary> <para>Defines the MediaTrim Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:trim.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaTrim.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaTrim.#ctor"> <summary> Initializes a new instance of the MediaTrim class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaTrim.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaTrim.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaTrim.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaTrim.Start"> <summary> <para> st.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaTrim.End"> <summary> <para> end.</para> <para>Represents the attribte in schema: end </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaFade"> <summary> <para>Defines the MediaFade Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:fade.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaFade.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaFade.#ctor"> <summary> Initializes a new instance of the MediaFade class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaFade.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaFade.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaFade.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaFade.InDuration"> <summary> <para> in.</para> <para>Represents the attribte in schema: in </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaFade.OutDuration"> <summary> <para> out.</para> <para>Represents the attribte in schema: out </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList"> <summary> <para>Defines the MediaBookmarkList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:bmkLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MediaBookmark <p14:bmk></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList.#ctor"> <summary> Initializes a new instance of the MediaBookmarkList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MediaBookmarkList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MediaBookmarkList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList.#ctor(System.String)"> <summary> Initializes a new instance of the MediaBookmarkList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaBookmarkList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList"> <summary> <para>Defines the ExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Presentation.Extension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList.#ctor"> <summary> Initializes a new instance of the ExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld"> <summary> <para>Defines the SectionOld Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:section.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.#ctor"> <summary> Initializes a new instance of the SectionOld class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SectionOld class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SectionOld class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.#ctor(System.String)"> <summary> Initializes a new instance of the SectionOld class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.SlideIdList"> <summary> <para> slideIdLst.</para> <para>Represents the attribte in schema: slideIdLst </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionOld.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p14:extLst </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdListEntry"> <summary> <para>Defines the SectionSlideIdListEntry Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:sldId.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdListEntry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdListEntry.#ctor"> <summary> Initializes a new instance of the SectionSlideIdListEntry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdListEntry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdListEntry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdListEntry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdListEntry.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList"> <summary> <para>Defines the SectionSlideIdList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:sldIdLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SectionSlideIdListEntry <p14:sldId></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList.#ctor"> <summary> Initializes a new instance of the SectionSlideIdList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SectionSlideIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SectionSlideIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList.#ctor(System.String)"> <summary> Initializes a new instance of the SectionSlideIdList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SectionSlideIdList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.Section"> <summary> <para>Defines the Section Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:section.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SectionSlideIdList <p14:sldIdLst></description></item> <item><description>ExtensionList <p14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.#ctor"> <summary> Initializes a new instance of the Section class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Section class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Section class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.#ctor(System.String)"> <summary> Initializes a new instance of the Section class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.SectionSlideIdList"> <summary> <para> SectionSlideIdList.</para> <para>Represents the element tag in schema: p14:sldIdLst </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.Section.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p14:extLst </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint"> <summary> <para>Defines the TracePoint Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:tracePt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint.#ctor"> <summary> Initializes a new instance of the TracePoint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint.Time"> <summary> <para> t.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint.XCoordinate"> <summary> <para> x.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePoint.YCoordinate"> <summary> <para> y.</para> <para>Represents the attribte in schema: y </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList"> <summary> <para>Defines the TracePointList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:tracePtLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TracePoint <p14:tracePt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList.#ctor"> <summary> Initializes a new instance of the TracePointList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TracePointList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TracePointList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList.#ctor(System.String)"> <summary> Initializes a new instance of the TracePointList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TracePointList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord"> <summary> <para>Defines the TriggerEventRecord Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:triggerEvt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord.#ctor"> <summary> Initializes a new instance of the TriggerEventRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord.Time"> <summary> <para> time.</para> <para>Represents the attribte in schema: time </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.TriggerEventRecord.ObjectId"> <summary> <para> objId.</para> <para>Represents the attribte in schema: objId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.PlayEventRecord"> <summary> <para>Defines the PlayEventRecord Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:playEvt.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaPlaybackEventRecordType"> <summary> Defines the MediaPlaybackEventRecordType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaPlaybackEventRecordType.#ctor"> <summary> Initializes a new instance of the MediaPlaybackEventRecordType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaPlaybackEventRecordType.Time"> <summary> <para> time.</para> <para>Represents the attribte in schema: time </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.MediaPlaybackEventRecordType.ObjectId"> <summary> <para> objId.</para> <para>Represents the attribte in schema: objId </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PlayEventRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PlayEventRecord.#ctor"> <summary> Initializes a new instance of the PlayEventRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PlayEventRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PlayEventRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PlayEventRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.StopEventRecord"> <summary> <para>Defines the StopEventRecord Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:stopEvt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.StopEventRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.StopEventRecord.#ctor"> <summary> Initializes a new instance of the StopEventRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.StopEventRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.StopEventRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.StopEventRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.PauseEventRecord"> <summary> <para>Defines the PauseEventRecord Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:pauseEvt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PauseEventRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PauseEventRecord.#ctor"> <summary> Initializes a new instance of the PauseEventRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.PauseEventRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PauseEventRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.PauseEventRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.ResumeEventRecord"> <summary> <para>Defines the ResumeEventRecord Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:resumeEvt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ResumeEventRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ResumeEventRecord.#ctor"> <summary> Initializes a new instance of the ResumeEventRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.ResumeEventRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ResumeEventRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.ResumeEventRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord"> <summary> <para>Defines the SeekEventRecord Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:seekEvt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord.#ctor"> <summary> Initializes a new instance of the SeekEventRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord.Time"> <summary> <para> time.</para> <para>Represents the attribte in schema: time </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord.ObjectId"> <summary> <para> objId.</para> <para>Represents the attribte in schema: objId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.SeekEventRecord.Seek"> <summary> <para> seek.</para> <para>Represents the attribte in schema: seek </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.NullEventRecord"> <summary> <para>Defines the NullEventRecord Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p14:nullEvt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NullEventRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NullEventRecord.#ctor"> <summary> Initializes a new instance of the NullEventRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.PowerPoint.NullEventRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NullEventRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NullEventRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NullEventRecord.Time"> <summary> <para> time.</para> <para>Represents the attribte in schema: time </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.PowerPoint.NullEventRecord.ObjectId"> <summary> <para> objId.</para> <para>Represents the attribte in schema: objId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionPatternValues"> <summary> Defines the TransitionPatternValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionPatternValues.Diamond"> <summary> diamond. <para>When the item is serialized out as xml, its value is "diamond".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionPatternValues.Hexagon"> <summary> hexagon. <para>When the item is serialized out as xml, its value is "hexagon".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionCenterDirectionTypeValues"> <summary> Defines the TransitionCenterDirectionTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionCenterDirectionTypeValues.Center"> <summary> center. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionShredPatternValues"> <summary> Defines the TransitionShredPatternValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionShredPatternValues.Strip"> <summary> strip. <para>When the item is serialized out as xml, its value is "strip".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionShredPatternValues.Rectangle"> <summary> rectangle. <para>When the item is serialized out as xml, its value is "rectangle".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionLeftRightDirectionTypeValues"> <summary> Defines the TransitionLeftRightDirectionTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionLeftRightDirectionTypeValues.Left"> <summary> l. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.PowerPoint.TransitionLeftRightDirectionTypeValues.Right"> <summary> r. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings"> <summary> <para>Defines the ConditionalFormattings Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:conditionalFormattings.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ConditionalFormatting <x14:conditionalFormatting></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings.#ctor"> <summary> Initializes a new instance of the ConditionalFormattings class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConditionalFormattings class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConditionalFormattings class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings.#ctor(System.String)"> <summary> Initializes a new instance of the ConditionalFormattings class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattings.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataValidations"> <summary> <para>Defines the DataValidations Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:dataValidations.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataValidation <x14:dataValidation></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.#ctor"> <summary> Initializes a new instance of the DataValidations class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataValidations class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataValidations class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.#ctor(System.String)"> <summary> Initializes a new instance of the DataValidations class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.DisablePrompts"> <summary> <para> disablePrompts.</para> <para>Represents the attribte in schema: disablePrompts </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.XWindow"> <summary> <para> xWindow.</para> <para>Represents the attribte in schema: xWindow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.YWindow"> <summary> <para> yWindow.</para> <para>Represents the attribte in schema: yWindow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidations.Count"> <summary> <para> count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups"> <summary> <para>Defines the SparklineGroups Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:sparklineGroups.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SparklineGroup <x14:sparklineGroup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups.#ctor"> <summary> Initializes a new instance of the SparklineGroups class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SparklineGroups class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SparklineGroups class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups.#ctor(System.String)"> <summary> Initializes a new instance of the SparklineGroups class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroups.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerList"> <summary> <para>Defines the SlicerList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicerList.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlicerRef <x14:slicer></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerList.#ctor"> <summary> Initializes a new instance of the SlicerList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlicerList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlicerList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerList.#ctor(System.String)"> <summary> Initializes a new instance of the SlicerList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges"> <summary> <para>Defines the ProtectedRanges Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:protectedRanges.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ProtectedRange <x14:protectedRange></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges.#ctor"> <summary> Initializes a new instance of the ProtectedRanges class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ProtectedRanges class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ProtectedRanges class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges.#ctor(System.String)"> <summary> Initializes a new instance of the ProtectedRanges class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRanges.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors"> <summary> <para>Defines the IgnoredErrors Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:ignoredErrors.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>IgnoredError <x14:ignoredError></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors.#ctor"> <summary> Initializes a new instance of the IgnoredErrors class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the IgnoredErrors class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the IgnoredErrors class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors.#ctor(System.String)"> <summary> Initializes a new instance of the IgnoredErrors class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredErrors.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames"> <summary> <para>Defines the DefinedNames Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:definedNames.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DefinedName <x14:definedName></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames.#ctor"> <summary> Initializes a new instance of the DefinedNames class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DefinedNames class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DefinedNames class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames.#ctor(System.String)"> <summary> Initializes a new instance of the DefinedNames class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DefinedNames.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches"> <summary> <para>Defines the PivotCaches Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotCaches.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.PivotCache <x:pivotCache></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches.#ctor"> <summary> Initializes a new instance of the PivotCaches class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotCaches class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotCaches class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches.#ctor(System.String)"> <summary> Initializes a new instance of the PivotCaches class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCaches.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches"> <summary> <para>Defines the SlicerCaches Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicerCaches.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlicerCache <x14:slicerCache></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches.#ctor"> <summary> Initializes a new instance of the SlicerCaches class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlicerCaches class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlicerCaches class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches.#ctor(System.String)"> <summary> Initializes a new instance of the SlicerCaches class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCaches.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties"> <summary> <para>Defines the WorkbookProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:workbookPr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties.#ctor"> <summary> Initializes a new instance of the WorkbookProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties.DefaultImageDpi"> <summary> <para> defaultImageDpi.</para> <para>Represents the attribte in schema: defaultImageDpi </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties.DiscardImageEditData"> <summary> <para> discardImageEditData.</para> <para>Represents the attribte in schema: discardImageEditData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.WorkbookProperties.AccuracyVersion"> <summary> <para> accuracyVersion.</para> <para>Represents the attribte in schema: accuracyVersion </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember"> <summary> <para>Defines the CalculatedMember Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:calculatedMember.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TupleSet <x14:tupleSet></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.#ctor"> <summary> Initializes a new instance of the CalculatedMember class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CalculatedMember class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CalculatedMember class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.#ctor(System.String)"> <summary> Initializes a new instance of the CalculatedMember class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.DisplayFolder"> <summary> <para> displayFolder.</para> <para>Represents the attribte in schema: displayFolder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.FlattenHierarchies"> <summary> <para> flattenHierarchies.</para> <para>Represents the attribte in schema: flattenHierarchies </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.DynamicSet"> <summary> <para> dynamicSet.</para> <para>Represents the attribte in schema: dynamicSet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.HierarchizeDistinct"> <summary> <para> hierarchizeDistinct.</para> <para>Represents the attribte in schema: hierarchizeDistinct </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.MdxLong"> <summary> <para> mdxLong.</para> <para>Represents the attribte in schema: mdxLong </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMember.TupleSet"> <summary> <para> TupleSet.</para> <para>Represents the element tag in schema: x14:tupleSet </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy"> <summary> <para>Defines the CacheHierarchy Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:cacheHierarchy.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SetLevels <x14:setLevels></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.#ctor"> <summary> Initializes a new instance of the CacheHierarchy class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CacheHierarchy class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CacheHierarchy class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.#ctor(System.String)"> <summary> Initializes a new instance of the CacheHierarchy class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.FlattenHierarchies"> <summary> <para> flattenHierarchies.</para> <para>Represents the attribte in schema: flattenHierarchies </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.MeasuresSet"> <summary> <para> measuresSet.</para> <para>Represents the attribte in schema: measuresSet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.HierarchizeDistinct"> <summary> <para> hierarchizeDistinct.</para> <para>Represents the attribte in schema: hierarchizeDistinct </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.Ignore"> <summary> <para> ignore.</para> <para>Represents the attribte in schema: ignore </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheHierarchy.SetLevels"> <summary> <para> SetLevels.</para> <para>Represents the element tag in schema: x14:setLevels </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataField"> <summary> <para>Defines the DataField Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:dataField.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataField.#ctor"> <summary> Initializes a new instance of the DataField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataField.PivotShowAs"> <summary> <para> pivotShowAs.</para> <para>Represents the attribte in schema: pivotShowAs </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataField.SourceField"> <summary> <para> sourceField.</para> <para>Represents the attribte in schema: sourceField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataField.UniqueName"> <summary> <para> uniqueName.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotField"> <summary> <para>Defines the PivotField Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotField.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotField.#ctor"> <summary> Initializes a new instance of the PivotField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotField.FillDownLabels"> <summary> <para> fillDownLabels.</para> <para>Represents the attribte in schema: fillDownLabels </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotField.Ignore"> <summary> <para> ignore.</para> <para>Represents the attribte in schema: ignore </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition"> <summary> <para>Defines the PivotTableDefinition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotTableDefinition.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotEdits <x14:pivotEdits></description></item> <item><description>PivotChanges <x14:pivotChanges></description></item> <item><description>ConditionalFormats <x14:conditionalFormats></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.#ctor"> <summary> Initializes a new instance of the PivotTableDefinition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotTableDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotTableDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.#ctor(System.String)"> <summary> Initializes a new instance of the PivotTableDefinition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.FillDownLabelsDefault"> <summary> <para> fillDownLabelsDefault.</para> <para>Represents the attribte in schema: fillDownLabelsDefault </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.VisualTotalsForSets"> <summary> <para> visualTotalsForSets.</para> <para>Represents the attribte in schema: visualTotalsForSets </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.CalculatedMembersInFilters"> <summary> <para> calculatedMembersInFilters.</para> <para>Represents the attribte in schema: calculatedMembersInFilters </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.AltText"> <summary> <para> altText.</para> <para>Represents the attribte in schema: altText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.AltTextSummary"> <summary> <para> altTextSummary.</para> <para>Represents the attribte in schema: altTextSummary </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.EnableEdit"> <summary> <para> enableEdit.</para> <para>Represents the attribte in schema: enableEdit </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.AutoApply"> <summary> <para> autoApply.</para> <para>Represents the attribte in schema: autoApply </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.AllocationMethod"> <summary> <para> allocationMethod.</para> <para>Represents the attribte in schema: allocationMethod </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.WeightExpression"> <summary> <para> weightExpression.</para> <para>Represents the attribte in schema: weightExpression </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.HideValuesRow"> <summary> <para> hideValuesRow.</para> <para>Represents the attribte in schema: hideValuesRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.PivotEdits"> <summary> <para> PivotEdits.</para> <para>Represents the element tag in schema: x14:pivotEdits </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.PivotChanges"> <summary> <para> PivotChanges.</para> <para>Represents the element tag in schema: x14:pivotChanges </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotTableDefinition.ConditionalFormats"> <summary> <para> ConditionalFormats.</para> <para>Represents the element tag in schema: x14:conditionalFormats </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition"> <summary> <para>Defines the PivotCacheDefinition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotCacheDefinition.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.#ctor"> <summary> Initializes a new instance of the PivotCacheDefinition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.SlicerData"> <summary> <para> slicerData.</para> <para>Represents the attribte in schema: slicerData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.PivotCacheId"> <summary> <para> pivotCacheId.</para> <para>Represents the attribte in schema: pivotCacheId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.SupportSubqueryNonVisual"> <summary> <para> supportSubqueryNonVisual.</para> <para>Represents the attribte in schema: supportSubqueryNonVisual </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.SupportSubqueryCalcMem"> <summary> <para> supportSubqueryCalcMem.</para> <para>Represents the attribte in schema: supportSubqueryCalcMem </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotCacheDefinition.SupportAddCalcMems"> <summary> <para> supportAddCalcMems.</para> <para>Represents the attribte in schema: supportAddCalcMems </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Connection"> <summary> <para>Defines the Connection Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:connection.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CalculatedMembers <x14:calculatedMembers></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Connection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Connection.#ctor"> <summary> Initializes a new instance of the Connection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Connection.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Connection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Connection.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Connection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Connection.#ctor(System.String)"> <summary> Initializes a new instance of the Connection class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Connection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Connection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Connection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Connection.Culture"> <summary> <para> culture.</para> <para>Represents the attribte in schema: culture </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Connection.EmbeddedDataId"> <summary> <para> embeddedDataId.</para> <para>Represents the attribte in schema: embeddedDataId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Connection.CalculatedMembers"> <summary> <para> CalculatedMembers.</para> <para>Represents the element tag in schema: x14:calculatedMembers </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Table"> <summary> <para>Defines the Table Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:table.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Table.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Table.#ctor"> <summary> Initializes a new instance of the Table class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Table.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Table.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Table.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Table.AltText"> <summary> <para> altText.</para> <para>Represents the attribte in schema: altText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Table.AltTextSummary"> <summary> <para> altTextSummary.</para> <para>Represents the attribte in schema: altTextSummary </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles"> <summary> <para>Defines the SlicerStyles Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicerStyles.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlicerStyle <x14:slicerStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.#ctor"> <summary> Initializes a new instance of the SlicerStyles class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlicerStyles class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlicerStyles class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.#ctor(System.String)"> <summary> Initializes a new instance of the SlicerStyles class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyles.DefaultSlicerStyle"> <summary> <para> defaultSlicerStyle.</para> <para>Represents the attribte in schema: defaultSlicerStyle </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats"> <summary> <para>Defines the DifferentialFormats Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:dxfs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.DifferentialFormat <x:dxf></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.#ctor"> <summary> Initializes a new instance of the DifferentialFormats class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DifferentialFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DifferentialFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.#ctor(System.String)"> <summary> Initializes a new instance of the DifferentialFormats class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialFormats.Count"> <summary> <para> Format Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OleItem"> <summary> <para>Defines the OleItem Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:oleItem.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DdeValues <x14:values></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OleItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OleItem.#ctor"> <summary> Initializes a new instance of the OleItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OleItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OleItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OleItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OleItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OleItem.#ctor(System.String)"> <summary> Initializes a new instance of the OleItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OleItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OleItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OleItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OleItem.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OleItem.Icon"> <summary> <para> icon.</para> <para>Represents the attribte in schema: icon </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OleItem.Advise"> <summary> <para> advise.</para> <para>Represents the attribte in schema: advise </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OleItem.PreferPicture"> <summary> <para> preferPic.</para> <para>Represents the attribte in schema: preferPic </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OleItem.DdeValues"> <summary> <para> DdeValues.</para> <para>Represents the element tag in schema: x14:values </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotHierarchy"> <summary> <para>Defines the PivotHierarchy Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotHierarchy.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotHierarchy.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotHierarchy.#ctor"> <summary> Initializes a new instance of the PivotHierarchy class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotHierarchy.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotHierarchy.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotHierarchy.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotHierarchy.Ignore"> <summary> <para> ignore.</para> <para>Represents the attribte in schema: ignore </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.CacheField"> <summary> <para>Defines the CacheField Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:cacheField.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheField.#ctor"> <summary> Initializes a new instance of the CacheField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CacheField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CacheField.Ignore"> <summary> <para> ignore.</para> <para>Represents the attribte in schema: ignore </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Id"> <summary> <para>Defines the Id Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:id.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Id.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Id.#ctor"> <summary> Initializes a new instance of the Id class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Id.#ctor(System.String)"> <summary> Initializes a new instance of the Id class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Id.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Id.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Id.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.IconFilter"> <summary> <para>Defines the IconFilter Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:iconFilter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconFilter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconFilter.#ctor"> <summary> Initializes a new instance of the IconFilter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconFilter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconFilter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconFilter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconFilter.IconSet"> <summary> <para> iconSet.</para> <para>Represents the attribte in schema: iconSet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconFilter.IconId"> <summary> <para> iconId.</para> <para>Represents the attribte in schema: iconId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Filter"> <summary> <para>Defines the Filter Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:filter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Filter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Filter.#ctor"> <summary> Initializes a new instance of the Filter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Filter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Filter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Filter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Filter.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters"> <summary> <para>Defines the CustomFilters Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:customFilters.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CustomFilter <x14:customFilter></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.#ctor"> <summary> Initializes a new instance of the CustomFilters class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomFilters class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomFilters class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.#ctor(System.String)"> <summary> Initializes a new instance of the CustomFilters class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CustomFilters.And"> <summary> <para> and.</para> <para>Represents the attribte in schema: and </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SortCondition"> <summary> <para>Defines the SortCondition Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:sortCondition.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.#ctor"> <summary> Initializes a new instance of the SortCondition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.Descending"> <summary> <para> descending.</para> <para>Represents the attribte in schema: descending </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.SortBy"> <summary> <para> sortBy.</para> <para>Represents the attribte in schema: sortBy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.Reference"> <summary> <para> ref.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.CustomList"> <summary> <para> customList.</para> <para>Represents the attribte in schema: customList </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.FormatId"> <summary> <para> dxfId.</para> <para>Represents the attribte in schema: dxfId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.IconSet"> <summary> <para> iconSet.</para> <para>Represents the attribte in schema: iconSet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SortCondition.IconId"> <summary> <para> iconId.</para> <para>Represents the attribte in schema: iconId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SourceConnection"> <summary> <para>Defines the SourceConnection Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:sourceConnection.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SourceConnection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SourceConnection.#ctor"> <summary> Initializes a new instance of the SourceConnection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SourceConnection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SourceConnection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SourceConnection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SourceConnection.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem"> <summary> <para>Defines the DatastoreItem Class. It is the root element of CustomDataPropertiesPart.</para> <para>When the object is serialized out as xml, its qualified name is x14:datastoreItem.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.#ctor(DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart)"> <summary> DatastoreItem constructor </summary> <param name="ownerPart">The owner part of the DatastoreItem</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.Load(DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart)"> <summary> Loads the DOM from the CustomDataPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DatastoreItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DatastoreItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.#ctor(System.String)"> <summary> Initializes a new instance of the DatastoreItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.#ctor"> <summary> Initializes a new instance of the DatastoreItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.Save(DocumentFormat.OpenXml.Packaging.CustomDataPropertiesPart)"> <summary> Saves the DOM into the CustomDataPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.CustomDataPropertiesPart"> <summary> Gets the CustomDataPropertiesPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DatastoreItem.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties"> <summary> <para>Defines the FormControlProperties Class. It is the root element of ControlPropertiesPart.</para> <para>When the object is serialized out as xml, its qualified name is x14:formControlPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ListItems <x14:itemLst></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.#ctor(DocumentFormat.OpenXml.Packaging.ControlPropertiesPart)"> <summary> FormControlProperties constructor </summary> <param name="ownerPart">The owner part of the FormControlProperties</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Load(DocumentFormat.OpenXml.Packaging.ControlPropertiesPart)"> <summary> Loads the DOM from the ControlPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FormControlProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FormControlProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.#ctor(System.String)"> <summary> Initializes a new instance of the FormControlProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.#ctor"> <summary> Initializes a new instance of the FormControlProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Save(DocumentFormat.OpenXml.Packaging.ControlPropertiesPart)"> <summary> Saves the DOM into the ControlPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.ObjectType"> <summary> <para> objectType.</para> <para>Represents the attribte in schema: objectType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Checked"> <summary> <para> checked.</para> <para>Represents the attribte in schema: checked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Colored"> <summary> <para> colored.</para> <para>Represents the attribte in schema: colored </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.DropLines"> <summary> <para> dropLines.</para> <para>Represents the attribte in schema: dropLines </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.DropStyle"> <summary> <para> dropStyle.</para> <para>Represents the attribte in schema: dropStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.ScrollBarWidth"> <summary> <para> dx.</para> <para>Represents the attribte in schema: dx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.FirstButton"> <summary> <para> firstButton.</para> <para>Represents the attribte in schema: firstButton </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.FmlaGroup"> <summary> <para> fmlaGroup.</para> <para>Represents the attribte in schema: fmlaGroup </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.FmlaLink"> <summary> <para> fmlaLink.</para> <para>Represents the attribte in schema: fmlaLink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.FmlaRange"> <summary> <para> fmlaRange.</para> <para>Represents the attribte in schema: fmlaRange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.FmlaTextbox"> <summary> <para> fmlaTxbx.</para> <para>Represents the attribte in schema: fmlaTxbx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Horizontal"> <summary> <para> horiz.</para> <para>Represents the attribte in schema: horiz </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Incremental"> <summary> <para> inc.</para> <para>Represents the attribte in schema: inc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.JustLastX"> <summary> <para> justLastX.</para> <para>Represents the attribte in schema: justLastX </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.LockText"> <summary> <para> lockText.</para> <para>Represents the attribte in schema: lockText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Max"> <summary> <para> max.</para> <para>Represents the attribte in schema: max </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Min"> <summary> <para> min.</para> <para>Represents the attribte in schema: min </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.MultipleSelection"> <summary> <para> multiSel.</para> <para>Represents the attribte in schema: multiSel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.NoThreeD"> <summary> <para> noThreeD.</para> <para>Represents the attribte in schema: noThreeD </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.NoThreeD2"> <summary> <para> noThreeD2.</para> <para>Represents the attribte in schema: noThreeD2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Page"> <summary> <para> page.</para> <para>Represents the attribte in schema: page </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Selected"> <summary> <para> sel.</para> <para>Represents the attribte in schema: sel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.SelectionType"> <summary> <para> seltype.</para> <para>Represents the attribte in schema: seltype </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.TextHorizontalAlign"> <summary> <para> textHAlign.</para> <para>Represents the attribte in schema: textHAlign </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.TextVerticalAlign"> <summary> <para> textVAlign.</para> <para>Represents the attribte in schema: textVAlign </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.MinimumWidth"> <summary> <para> widthMin.</para> <para>Represents the attribte in schema: widthMin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.EditVal"> <summary> <para> editVal.</para> <para>Represents the attribte in schema: editVal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.MultipleLines"> <summary> <para> multiLine.</para> <para>Represents the attribte in schema: multiLine </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.VerticalBar"> <summary> <para> verticalBar.</para> <para>Represents the attribte in schema: verticalBar </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.PasswordEdit"> <summary> <para> passwordEdit.</para> <para>Represents the attribte in schema: passwordEdit </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.ControlPropertiesPart"> <summary> Gets the ControlPropertiesPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.ListItems"> <summary> <para> ListItems.</para> <para>Represents the element tag in schema: x14:itemLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FormControlProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Slicers"> <summary> <para>Defines the Slicers Class. It is the root element of SlicersPart.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicers.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Slicer <x14:slicer></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.#ctor(DocumentFormat.OpenXml.Packaging.SlicersPart)"> <summary> Slicers constructor </summary> <param name="ownerPart">The owner part of the Slicers</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.Load(DocumentFormat.OpenXml.Packaging.SlicersPart)"> <summary> Loads the DOM from the SlicersPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Slicers class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Slicers class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.#ctor(System.String)"> <summary> Initializes a new instance of the Slicers class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.#ctor"> <summary> Initializes a new instance of the Slicers class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.Save(DocumentFormat.OpenXml.Packaging.SlicersPart)"> <summary> Saves the DOM into the SlicersPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicers.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicers.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicers.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicers.SlicersPart"> <summary> Gets the SlicersPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition"> <summary> <para>Defines the SlicerCacheDefinition Class. It is the root element of SlicerCachePart.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicerCacheDefinition.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlicerCachePivotTables <x14:pivotTables></description></item> <item><description>SlicerCacheData <x14:data></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.#ctor(DocumentFormat.OpenXml.Packaging.SlicerCachePart)"> <summary> SlicerCacheDefinition constructor </summary> <param name="ownerPart">The owner part of the SlicerCacheDefinition</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.Load(DocumentFormat.OpenXml.Packaging.SlicerCachePart)"> <summary> Loads the DOM from the SlicerCachePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlicerCacheDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlicerCacheDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.#ctor(System.String)"> <summary> Initializes a new instance of the SlicerCacheDefinition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.#ctor"> <summary> Initializes a new instance of the SlicerCacheDefinition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.Save(DocumentFormat.OpenXml.Packaging.SlicerCachePart)"> <summary> Saves the DOM into the SlicerCachePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.SourceName"> <summary> <para> sourceName.</para> <para>Represents the attribte in schema: sourceName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.SlicerCachePart"> <summary> Gets the SlicerCachePart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.SlicerCachePivotTables"> <summary> <para> SlicerCachePivotTables.</para> <para>Represents the element tag in schema: x14:pivotTables </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.SlicerCacheData"> <summary> <para> SlicerCacheData.</para> <para>Represents the element tag in schema: x14:data </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheDefinition.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting"> <summary> <para>Defines the ConditionalFormatting Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:conditionalFormatting.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ConditionalFormattingRule <x14:cfRule></description></item> <item><description>DocumentFormat.OpenXml.Office.Excel.ReferenceSequence <xne:sqref></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.#ctor"> <summary> Initializes a new instance of the ConditionalFormatting class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConditionalFormatting class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConditionalFormatting class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.#ctor(System.String)"> <summary> Initializes a new instance of the ConditionalFormatting class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormatting.Pivot"> <summary> <para> pivot.</para> <para>Represents the attribte in schema: pivot </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule"> <summary> <para>Defines the ConditionalFormattingRule Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:cfRule.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.Formula <xne:f></description></item> <item><description>ColorScale <x14:colorScale></description></item> <item><description>DataBar <x14:dataBar></description></item> <item><description>IconSet <x14:iconSet></description></item> <item><description>DifferentialType <x14:dxf></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.#ctor"> <summary> Initializes a new instance of the ConditionalFormattingRule class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConditionalFormattingRule class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConditionalFormattingRule class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.#ctor(System.String)"> <summary> Initializes a new instance of the ConditionalFormattingRule class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.Priority"> <summary> <para> priority.</para> <para>Represents the attribte in schema: priority </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.StopIfTrue"> <summary> <para> stopIfTrue.</para> <para>Represents the attribte in schema: stopIfTrue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.AboveAverage"> <summary> <para> aboveAverage.</para> <para>Represents the attribte in schema: aboveAverage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.Percent"> <summary> <para> percent.</para> <para>Represents the attribte in schema: percent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.Bottom"> <summary> <para> bottom.</para> <para>Represents the attribte in schema: bottom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.Operator"> <summary> <para> operator.</para> <para>Represents the attribte in schema: operator </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.Text"> <summary> <para> text.</para> <para>Represents the attribte in schema: text </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.TimePeriod"> <summary> <para> timePeriod.</para> <para>Represents the attribte in schema: timePeriod </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.Rank"> <summary> <para> rank.</para> <para>Represents the attribte in schema: rank </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.StandardDeviation"> <summary> <para> stdDev.</para> <para>Represents the attribte in schema: stdDev </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.EqualAverage"> <summary> <para> equalAverage.</para> <para>Represents the attribte in schema: equalAverage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.ActivePresent"> <summary> <para> activePresent.</para> <para>Represents the attribte in schema: activePresent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingRule.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList"> <summary> <para>Defines the ExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.Extension <x:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList.#ctor"> <summary> Initializes a new instance of the ExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataValidation"> <summary> <para>Defines the DataValidation Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:dataValidation.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataValidationForumla1 <x14:formula1></description></item> <item><description>DataValidationForumla2 <x14:formula2></description></item> <item><description>DocumentFormat.OpenXml.Office.Excel.ReferenceSequence <xne:sqref></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.#ctor"> <summary> Initializes a new instance of the DataValidation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataValidation class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataValidation class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.#ctor(System.String)"> <summary> Initializes a new instance of the DataValidation class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.ErrorStyle"> <summary> <para> errorStyle.</para> <para>Represents the attribte in schema: errorStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.ImeMode"> <summary> <para> imeMode.</para> <para>Represents the attribte in schema: imeMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.Operator"> <summary> <para> operator.</para> <para>Represents the attribte in schema: operator </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.AllowBlank"> <summary> <para> allowBlank.</para> <para>Represents the attribte in schema: allowBlank </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.ShowDropDown"> <summary> <para> showDropDown.</para> <para>Represents the attribte in schema: showDropDown </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.ShowInputMessage"> <summary> <para> showInputMessage.</para> <para>Represents the attribte in schema: showInputMessage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.ShowErrorMessage"> <summary> <para> showErrorMessage.</para> <para>Represents the attribte in schema: showErrorMessage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.ErrorTitle"> <summary> <para> errorTitle.</para> <para>Represents the attribte in schema: errorTitle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.Error"> <summary> <para> error.</para> <para>Represents the attribte in schema: error </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.PromptTitle"> <summary> <para> promptTitle.</para> <para>Represents the attribte in schema: promptTitle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.Prompt"> <summary> <para> prompt.</para> <para>Represents the attribte in schema: prompt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.DataValidationForumla1"> <summary> <para> DataValidationForumla1.</para> <para>Represents the element tag in schema: x14:formula1 </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.DataValidationForumla2"> <summary> <para> DataValidationForumla2.</para> <para>Represents the element tag in schema: x14:formula2 </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidation.ReferenceSequence"> <summary> <para> ReferenceSequence.</para> <para>Represents the element tag in schema: xne:sqref </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1"> <summary> <para>Defines the DataValidationForumla1 Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:formula1.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.Formula <xne:f></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataValidationFormulaType"> <summary> Defines the DataValidationFormulaType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.Formula <xne:f></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationFormulaType.#ctor"> <summary> Initializes a new instance of the DataValidationFormulaType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationFormulaType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataValidationFormulaType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationFormulaType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataValidationFormulaType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationFormulaType.#ctor(System.String)"> <summary> Initializes a new instance of the DataValidationFormulaType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidationFormulaType.Formula"> <summary> <para> Formula.</para> <para>Represents the element tag in schema: xne:f </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1.#ctor"> <summary> Initializes a new instance of the DataValidationForumla1 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataValidationForumla1 class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataValidationForumla1 class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1.#ctor(System.String)"> <summary> Initializes a new instance of the DataValidationForumla1 class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla1.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2"> <summary> <para>Defines the DataValidationForumla2 Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:formula2.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.Formula <xne:f></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2.#ctor"> <summary> Initializes a new instance of the DataValidationForumla2 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataValidationForumla2 class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataValidationForumla2 class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2.#ctor(System.String)"> <summary> Initializes a new instance of the DataValidationForumla2 class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataValidationForumla2.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup"> <summary> <para>Defines the SparklineGroup Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:sparklineGroup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SeriesColor <x14:colorSeries></description></item> <item><description>NegativeColor <x14:colorNegative></description></item> <item><description>AxisColor <x14:colorAxis></description></item> <item><description>MarkersColor <x14:colorMarkers></description></item> <item><description>FirstMarkerColor <x14:colorFirst></description></item> <item><description>LastMarkerColor <x14:colorLast></description></item> <item><description>HighMarkerColor <x14:colorHigh></description></item> <item><description>LowMarkerColor <x14:colorLow></description></item> <item><description>DocumentFormat.OpenXml.Office.Excel.Formula <xne:f></description></item> <item><description>Sparklines <x14:sparklines></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.#ctor"> <summary> Initializes a new instance of the SparklineGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SparklineGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SparklineGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.#ctor(System.String)"> <summary> Initializes a new instance of the SparklineGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.ManualMax"> <summary> <para> manualMax.</para> <para>Represents the attribte in schema: manualMax </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.ManualMin"> <summary> <para> manualMin.</para> <para>Represents the attribte in schema: manualMin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.LineWeight"> <summary> <para> lineWeight.</para> <para>Represents the attribte in schema: lineWeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.DateAxis"> <summary> <para> dateAxis.</para> <para>Represents the attribte in schema: dateAxis </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.DisplayEmptyCellsAs"> <summary> <para> displayEmptyCellsAs.</para> <para>Represents the attribte in schema: displayEmptyCellsAs </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.Markers"> <summary> <para> markers.</para> <para>Represents the attribte in schema: markers </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.High"> <summary> <para> high.</para> <para>Represents the attribte in schema: high </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.Low"> <summary> <para> low.</para> <para>Represents the attribte in schema: low </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.First"> <summary> <para> first.</para> <para>Represents the attribte in schema: first </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.Last"> <summary> <para> last.</para> <para>Represents the attribte in schema: last </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.Negative"> <summary> <para> negative.</para> <para>Represents the attribte in schema: negative </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.DisplayXAxis"> <summary> <para> displayXAxis.</para> <para>Represents the attribte in schema: displayXAxis </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.DisplayHidden"> <summary> <para> displayHidden.</para> <para>Represents the attribte in schema: displayHidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.MinAxisType"> <summary> <para> minAxisType.</para> <para>Represents the attribte in schema: minAxisType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.MaxAxisType"> <summary> <para> maxAxisType.</para> <para>Represents the attribte in schema: maxAxisType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.RightToLeft"> <summary> <para> rightToLeft.</para> <para>Represents the attribte in schema: rightToLeft </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.SeriesColor"> <summary> <para> SeriesColor.</para> <para>Represents the element tag in schema: x14:colorSeries </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.NegativeColor"> <summary> <para> NegativeColor.</para> <para>Represents the element tag in schema: x14:colorNegative </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.AxisColor"> <summary> <para> AxisColor.</para> <para>Represents the element tag in schema: x14:colorAxis </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.MarkersColor"> <summary> <para> MarkersColor.</para> <para>Represents the element tag in schema: x14:colorMarkers </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.FirstMarkerColor"> <summary> <para> FirstMarkerColor.</para> <para>Represents the element tag in schema: x14:colorFirst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.LastMarkerColor"> <summary> <para> LastMarkerColor.</para> <para>Represents the element tag in schema: x14:colorLast </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.HighMarkerColor"> <summary> <para> HighMarkerColor.</para> <para>Represents the element tag in schema: x14:colorHigh </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.LowMarkerColor"> <summary> <para> LowMarkerColor.</para> <para>Represents the element tag in schema: x14:colorLow </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.Formula"> <summary> <para> Formula.</para> <para>Represents the element tag in schema: xne:f </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SparklineGroup.Sparklines"> <summary> <para> Sparklines.</para> <para>Represents the element tag in schema: x14:sparklines </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SeriesColor"> <summary> <para>Defines the SeriesColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorSeries.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ColorType"> <summary> Defines the ColorType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ColorType.#ctor"> <summary> Initializes a new instance of the ColorType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ColorType.Auto"> <summary> <para> Automatic.</para> <para>Represents the attribte in schema: auto </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ColorType.Indexed"> <summary> <para> Index.</para> <para>Represents the attribte in schema: indexed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ColorType.Rgb"> <summary> <para> Alpha Red Green Blue Color Value.</para> <para>Represents the attribte in schema: rgb </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ColorType.Theme"> <summary> <para> Theme Color.</para> <para>Represents the attribte in schema: theme </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ColorType.Tint"> <summary> <para> Tint.</para> <para>Represents the attribte in schema: tint </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SeriesColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SeriesColor.#ctor"> <summary> Initializes a new instance of the SeriesColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SeriesColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SeriesColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SeriesColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.NegativeColor"> <summary> <para>Defines the NegativeColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorNegative.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeColor.#ctor"> <summary> Initializes a new instance of the NegativeColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.NegativeColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.NegativeColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.AxisColor"> <summary> <para>Defines the AxisColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorAxis.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.AxisColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.AxisColor.#ctor"> <summary> Initializes a new instance of the AxisColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.AxisColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.AxisColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.AxisColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.MarkersColor"> <summary> <para>Defines the MarkersColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorMarkers.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.MarkersColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.MarkersColor.#ctor"> <summary> Initializes a new instance of the MarkersColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.MarkersColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.MarkersColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.MarkersColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.FirstMarkerColor"> <summary> <para>Defines the FirstMarkerColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorFirst.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FirstMarkerColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FirstMarkerColor.#ctor"> <summary> Initializes a new instance of the FirstMarkerColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FirstMarkerColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FirstMarkerColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FirstMarkerColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.LastMarkerColor"> <summary> <para>Defines the LastMarkerColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorLast.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.LastMarkerColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.LastMarkerColor.#ctor"> <summary> Initializes a new instance of the LastMarkerColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.LastMarkerColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.LastMarkerColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.LastMarkerColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.HighMarkerColor"> <summary> <para>Defines the HighMarkerColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorHigh.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.HighMarkerColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.HighMarkerColor.#ctor"> <summary> Initializes a new instance of the HighMarkerColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.HighMarkerColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.HighMarkerColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.HighMarkerColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.LowMarkerColor"> <summary> <para>Defines the LowMarkerColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorLow.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.LowMarkerColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.LowMarkerColor.#ctor"> <summary> Initializes a new instance of the LowMarkerColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.LowMarkerColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.LowMarkerColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.LowMarkerColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Color"> <summary> <para>Defines the Color Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:color.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Color.#ctor"> <summary> Initializes a new instance of the Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.FillColor"> <summary> <para>Defines the FillColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:fillColor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FillColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FillColor.#ctor"> <summary> Initializes a new instance of the FillColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.FillColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FillColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.FillColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.BorderColor"> <summary> <para>Defines the BorderColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:borderColor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.BorderColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.BorderColor.#ctor"> <summary> Initializes a new instance of the BorderColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.BorderColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.BorderColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.BorderColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.NegativeFillColor"> <summary> <para>Defines the NegativeFillColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:negativeFillColor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeFillColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeFillColor.#ctor"> <summary> Initializes a new instance of the NegativeFillColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeFillColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.NegativeFillColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.NegativeFillColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.NegativeBorderColor"> <summary> <para>Defines the NegativeBorderColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:negativeBorderColor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeBorderColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeBorderColor.#ctor"> <summary> Initializes a new instance of the NegativeBorderColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.NegativeBorderColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.NegativeBorderColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.NegativeBorderColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.BarAxisColor"> <summary> <para>Defines the BarAxisColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:axisColor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.BarAxisColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.BarAxisColor.#ctor"> <summary> Initializes a new instance of the BarAxisColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.BarAxisColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.BarAxisColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.BarAxisColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Sparklines"> <summary> <para>Defines the Sparklines Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:sparklines.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Sparkline <x14:sparkline></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparklines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparklines.#ctor"> <summary> Initializes a new instance of the Sparklines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparklines.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Sparklines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparklines.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Sparklines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparklines.#ctor(System.String)"> <summary> Initializes a new instance of the Sparklines class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparklines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Sparklines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Sparklines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Sparkline"> <summary> <para>Defines the Sparkline Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:sparkline.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.Formula <xne:f></description></item> <item><description>DocumentFormat.OpenXml.Office.Excel.ReferenceSequence <xne:sqref></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.#ctor"> <summary> Initializes a new instance of the Sparkline class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Sparkline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Sparkline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.#ctor(System.String)"> <summary> Initializes a new instance of the Sparkline class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.Formula"> <summary> <para> Formula.</para> <para>Represents the element tag in schema: xne:f </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Sparkline.ReferenceSequence"> <summary> <para> ReferenceSequence.</para> <para>Represents the element tag in schema: xne:sqref </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerRef"> <summary> <para>Defines the SlicerRef Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicer.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerRef.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerRef.#ctor"> <summary> Initializes a new instance of the SlicerRef class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerRef.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerRef.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerRef.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerRef.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerCache"> <summary> <para>Defines the SlicerCache Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicerCache.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCache.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCache.#ctor"> <summary> Initializes a new instance of the SlicerCache class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCache.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCache.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCache.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCache.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DefinedName"> <summary> <para>Defines the DefinedName Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:definedName.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentDescriptions <x14:argumentDescriptions></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.#ctor"> <summary> Initializes a new instance of the DefinedName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DefinedName class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DefinedName class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.#ctor(System.String)"> <summary> Initializes a new instance of the DefinedName class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DefinedName.ArgumentDescriptions"> <summary> <para> ArgumentDescriptions.</para> <para>Represents the element tag in schema: x14:argumentDescriptions </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions"> <summary> <para>Defines the ArgumentDescriptions Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:argumentDescriptions.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentDescription <x14:argumentDescription></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.#ctor"> <summary> Initializes a new instance of the ArgumentDescriptions class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ArgumentDescriptions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ArgumentDescriptions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.#ctor(System.String)"> <summary> Initializes a new instance of the ArgumentDescriptions class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescriptions.Count"> <summary> <para> count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescription"> <summary> <para>Defines the ArgumentDescription Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:argumentDescription.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescription.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescription.#ctor"> <summary> Initializes a new instance of the ArgumentDescription class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescription.#ctor(System.String)"> <summary> Initializes a new instance of the ArgumentDescription class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescription.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescription.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescription.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ArgumentDescription.Index"> <summary> <para> index.</para> <para>Represents the attribte in schema: index </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TupleSet"> <summary> <para>Defines the TupleSet Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:tupleSet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TupleSetHeaders <x14:headers></description></item> <item><description>TupleSetRows <x14:rows></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.#ctor"> <summary> Initializes a new instance of the TupleSet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TupleSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TupleSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.#ctor(System.String)"> <summary> Initializes a new instance of the TupleSet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.RowCount"> <summary> <para> rowCount.</para> <para>Represents the attribte in schema: rowCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.ColumnCount"> <summary> <para> columnCount.</para> <para>Represents the attribte in schema: columnCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.TupleSetHeaders"> <summary> <para> TupleSetHeaders.</para> <para>Represents the element tag in schema: x14:headers </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSet.TupleSetRows"> <summary> <para> TupleSetRows.</para> <para>Represents the element tag in schema: x14:rows </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders"> <summary> <para>Defines the TupleSetHeaders Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:headers.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TupleSetHeader <x14:header></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders.#ctor"> <summary> Initializes a new instance of the TupleSetHeaders class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TupleSetHeaders class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TupleSetHeaders class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders.#ctor(System.String)"> <summary> Initializes a new instance of the TupleSetHeaders class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeaders.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows"> <summary> <para>Defines the TupleSetRows Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:rows.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TupleSetRow <x14:row></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows.#ctor"> <summary> Initializes a new instance of the TupleSetRows class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TupleSetRows class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TupleSetRows class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows.#ctor(System.String)"> <summary> Initializes a new instance of the TupleSetRows class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRows.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeader"> <summary> <para>Defines the TupleSetHeader Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:header.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeader.#ctor"> <summary> Initializes a new instance of the TupleSetHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeader.UniqueName"> <summary> <para> uniqueName.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetHeader.HierarchyName"> <summary> <para> hierarchyName.</para> <para>Represents the attribte in schema: hierarchyName </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow"> <summary> <para>Defines the TupleSetRow Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:row.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TupleSetRowItem <x14:rowItem></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow.#ctor"> <summary> Initializes a new instance of the TupleSetRow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TupleSetRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TupleSetRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow.#ctor(System.String)"> <summary> Initializes a new instance of the TupleSetRow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRowItem"> <summary> <para>Defines the TupleSetRowItem Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:rowItem.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRowItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRowItem.#ctor"> <summary> Initializes a new instance of the TupleSetRowItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRowItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRowItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRowItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRowItem.UniqueName"> <summary> <para> u.</para> <para>Represents the attribte in schema: u </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleSetRowItem.DisplayName"> <summary> <para> d.</para> <para>Represents the attribte in schema: d </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SetLevel"> <summary> <para>Defines the SetLevel Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:setLevel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevel.#ctor"> <summary> Initializes a new instance of the SetLevel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SetLevel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SetLevel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SetLevel.Hierarchy"> <summary> <para> hierarchy.</para> <para>Represents the attribte in schema: hierarchy </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SetLevels"> <summary> <para>Defines the SetLevels Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:setLevels.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SetLevel <x14:setLevel></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.#ctor"> <summary> Initializes a new instance of the SetLevels class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SetLevels class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SetLevels class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.#ctor(System.String)"> <summary> Initializes a new instance of the SetLevels class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SetLevels.Count"> <summary> <para> count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ColorScale"> <summary> <para>Defines the ColorScale Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:colorScale.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ConditionalFormattingValueObject <x14:cfvo></description></item> <item><description>Color <x14:color></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ColorScale.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ColorScale.#ctor"> <summary> Initializes a new instance of the ColorScale class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ColorScale.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorScale class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ColorScale.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorScale class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ColorScale.#ctor(System.String)"> <summary> Initializes a new instance of the ColorScale class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ColorScale.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ColorScale.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ColorScale.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataBar"> <summary> <para>Defines the DataBar Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:dataBar.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ConditionalFormattingValueObject <x14:cfvo></description></item> <item><description>FillColor <x14:fillColor></description></item> <item><description>BorderColor <x14:borderColor></description></item> <item><description>NegativeFillColor <x14:negativeFillColor></description></item> <item><description>NegativeBorderColor <x14:negativeBorderColor></description></item> <item><description>BarAxisColor <x14:axisColor></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataBar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataBar.#ctor"> <summary> Initializes a new instance of the DataBar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataBar.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataBar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataBar.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataBar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataBar.#ctor(System.String)"> <summary> Initializes a new instance of the DataBar class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DataBar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.MinLength"> <summary> <para> minLength.</para> <para>Represents the attribte in schema: minLength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.MaxLength"> <summary> <para> maxLength.</para> <para>Represents the attribte in schema: maxLength </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.ShowValue"> <summary> <para> showValue.</para> <para>Represents the attribte in schema: showValue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.Border"> <summary> <para> border.</para> <para>Represents the attribte in schema: border </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.Gradient"> <summary> <para> gradient.</para> <para>Represents the attribte in schema: gradient </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.Direction"> <summary> <para> direction.</para> <para>Represents the attribte in schema: direction </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.NegativeBarColorSameAsPositive"> <summary> <para> negativeBarColorSameAsPositive.</para> <para>Represents the attribte in schema: negativeBarColorSameAsPositive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.NegativeBarBorderColorSameAsPositive"> <summary> <para> negativeBarBorderColorSameAsPositive.</para> <para>Represents the attribte in schema: negativeBarBorderColorSameAsPositive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DataBar.AxisPosition"> <summary> <para> axisPosition.</para> <para>Represents the attribte in schema: axisPosition </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.IconSet"> <summary> <para>Defines the IconSet Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:iconSet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ConditionalFormattingValueObject <x14:cfvo></description></item> <item><description>ConditionalFormattingIcon <x14:cfIcon></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconSet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconSet.#ctor"> <summary> Initializes a new instance of the IconSet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconSet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the IconSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconSet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the IconSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconSet.#ctor(System.String)"> <summary> Initializes a new instance of the IconSet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IconSet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconSet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconSet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconSet.IconSetTypes"> <summary> <para> iconSet.</para> <para>Represents the attribte in schema: iconSet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconSet.ShowValue"> <summary> <para> showValue.</para> <para>Represents the attribte in schema: showValue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconSet.Percent"> <summary> <para> percent.</para> <para>Represents the attribte in schema: percent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconSet.Reverse"> <summary> <para> reverse.</para> <para>Represents the attribte in schema: reverse </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IconSet.Custom"> <summary> <para> custom.</para> <para>Represents the attribte in schema: custom </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType"> <summary> <para>Defines the DifferentialType Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:dxf.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.Font <x:font></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.NumberingFormat <x:numFmt></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.Fill <x:fill></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.Alignment <x:alignment></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.Border <x:border></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.Protection <x:protection></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.#ctor"> <summary> Initializes a new instance of the DifferentialType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DifferentialType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DifferentialType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.#ctor(System.String)"> <summary> Initializes a new instance of the DifferentialType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.Font"> <summary> <para> Font Properties.</para> <para>Represents the element tag in schema: x:font </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.NumberingFormat"> <summary> <para> Number Format.</para> <para>Represents the element tag in schema: x:numFmt </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.Fill"> <summary> <para> Fill.</para> <para>Represents the element tag in schema: x:fill </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.Alignment"> <summary> <para> Alignment.</para> <para>Represents the element tag in schema: x:alignment </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.Border"> <summary> <para> Border Properties.</para> <para>Represents the element tag in schema: x:border </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.Protection"> <summary> <para> Protection Properties.</para> <para>Represents the element tag in schema: x:protection </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DifferentialType.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject"> <summary> <para>Defines the ConditionalFormattingValueObject Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:cfvo.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.Formula <xne:f></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.#ctor"> <summary> Initializes a new instance of the ConditionalFormattingValueObject class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConditionalFormattingValueObject class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConditionalFormattingValueObject class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.#ctor(System.String)"> <summary> Initializes a new instance of the ConditionalFormattingValueObject class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.GreaterThanOrEqual"> <summary> <para> gte.</para> <para>Represents the attribte in schema: gte </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.Formula"> <summary> <para> Formula.</para> <para>Represents the element tag in schema: xne:f </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObject.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingIcon"> <summary> <para>Defines the ConditionalFormattingIcon Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:cfIcon.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingIcon.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingIcon.#ctor"> <summary> Initializes a new instance of the ConditionalFormattingIcon class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingIcon.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingIcon.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingIcon.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingIcon.IconSet"> <summary> <para> iconSet.</para> <para>Represents the attribte in schema: iconSet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingIcon.IconId"> <summary> <para> iconId.</para> <para>Represents the attribte in schema: iconId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits"> <summary> <para>Defines the PivotEdits Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotEdits.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotEdit <x14:pivotEdit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits.#ctor"> <summary> Initializes a new instance of the PivotEdits class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotEdits class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotEdits class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits.#ctor(System.String)"> <summary> Initializes a new instance of the PivotEdits class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEdits.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges"> <summary> <para>Defines the PivotChanges Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotChanges.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotChange <x14:pivotChange></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges.#ctor"> <summary> Initializes a new instance of the PivotChanges class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotChanges class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotChanges class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges.#ctor(System.String)"> <summary> Initializes a new instance of the PivotChanges class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChanges.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats"> <summary> <para>Defines the ConditionalFormats Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:conditionalFormats.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ConditionalFormat <x14:conditionalFormat></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.#ctor"> <summary> Initializes a new instance of the ConditionalFormats class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConditionalFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConditionalFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.#ctor(System.String)"> <summary> Initializes a new instance of the ConditionalFormats class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormats.Count"> <summary> <para> count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers"> <summary> <para>Defines the CalculatedMembers Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:calculatedMembers.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.CalculatedMember <x:calculatedMember></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.#ctor"> <summary> Initializes a new instance of the CalculatedMembers class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CalculatedMembers class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CalculatedMembers class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.#ctor(System.String)"> <summary> Initializes a new instance of the CalculatedMembers class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CalculatedMembers.Count"> <summary> <para> Calculated Members Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit"> <summary> <para>Defines the PivotEdit Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotEdit.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotUserEdit <x14:userEdit></description></item> <item><description>TupleItems <x14:tupleItems></description></item> <item><description>PivotArea <x14:pivotArea></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.#ctor"> <summary> Initializes a new instance of the PivotEdit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotEdit class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotEdit class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.#ctor(System.String)"> <summary> Initializes a new instance of the PivotEdit class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.PivotUserEdit"> <summary> <para> PivotUserEdit.</para> <para>Represents the element tag in schema: x14:userEdit </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.TupleItems"> <summary> <para> TupleItems.</para> <para>Represents the element tag in schema: x14:tupleItems </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.PivotArea"> <summary> <para> PivotArea.</para> <para>Represents the element tag in schema: x14:pivotArea </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEdit.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit"> <summary> <para>Defines the PivotUserEdit Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:userEdit.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.Formula <xne:f></description></item> <item><description>PivotEditValue <x14:editValue></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.#ctor"> <summary> Initializes a new instance of the PivotUserEdit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotUserEdit class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotUserEdit class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.#ctor(System.String)"> <summary> Initializes a new instance of the PivotUserEdit class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.Formula"> <summary> <para> Formula.</para> <para>Represents the element tag in schema: xne:f </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotUserEdit.PivotEditValue"> <summary> <para> PivotEditValue.</para> <para>Represents the element tag in schema: x14:editValue </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TupleItems"> <summary> <para>Defines the TupleItems Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:tupleItems.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Xstring <x14:tupleItem></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleItems.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleItems.#ctor"> <summary> Initializes a new instance of the TupleItems class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleItems.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TupleItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleItems.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TupleItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleItems.#ctor(System.String)"> <summary> Initializes a new instance of the TupleItems class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TupleItems.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleItems.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TupleItems.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotArea"> <summary> <para>Defines the PivotArea Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotArea.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences <x:references></description></item> <item><description>DocumentFormat.OpenXml.Spreadsheet.ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.#ctor"> <summary> Initializes a new instance of the PivotArea class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotArea class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotArea class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.#ctor(System.String)"> <summary> Initializes a new instance of the PivotArea class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.Field"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: field </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.Type"> <summary> <para> Rule Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.DataOnly"> <summary> <para> Data Only.</para> <para>Represents the attribte in schema: dataOnly </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.LabelOnly"> <summary> <para> Labels Only.</para> <para>Represents the attribte in schema: labelOnly </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.GrandRow"> <summary> <para> Include Row Grand Total.</para> <para>Represents the attribte in schema: grandRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.GrandColumn"> <summary> <para> Include Column Grand Total.</para> <para>Represents the attribte in schema: grandCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.CacheIndex"> <summary> <para> Cache Index.</para> <para>Represents the attribte in schema: cacheIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.Outline"> <summary> <para> Outline.</para> <para>Represents the attribte in schema: outline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.Offset"> <summary> <para> Offset Reference.</para> <para>Represents the attribte in schema: offset </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.CollapsedLevelsAreSubtotals"> <summary> <para> Collapsed Levels Are Subtotals.</para> <para>Represents the attribte in schema: collapsedLevelsAreSubtotals </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.Axis"> <summary> <para> Axis.</para> <para>Represents the attribte in schema: axis </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.FieldPosition"> <summary> <para> Field Position.</para> <para>Represents the attribte in schema: fieldPosition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.PivotAreaReferences"> <summary> <para> References.</para> <para>Represents the element tag in schema: x:references </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotArea.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotChange"> <summary> <para>Defines the PivotChange Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotChange.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotEditValue <x14:editValue></description></item> <item><description>TupleItems <x14:tupleItems></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.#ctor"> <summary> Initializes a new instance of the PivotChange class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotChange class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotChange class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.#ctor(System.String)"> <summary> Initializes a new instance of the PivotChange class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.AllocationMethod"> <summary> <para> allocationMethod.</para> <para>Represents the attribte in schema: allocationMethod </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.WeightExpression"> <summary> <para> weightExpression.</para> <para>Represents the attribte in schema: weightExpression </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.PivotEditValue"> <summary> <para> PivotEditValue.</para> <para>Represents the element tag in schema: x14:editValue </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.TupleItems"> <summary> <para> TupleItems.</para> <para>Represents the element tag in schema: x14:tupleItems </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotChange.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValue"> <summary> <para>Defines the PivotEditValue Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:editValue.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValue.#ctor"> <summary> Initializes a new instance of the PivotEditValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValue.#ctor(System.String)"> <summary> Initializes a new instance of the PivotEditValue class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValue.ValueType"> <summary> <para> valueType.</para> <para>Represents the attribte in schema: valueType </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Xstring"> <summary> <para>Defines the Xstring Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:tupleItem.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Xstring.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Xstring.#ctor"> <summary> Initializes a new instance of the Xstring class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Xstring.#ctor(System.String)"> <summary> Initializes a new instance of the Xstring class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Xstring.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Xstring.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Xstring.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements"> <summary> <para>Defines the SlicerStyleElements Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicerStyleElements.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlicerStyleElement <x14:slicerStyleElement></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements.#ctor"> <summary> Initializes a new instance of the SlicerStyleElements class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlicerStyleElements class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlicerStyleElements class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements.#ctor(System.String)"> <summary> Initializes a new instance of the SlicerStyleElements class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElements.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DdeValues"> <summary> <para>Defines the DdeValues Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:values.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.Value <x:value></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.#ctor"> <summary> Initializes a new instance of the DdeValues class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DdeValues class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DdeValues class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.#ctor(System.String)"> <summary> Initializes a new instance of the DdeValues class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.Rows"> <summary> <para> Rows.</para> <para>Represents the attribte in schema: rows </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.DdeValues.Columns"> <summary> <para> Columns.</para> <para>Represents the attribte in schema: cols </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat"> <summary> <para>Defines the ConditionalFormat Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:conditionalFormat.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotAreas <x14:pivotAreas></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.#ctor"> <summary> Initializes a new instance of the ConditionalFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConditionalFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConditionalFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.#ctor(System.String)"> <summary> Initializes a new instance of the ConditionalFormat class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.Scope"> <summary> <para> scope.</para> <para>Represents the attribte in schema: scope </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.Priority"> <summary> <para> priority.</para> <para>Represents the attribte in schema: priority </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.PivotAreas"> <summary> <para> PivotAreas.</para> <para>Represents the element tag in schema: x14:pivotAreas </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormat.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas"> <summary> <para>Defines the PivotAreas Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotAreas.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Spreadsheet.PivotArea <x:pivotArea></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.#ctor"> <summary> Initializes a new instance of the PivotAreas class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotAreas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotAreas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.#ctor(System.String)"> <summary> Initializes a new instance of the PivotAreas class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.PivotAreas.Count"> <summary> <para> Pivot Area Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle"> <summary> <para>Defines the SlicerStyle Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicerStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlicerStyleElements <x14:slicerStyleElements></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.#ctor"> <summary> Initializes a new instance of the SlicerStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlicerStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlicerStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.#ctor(System.String)"> <summary> Initializes a new instance of the SlicerStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyle.SlicerStyleElements"> <summary> <para> SlicerStyleElements.</para> <para>Represents the element tag in schema: x14:slicerStyleElements </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElement"> <summary> <para>Defines the SlicerStyleElement Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicerStyleElement.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElement.#ctor"> <summary> Initializes a new instance of the SlicerStyleElement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElement.Type"> <summary> <para> type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleElement.FormatId"> <summary> <para> dxfId.</para> <para>Represents the attribte in schema: dxfId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError"> <summary> <para>Defines the IgnoredError Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:ignoredError.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.ReferenceSequence <xne:sqref></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.#ctor"> <summary> Initializes a new instance of the IgnoredError class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the IgnoredError class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the IgnoredError class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.#ctor(System.String)"> <summary> Initializes a new instance of the IgnoredError class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.EvalError"> <summary> <para> evalError.</para> <para>Represents the attribte in schema: evalError </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.TwoDigitTextYear"> <summary> <para> twoDigitTextYear.</para> <para>Represents the attribte in schema: twoDigitTextYear </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.NumberStoredAsText"> <summary> <para> numberStoredAsText.</para> <para>Represents the attribte in schema: numberStoredAsText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.Formula"> <summary> <para> formula.</para> <para>Represents the attribte in schema: formula </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.FormulaRange"> <summary> <para> formulaRange.</para> <para>Represents the attribte in schema: formulaRange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.UnlockedFormula"> <summary> <para> unlockedFormula.</para> <para>Represents the attribte in schema: unlockedFormula </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.EmptyCellReference"> <summary> <para> emptyCellReference.</para> <para>Represents the attribte in schema: emptyCellReference </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.ListDataValidation"> <summary> <para> listDataValidation.</para> <para>Represents the attribte in schema: listDataValidation </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.CalculatedColumn"> <summary> <para> calculatedColumn.</para> <para>Represents the attribte in schema: calculatedColumn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.IgnoredError.ReferenceSequence"> <summary> <para> ReferenceSequence.</para> <para>Represents the element tag in schema: xne:sqref </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange"> <summary> <para>Defines the ProtectedRange Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:protectedRange.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Excel.ReferenceSequence <xne:sqref></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.#ctor"> <summary> Initializes a new instance of the ProtectedRange class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ProtectedRange class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ProtectedRange class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.#ctor(System.String)"> <summary> Initializes a new instance of the ProtectedRange class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.Password"> <summary> <para> password.</para> <para>Represents the attribte in schema: password </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.AlgorithmName"> <summary> <para> algorithmName.</para> <para>Represents the attribte in schema: algorithmName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.HashValue"> <summary> <para> hashValue.</para> <para>Represents the attribte in schema: hashValue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.SaltValue"> <summary> <para> saltValue.</para> <para>Represents the attribte in schema: saltValue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.SpinCount"> <summary> <para> spinCount.</para> <para>Represents the attribte in schema: spinCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.SecurityDescriptor"> <summary> <para> securityDescriptor.</para> <para>Represents the attribte in schema: securityDescriptor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ProtectedRange.ReferenceSequence"> <summary> <para> ReferenceSequence.</para> <para>Represents the element tag in schema: xne:sqref </para> </summary> <remark> xmlns:xne = http://schemas.microsoft.com/office/excel/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.CustomFilter"> <summary> <para>Defines the CustomFilter Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:customFilter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilter.#ctor"> <summary> Initializes a new instance of the CustomFilter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.CustomFilter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CustomFilter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CustomFilter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CustomFilter.Operator"> <summary> <para> operator.</para> <para>Represents the attribte in schema: operator </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.CustomFilter.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ListItem"> <summary> <para>Defines the ListItem Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:item.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItem.#ctor"> <summary> Initializes a new instance of the ListItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ListItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ListItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ListItem.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ListItems"> <summary> <para>Defines the ListItems Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:itemLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ListItem <x14:item></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItems.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItems.#ctor"> <summary> Initializes a new instance of the ListItems class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItems.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ListItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItems.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ListItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItems.#ctor(System.String)"> <summary> Initializes a new instance of the ListItems class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.ListItems.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ListItems.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.ListItems.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.Slicer"> <summary> <para>Defines the Slicer Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:slicer.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicer.#ctor"> <summary> Initializes a new instance of the Slicer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Slicer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Slicer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicer.#ctor(System.String)"> <summary> Initializes a new instance of the Slicer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.Slicer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.Cache"> <summary> <para> cache.</para> <para>Represents the attribte in schema: cache </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.Caption"> <summary> <para> caption.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.StartItem"> <summary> <para> startItem.</para> <para>Represents the attribte in schema: startItem </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.ColumnCount"> <summary> <para> columnCount.</para> <para>Represents the attribte in schema: columnCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.ShowCaption"> <summary> <para> showCaption.</para> <para>Represents the attribte in schema: showCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.Level"> <summary> <para> level.</para> <para>Represents the attribte in schema: level </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.Style"> <summary> <para> style.</para> <para>Represents the attribte in schema: style </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.LockedPosition"> <summary> <para> lockedPosition.</para> <para>Represents the attribte in schema: lockedPosition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.RowHeight"> <summary> <para> rowHeight.</para> <para>Represents the attribte in schema: rowHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.Slicer.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables"> <summary> <para>Defines the SlicerCachePivotTables Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotTables.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlicerCachePivotTable <x14:pivotTable></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables.#ctor"> <summary> Initializes a new instance of the SlicerCachePivotTables class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlicerCachePivotTables class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlicerCachePivotTables class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables.#ctor(System.String)"> <summary> Initializes a new instance of the SlicerCachePivotTables class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTables.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData"> <summary> <para>Defines the SlicerCacheData Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:data.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCache <x14:olap></description></item> <item><description>TabularSlicerCache <x14:tabular></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.#ctor"> <summary> Initializes a new instance of the SlicerCacheData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlicerCacheData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlicerCacheData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.#ctor(System.String)"> <summary> Initializes a new instance of the SlicerCacheData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.OlapSlicerCache"> <summary> <para> OlapSlicerCache.</para> <para>Represents the element tag in schema: x14:olap </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheData.TabularSlicerCache"> <summary> <para> TabularSlicerCache.</para> <para>Represents the element tag in schema: x14:tabular </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache"> <summary> <para>Defines the OlapSlicerCache Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:olap.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCacheLevelsData <x14:levels></description></item> <item><description>OlapSlicerCacheSelections <x14:selections></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.#ctor"> <summary> Initializes a new instance of the OlapSlicerCache class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OlapSlicerCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OlapSlicerCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.#ctor(System.String)"> <summary> Initializes a new instance of the OlapSlicerCache class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.PivotCacheId"> <summary> <para> pivotCacheId.</para> <para>Represents the attribte in schema: pivotCacheId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.OlapSlicerCacheLevelsData"> <summary> <para> OlapSlicerCacheLevelsData.</para> <para>Represents the element tag in schema: x14:levels </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.OlapSlicerCacheSelections"> <summary> <para> OlapSlicerCacheSelections.</para> <para>Represents the element tag in schema: x14:selections </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCache.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache"> <summary> <para>Defines the TabularSlicerCache Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:tabular.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TabularSlicerCacheItems <x14:items></description></item> <item><description>ExtensionList <x14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.#ctor"> <summary> Initializes a new instance of the TabularSlicerCache class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TabularSlicerCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TabularSlicerCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.#ctor(System.String)"> <summary> Initializes a new instance of the TabularSlicerCache class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.PivotCacheId"> <summary> <para> pivotCacheId.</para> <para>Represents the attribte in schema: pivotCacheId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.SortOrder"> <summary> <para> sortOrder.</para> <para>Represents the attribte in schema: sortOrder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.CustomListSort"> <summary> <para> customListSort.</para> <para>Represents the attribte in schema: customListSort </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.ShowMissing"> <summary> <para> showMissing.</para> <para>Represents the attribte in schema: showMissing </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.CrossFilter"> <summary> <para> crossFilter.</para> <para>Represents the attribte in schema: crossFilter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.TabularSlicerCacheItems"> <summary> <para> TabularSlicerCacheItems.</para> <para>Represents the element tag in schema: x14:items </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCache.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x14:extLst </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTable"> <summary> <para>Defines the SlicerCachePivotTable Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:pivotTable.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTable.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTable.#ctor"> <summary> Initializes a new instance of the SlicerCachePivotTable class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTable.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTable.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTable.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTable.TabId"> <summary> <para> tabId.</para> <para>Represents the attribte in schema: tabId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.SlicerCachePivotTable.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItemParent"> <summary> <para>Defines the OlapSlicerCacheItemParent Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:p.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItemParent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItemParent.#ctor"> <summary> Initializes a new instance of the OlapSlicerCacheItemParent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItemParent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItemParent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItemParent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItemParent.Name"> <summary> <para> n.</para> <para>Represents the attribte in schema: n </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem"> <summary> <para>Defines the OlapSlicerCacheItem Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:i.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCacheItemParent <x14:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.#ctor"> <summary> Initializes a new instance of the OlapSlicerCacheItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OlapSlicerCacheItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OlapSlicerCacheItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.#ctor(System.String)"> <summary> Initializes a new instance of the OlapSlicerCacheItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.Name"> <summary> <para> n.</para> <para>Represents the attribte in schema: n </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.DisplayName"> <summary> <para> c.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheItem.NonDisplay"> <summary> <para> nd.</para> <para>Represents the attribte in schema: nd </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange"> <summary> <para>Defines the OlapSlicerCacheRange Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:range.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCacheItem <x14:i></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.#ctor"> <summary> Initializes a new instance of the OlapSlicerCacheRange class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OlapSlicerCacheRange class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OlapSlicerCacheRange class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.#ctor(System.String)"> <summary> Initializes a new instance of the OlapSlicerCacheRange class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRange.StartItem"> <summary> <para> startItem.</para> <para>Represents the attribte in schema: startItem </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges"> <summary> <para>Defines the OlapSlicerCacheRanges Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:ranges.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCacheRange <x14:range></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges.#ctor"> <summary> Initializes a new instance of the OlapSlicerCacheRanges class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OlapSlicerCacheRanges class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OlapSlicerCacheRanges class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges.#ctor(System.String)"> <summary> Initializes a new instance of the OlapSlicerCacheRanges class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheRanges.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData"> <summary> <para>Defines the OlapSlicerCacheLevelData Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:level.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCacheRanges <x14:ranges></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.#ctor"> <summary> Initializes a new instance of the OlapSlicerCacheLevelData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OlapSlicerCacheLevelData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OlapSlicerCacheLevelData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.#ctor(System.String)"> <summary> Initializes a new instance of the OlapSlicerCacheLevelData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.UniqueName"> <summary> <para> uniqueName.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.SourceCaption"> <summary> <para> sourceCaption.</para> <para>Represents the attribte in schema: sourceCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.Count"> <summary> <para> count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.SortOrder"> <summary> <para> sortOrder.</para> <para>Represents the attribte in schema: sortOrder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.CrossFilter"> <summary> <para> crossFilter.</para> <para>Represents the attribte in schema: crossFilter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelData.OlapSlicerCacheRanges"> <summary> <para> OlapSlicerCacheRanges.</para> <para>Represents the element tag in schema: x14:ranges </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData"> <summary> <para>Defines the OlapSlicerCacheLevelsData Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:levels.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCacheLevelData <x14:level></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.#ctor"> <summary> Initializes a new instance of the OlapSlicerCacheLevelsData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OlapSlicerCacheLevelsData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OlapSlicerCacheLevelsData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.#ctor(System.String)"> <summary> Initializes a new instance of the OlapSlicerCacheLevelsData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheLevelsData.Count"> <summary> <para> count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections"> <summary> <para>Defines the OlapSlicerCacheSelections Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:selections.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCacheSelection <x14:selection></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.#ctor"> <summary> Initializes a new instance of the OlapSlicerCacheSelections class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OlapSlicerCacheSelections class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OlapSlicerCacheSelections class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.#ctor(System.String)"> <summary> Initializes a new instance of the OlapSlicerCacheSelections class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelections.Count"> <summary> <para> count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection"> <summary> <para>Defines the OlapSlicerCacheSelection Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:selection.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OlapSlicerCacheItemParent <x14:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.#ctor"> <summary> Initializes a new instance of the OlapSlicerCacheSelection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OlapSlicerCacheSelection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OlapSlicerCacheSelection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.#ctor(System.String)"> <summary> Initializes a new instance of the OlapSlicerCacheSelection class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSelection.Name"> <summary> <para> n.</para> <para>Represents the attribte in schema: n </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems"> <summary> <para>Defines the TabularSlicerCacheItems Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:items.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TabularSlicerCacheItem <x14:i></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.#ctor"> <summary> Initializes a new instance of the TabularSlicerCacheItems class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TabularSlicerCacheItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TabularSlicerCacheItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.#ctor(System.String)"> <summary> Initializes a new instance of the TabularSlicerCacheItems class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItems.Count"> <summary> <para> count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem"> <summary> <para>Defines the TabularSlicerCacheItem Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is x14:i.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem.#ctor"> <summary> Initializes a new instance of the TabularSlicerCacheItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem.Atom"> <summary> <para> x.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem.IsSelected"> <summary> <para> s.</para> <para>Represents the attribte in schema: s </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheItem.NonDisplay"> <summary> <para> nd.</para> <para>Represents the attribte in schema: nd </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DisplayBlanksAsValues"> <summary> Defines the DisplayBlanksAsValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DisplayBlanksAsValues.Span"> <summary> span. <para>When the item is serialized out as xml, its value is "span".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DisplayBlanksAsValues.Gap"> <summary> gap. <para>When the item is serialized out as xml, its value is "gap".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DisplayBlanksAsValues.Zero"> <summary> zero. <para>When the item is serialized out as xml, its value is "zero".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SparklineAxisMinMaxValues"> <summary> Defines the SparklineAxisMinMaxValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SparklineAxisMinMaxValues.Individual"> <summary> individual. <para>When the item is serialized out as xml, its value is "individual".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SparklineAxisMinMaxValues.Group"> <summary> group. <para>When the item is serialized out as xml, its value is "group".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SparklineAxisMinMaxValues.Custom"> <summary> custom. <para>When the item is serialized out as xml, its value is "custom".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SparklineTypeValues"> <summary> Defines the SparklineTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SparklineTypeValues.Line"> <summary> line. <para>When the item is serialized out as xml, its value is "line".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SparklineTypeValues.Column"> <summary> column. <para>When the item is serialized out as xml, its value is "column".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SparklineTypeValues.Stacked"> <summary> stacked. <para>When the item is serialized out as xml, its value is "stacked".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotShowAsValues"> <summary> Defines the PivotShowAsValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotShowAsValues.PercentOfParent"> <summary> percentOfParent. <para>When the item is serialized out as xml, its value is "percentOfParent".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotShowAsValues.PercentOfParentRow"> <summary> percentOfParentRow. <para>When the item is serialized out as xml, its value is "percentOfParentRow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotShowAsValues.PercentOfParentColumn"> <summary> percentOfParentCol. <para>When the item is serialized out as xml, its value is "percentOfParentCol".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotShowAsValues.PercentOfRunningTotal"> <summary> percentOfRunningTotal. <para>When the item is serialized out as xml, its value is "percentOfRunningTotal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotShowAsValues.RankAscending"> <summary> rankAscending. <para>When the item is serialized out as xml, its value is "rankAscending".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotShowAsValues.RankDescending"> <summary> rankDescending. <para>When the item is serialized out as xml, its value is "rankDescending".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataBarDirectionValues"> <summary> Defines the DataBarDirectionValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DataBarDirectionValues.Context"> <summary> context. <para>When the item is serialized out as xml, its value is "context".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DataBarDirectionValues.LeftToRight"> <summary> leftToRight. <para>When the item is serialized out as xml, its value is "leftToRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DataBarDirectionValues.RightToLeft"> <summary> rightToLeft. <para>When the item is serialized out as xml, its value is "rightToLeft".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DataBarAxisPositionValues"> <summary> Defines the DataBarAxisPositionValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DataBarAxisPositionValues.Automatic"> <summary> automatic. <para>When the item is serialized out as xml, its value is "automatic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DataBarAxisPositionValues.Middle"> <summary> middle. <para>When the item is serialized out as xml, its value is "middle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DataBarAxisPositionValues.None"> <summary> none. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues"> <summary> Defines the ConditionalFormattingValueObjectTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues.Numeric"> <summary> num. <para>When the item is serialized out as xml, its value is "num".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues.Percent"> <summary> percent. <para>When the item is serialized out as xml, its value is "percent".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues.Max"> <summary> max. <para>When the item is serialized out as xml, its value is "max".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues.Min"> <summary> min. <para>When the item is serialized out as xml, its value is "min".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues.Formula"> <summary> formula. <para>When the item is serialized out as xml, its value is "formula".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues.Percentile"> <summary> percentile. <para>When the item is serialized out as xml, its value is "percentile".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues.AutoMin"> <summary> autoMin. <para>When the item is serialized out as xml, its value is "autoMin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ConditionalFormattingValueObjectTypeValues.AutoMax"> <summary> autoMax. <para>When the item is serialized out as xml, its value is "autoMax".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues"> <summary> Defines the IconSetTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeArrows"> <summary> 3Arrows. <para>When the item is serialized out as xml, its value is "3Arrows".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeArrowsGray"> <summary> 3ArrowsGray. <para>When the item is serialized out as xml, its value is "3ArrowsGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeFlags"> <summary> 3Flags. <para>When the item is serialized out as xml, its value is "3Flags".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeTrafficLights1"> <summary> 3TrafficLights1. <para>When the item is serialized out as xml, its value is "3TrafficLights1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeTrafficLights2"> <summary> 3TrafficLights2. <para>When the item is serialized out as xml, its value is "3TrafficLights2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeSigns"> <summary> 3Signs. <para>When the item is serialized out as xml, its value is "3Signs".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeSymbols"> <summary> 3Symbols. <para>When the item is serialized out as xml, its value is "3Symbols".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeSymbols2"> <summary> 3Symbols2. <para>When the item is serialized out as xml, its value is "3Symbols2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FourArrows"> <summary> 4Arrows. <para>When the item is serialized out as xml, its value is "4Arrows".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FourArrowsGray"> <summary> 4ArrowsGray. <para>When the item is serialized out as xml, its value is "4ArrowsGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FourRedToBlack"> <summary> 4RedToBlack. <para>When the item is serialized out as xml, its value is "4RedToBlack".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FourRating"> <summary> 4Rating. <para>When the item is serialized out as xml, its value is "4Rating".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FourTrafficLights"> <summary> 4TrafficLights. <para>When the item is serialized out as xml, its value is "4TrafficLights".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FiveArrows"> <summary> 5Arrows. <para>When the item is serialized out as xml, its value is "5Arrows".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FiveArrowsGray"> <summary> 5ArrowsGray. <para>When the item is serialized out as xml, its value is "5ArrowsGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FiveRating"> <summary> 5Rating. <para>When the item is serialized out as xml, its value is "5Rating".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FiveQuarters"> <summary> 5Quarters. <para>When the item is serialized out as xml, its value is "5Quarters".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeStars"> <summary> 3Stars. <para>When the item is serialized out as xml, its value is "3Stars".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.ThreeTriangles"> <summary> 3Triangles. <para>When the item is serialized out as xml, its value is "3Triangles".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.FiveBoxes"> <summary> 5Boxes. <para>When the item is serialized out as xml, its value is "5Boxes".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.IconSetTypeValues.NoIcons"> <summary> NoIcons. <para>When the item is serialized out as xml, its value is "NoIcons".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValueTypeValues"> <summary> Defines the PivotEditValueTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValueTypeValues.Number"> <summary> number. <para>When the item is serialized out as xml, its value is "number".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValueTypeValues.DateTime"> <summary> dateTime. <para>When the item is serialized out as xml, its value is "dateTime".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValueTypeValues.String"> <summary> string. <para>When the item is serialized out as xml, its value is "string".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValueTypeValues.Boolean"> <summary> boolean. <para>When the item is serialized out as xml, its value is "boolean".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.PivotEditValueTypeValues.Error"> <summary> error. <para>When the item is serialized out as xml, its value is "error".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.AllocationMethodValues"> <summary> Defines the AllocationMethodValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.AllocationMethodValues.EqualAllocation"> <summary> equalAllocation. <para>When the item is serialized out as xml, its value is "equalAllocation".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.AllocationMethodValues.EqualIncrement"> <summary> equalIncrement. <para>When the item is serialized out as xml, its value is "equalIncrement".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.AllocationMethodValues.WeightedAllocation"> <summary> weightedAllocation. <para>When the item is serialized out as xml, its value is "weightedAllocation".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.AllocationMethodValues.WeightedIncrement"> <summary> weightedIncrement. <para>When the item is serialized out as xml, its value is "weightedIncrement".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues"> <summary> Defines the SlicerStyleTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues.UnselectedItemWithData"> <summary> unselectedItemWithData. <para>When the item is serialized out as xml, its value is "unselectedItemWithData".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues.SelectedItemWithData"> <summary> selectedItemWithData. <para>When the item is serialized out as xml, its value is "selectedItemWithData".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues.UnselectedItemWithNoData"> <summary> unselectedItemWithNoData. <para>When the item is serialized out as xml, its value is "unselectedItemWithNoData".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues.SelectedItemWithNoData"> <summary> selectedItemWithNoData. <para>When the item is serialized out as xml, its value is "selectedItemWithNoData".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues.HoveredUnselectedItemWithData"> <summary> hoveredUnselectedItemWithData. <para>When the item is serialized out as xml, its value is "hoveredUnselectedItemWithData".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues.HoveredSelectedItemWithData"> <summary> hoveredSelectedItemWithData. <para>When the item is serialized out as xml, its value is "hoveredSelectedItemWithData".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues.HoveredUnselectedItemWithNoData"> <summary> hoveredUnselectedItemWithNoData. <para>When the item is serialized out as xml, its value is "hoveredUnselectedItemWithNoData".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerStyleTypeValues.HoveredSelectedItemWithNoData"> <summary> hoveredSelectedItemWithNoData. <para>When the item is serialized out as xml, its value is "hoveredSelectedItemWithNoData".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues"> <summary> Defines the ObjectTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.Button"> <summary> Button. <para>When the item is serialized out as xml, its value is "Button".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.CheckBox"> <summary> CheckBox. <para>When the item is serialized out as xml, its value is "CheckBox".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.Drop"> <summary> Drop. <para>When the item is serialized out as xml, its value is "Drop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.GroupBox"> <summary> GBox. <para>When the item is serialized out as xml, its value is "GBox".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.Label"> <summary> Label. <para>When the item is serialized out as xml, its value is "Label".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.List"> <summary> List. <para>When the item is serialized out as xml, its value is "List".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.Radio"> <summary> Radio. <para>When the item is serialized out as xml, its value is "Radio".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.Scroll"> <summary> Scroll. <para>When the item is serialized out as xml, its value is "Scroll".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.Spin"> <summary> Spin. <para>When the item is serialized out as xml, its value is "Spin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.ObjectTypeValues.EditBox"> <summary> EditBox. <para>When the item is serialized out as xml, its value is "EditBox".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.CheckedValues"> <summary> Defines the CheckedValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.CheckedValues.Unchecked"> <summary> Unchecked. <para>When the item is serialized out as xml, its value is "Unchecked".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.CheckedValues.Checked"> <summary> Checked. <para>When the item is serialized out as xml, its value is "Checked".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.CheckedValues.Mixed"> <summary> Mixed. <para>When the item is serialized out as xml, its value is "Mixed".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.DropStyleValues"> <summary> Defines the DropStyleValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DropStyleValues.Combo"> <summary> combo. <para>When the item is serialized out as xml, its value is "combo".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DropStyleValues.ComboEdit"> <summary> comboedit. <para>When the item is serialized out as xml, its value is "comboedit".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.DropStyleValues.Simple"> <summary> simple. <para>When the item is serialized out as xml, its value is "simple".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SelectionTypeValues"> <summary> Defines the SelectionTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SelectionTypeValues.Single"> <summary> single. <para>When the item is serialized out as xml, its value is "single".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SelectionTypeValues.Multiple"> <summary> multi. <para>When the item is serialized out as xml, its value is "multi".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SelectionTypeValues.Extended"> <summary> extended. <para>When the item is serialized out as xml, its value is "extended".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TextHorizontalAlignmentValues"> <summary> Defines the TextHorizontalAlignmentValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextHorizontalAlignmentValues.Left"> <summary> left. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextHorizontalAlignmentValues.Center"> <summary> center. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextHorizontalAlignmentValues.Right"> <summary> right. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextHorizontalAlignmentValues.Justify"> <summary> justify. <para>When the item is serialized out as xml, its value is "justify".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextHorizontalAlignmentValues.Distributed"> <summary> distributed. <para>When the item is serialized out as xml, its value is "distributed".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TextVerticalAlignmentValues"> <summary> Defines the TextVerticalAlignmentValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextVerticalAlignmentValues.Top"> <summary> top. <para>When the item is serialized out as xml, its value is "top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextVerticalAlignmentValues.Center"> <summary> center. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextVerticalAlignmentValues.Bottom"> <summary> bottom. <para>When the item is serialized out as xml, its value is "bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextVerticalAlignmentValues.Justify"> <summary> justify. <para>When the item is serialized out as xml, its value is "justify".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TextVerticalAlignmentValues.Distributed"> <summary> distributed. <para>When the item is serialized out as xml, its value is "distributed".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.EditValidationValues"> <summary> Defines the EditValidationValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.EditValidationValues.Text"> <summary> text. <para>When the item is serialized out as xml, its value is "text".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.EditValidationValues.Integer"> <summary> integer. <para>When the item is serialized out as xml, its value is "integer".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.EditValidationValues.Number"> <summary> number. <para>When the item is serialized out as xml, its value is "number".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.EditValidationValues.Reference"> <summary> reference. <para>When the item is serialized out as xml, its value is "reference".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.EditValidationValues.Formula"> <summary> formula. <para>When the item is serialized out as xml, its value is "formula".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSortOrderValues"> <summary> Defines the OlapSlicerCacheSortOrderValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSortOrderValues.Natural"> <summary> natural. <para>When the item is serialized out as xml, its value is "natural".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSortOrderValues.Ascending"> <summary> ascending. <para>When the item is serialized out as xml, its value is "ascending".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.OlapSlicerCacheSortOrderValues.Descending"> <summary> descending. <para>When the item is serialized out as xml, its value is "descending".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheSortOrderValues"> <summary> Defines the TabularSlicerCacheSortOrderValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheSortOrderValues.Ascending"> <summary> ascending. <para>When the item is serialized out as xml, its value is "ascending".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.TabularSlicerCacheSortOrderValues.Descending"> <summary> descending. <para>When the item is serialized out as xml, its value is "descending".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheCrossFilterValues"> <summary> Defines the SlicerCacheCrossFilterValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheCrossFilterValues.None"> <summary> none. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheCrossFilterValues.ShowItemsWithDataAtTop"> <summary> showItemsWithDataAtTop. <para>When the item is serialized out as xml, its value is "showItemsWithDataAtTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Excel.SlicerCacheCrossFilterValues.ShowItemsWithNoData"> <summary> showItemsWithNoData. <para>When the item is serialized out as xml, its value is "showItemsWithNoData".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup"> <summary> <para>Defines the TemplateCommandGroup Class. It is the root element of CustomizationPart.</para> <para>When the object is serialized out as xml, its qualified name is wne:tcg.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>KeyMapCustomizations <wne:keymaps></description></item> <item><description>MismatchedKeyMapCustomization <wne:keymapsBad></description></item> <item><description>Toolbars <wne:toolbars></description></item> <item><description>AllocatedCommands <wne:acds></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.#ctor(DocumentFormat.OpenXml.Packaging.CustomizationPart)"> <summary> TemplateCommandGroup constructor </summary> <param name="ownerPart">The owner part of the TemplateCommandGroup</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.Load(DocumentFormat.OpenXml.Packaging.CustomizationPart)"> <summary> Loads the DOM from the CustomizationPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TemplateCommandGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TemplateCommandGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.#ctor(System.String)"> <summary> Initializes a new instance of the TemplateCommandGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.#ctor"> <summary> Initializes a new instance of the TemplateCommandGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.Save(DocumentFormat.OpenXml.Packaging.CustomizationPart)"> <summary> Saves the DOM into the CustomizationPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.TemplateCommandGroup.CustomizationPart"> <summary> Gets the CustomizationPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.Mcds"> <summary> <para>Defines the Mcds Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:mcds.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Mcd <wne:mcd></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcds.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcds.#ctor"> <summary> Initializes a new instance of the Mcds class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcds.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Mcds class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcds.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Mcds class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcds.#ctor(System.String)"> <summary> Initializes a new instance of the Mcds class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcds.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcds.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcds.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.VbaSuppData"> <summary> <para>Defines the VbaSuppData Class. It is the root element of VbaDataPart.</para> <para>When the object is serialized out as xml, its qualified name is wne:vbaSuppData.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocEvents <wne:docEvents></description></item> <item><description>Mcds <wne:mcds></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.#ctor(DocumentFormat.OpenXml.Packaging.VbaDataPart)"> <summary> VbaSuppData constructor </summary> <param name="ownerPart">The owner part of the VbaSuppData</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.Load(DocumentFormat.OpenXml.Packaging.VbaDataPart)"> <summary> Loads the DOM from the VbaDataPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VbaSuppData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VbaSuppData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.#ctor(System.String)"> <summary> Initializes a new instance of the VbaSuppData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.#ctor"> <summary> Initializes a new instance of the VbaSuppData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.Save(DocumentFormat.OpenXml.Packaging.VbaDataPart)"> <summary> Saves the DOM into the VbaDataPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.VbaSuppData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.VbaSuppData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.VbaSuppData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.VbaSuppData.VbaDataPart"> <summary> Gets the VbaDataPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.VbaSuppData.DocEvents"> <summary> <para> DocEvents.</para> <para>Represents the element tag in schema: wne:docEvents </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.VbaSuppData.Mcds"> <summary> <para> Mcds.</para> <para>Represents the element tag in schema: wne:mcds </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients"> <summary> <para>Defines the MailMergeRecipients Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:recipients.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SingleDataSourceRecord <wne:recipientData></description></item> </list> </remarks> <summary> Defines MailMergeRecipients. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.#ctor"> <summary> Initializes a new instance of the MailMergeRecipients class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MailMergeRecipients class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MailMergeRecipients class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.#ctor(System.String)"> <summary> Initializes a new instance of the MailMergeRecipients class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.#ctor(DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart)"> <summary> MailMergeRecipients constructor. </summary> <param name="ownerPart">The owner part of the MailMergeRecipients.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.Load(DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart)"> <summary> Loads the DOM from an OpenXML part. </summary> <param name="openXmlPart">The part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.Save(DocumentFormat.OpenXml.Packaging.MailMergeRecipientDataPart)"> <summary> Saves the DOM into the OpenXML part. </summary> <param name="openXmlPart">The part to be saved to.</param> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.MailMergeRecipients.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization"> <summary> <para>Defines the FixedCommandKeyboardCustomization Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:fci.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization.#ctor"> <summary> Initializes a new instance of the FixedCommandKeyboardCustomization class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization.CommandName"> <summary> <para> fciName.</para> <para>Represents the attribte in schema: wne:fciName </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization.CommandIndex"> <summary> <para> fciIndex.</para> <para>Represents the attribte in schema: wne:fciIndex </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.FixedCommandKeyboardCustomization.Argument"> <summary> <para> swArg.</para> <para>Represents the attribte in schema: wne:swArg </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.MacroKeyboardCustomization"> <summary> <para>Defines the MacroKeyboardCustomization Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:macro.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.MacroWllType"> <summary> Defines the MacroWllType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MacroWllType.#ctor"> <summary> Initializes a new instance of the MacroWllType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.MacroWllType.MacroName"> <summary> <para> macroName.</para> <para>Represents the attribte in schema: wne:macroName </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MacroKeyboardCustomization.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MacroKeyboardCustomization.#ctor"> <summary> Initializes a new instance of the MacroKeyboardCustomization class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MacroKeyboardCustomization.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.MacroKeyboardCustomization.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.MacroKeyboardCustomization.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.WllMacroKeyboardCustomization"> <summary> <para>Defines the WllMacroKeyboardCustomization Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:wll.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.WllMacroKeyboardCustomization.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.WllMacroKeyboardCustomization.#ctor"> <summary> Initializes a new instance of the WllMacroKeyboardCustomization class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.WllMacroKeyboardCustomization.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.WllMacroKeyboardCustomization.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.WllMacroKeyboardCustomization.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.AllocatedCommandKeyboardCustomization"> <summary> <para>Defines the AllocatedCommandKeyboardCustomization Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:acd.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.AcceleratorKeymapType"> <summary> Defines the AcceleratorKeymapType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AcceleratorKeymapType.#ctor"> <summary> Initializes a new instance of the AcceleratorKeymapType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AcceleratorKeymapType.AcceleratorName"> <summary> <para> acdName.</para> <para>Represents the attribte in schema: wne:acdName </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandKeyboardCustomization.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandKeyboardCustomization.#ctor"> <summary> Initializes a new instance of the AllocatedCommandKeyboardCustomization class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandKeyboardCustomization.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommandKeyboardCustomization.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommandKeyboardCustomization.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifestEntry"> <summary> <para>Defines the AllocatedCommandManifestEntry Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:acdEntry.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifestEntry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifestEntry.#ctor"> <summary> Initializes a new instance of the AllocatedCommandManifestEntry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifestEntry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifestEntry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifestEntry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.CharacterInsertion"> <summary> <para>Defines the CharacterInsertion Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:wch.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.CharacterInsertion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.CharacterInsertion.#ctor"> <summary> Initializes a new instance of the CharacterInsertion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.CharacterInsertion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.CharacterInsertion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.CharacterInsertion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.CharacterInsertion.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: wne:val </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.KeyMapEntry"> <summary> <para>Defines the KeyMapEntry Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:keymap.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FixedCommandKeyboardCustomization <wne:fci></description></item> <item><description>MacroKeyboardCustomization <wne:macro></description></item> <item><description>AllocatedCommandKeyboardCustomization <wne:acd></description></item> <item><description>WllMacroKeyboardCustomization <wne:wll></description></item> <item><description>CharacterInsertion <wne:wch></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.#ctor"> <summary> Initializes a new instance of the KeyMapEntry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the KeyMapEntry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the KeyMapEntry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.#ctor(System.String)"> <summary> Initializes a new instance of the KeyMapEntry class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.CharacterMapPrimary"> <summary> <para> chmPrimary.</para> <para>Represents the attribte in schema: wne:chmPrimary </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.CharacterMapSecondary"> <summary> <para> chmSecondary.</para> <para>Represents the attribte in schema: wne:chmSecondary </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.KeyCodePrimary"> <summary> <para> kcmPrimary.</para> <para>Represents the attribte in schema: wne:kcmPrimary </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.KeyCodeSecondary"> <summary> <para> kcmSecondary.</para> <para>Represents the attribte in schema: wne:kcmSecondary </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.Mask"> <summary> <para> mask.</para> <para>Represents the attribte in schema: wne:mask </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.FixedCommandKeyboardCustomization"> <summary> <para> FixedCommandKeyboardCustomization.</para> <para>Represents the element tag in schema: wne:fci </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.MacroKeyboardCustomization"> <summary> <para> MacroKeyboardCustomization.</para> <para>Represents the element tag in schema: wne:macro </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.AllocatedCommandKeyboardCustomization"> <summary> <para> AllocatedCommandKeyboardCustomization.</para> <para>Represents the element tag in schema: wne:acd </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.WllMacroKeyboardCustomization"> <summary> <para> WllMacroKeyboardCustomization.</para> <para>Represents the element tag in schema: wne:wll </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapEntry.CharacterInsertion"> <summary> <para> CharacterInsertion.</para> <para>Represents the element tag in schema: wne:wch </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.AllocatedCommand"> <summary> <para>Defines the AllocatedCommand Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:acd.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.#ctor"> <summary> Initializes a new instance of the AllocatedCommand class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.ArgumentValue"> <summary> <para> argValue.</para> <para>Represents the attribte in schema: wne:argValue </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.CommandBasedOn"> <summary> <para> fciBasedOn.</para> <para>Represents the attribte in schema: wne:fciBasedOn </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.CommandIndexBasedOn"> <summary> <para> fciIndexBasedOn.</para> <para>Represents the attribte in schema: wne:fciIndexBasedOn </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommand.AcceleratorName"> <summary> <para> acdName.</para> <para>Represents the attribte in schema: wne:acdName </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.Mcd"> <summary> <para>Defines the Mcd Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:mcd.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcd.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcd.#ctor"> <summary> Initializes a new instance of the Mcd class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Mcd.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcd.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcd.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcd.MacroName"> <summary> <para> macroName.</para> <para>Represents the attribte in schema: wne:macroName </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcd.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: wne:name </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcd.MenuHelp"> <summary> <para> menuHelp.</para> <para>Represents the attribte in schema: wne:menuHelp </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcd.BEncrypt"> <summary> <para> bEncrypt.</para> <para>Represents the attribte in schema: wne:bEncrypt </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Mcd.Cmg"> <summary> <para> cmg.</para> <para>Represents the attribte in schema: wne:cmg </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocNewXsdString"> <summary> <para>Defines the EventDocNewXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocNew.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocNewXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocNewXsdString.#ctor"> <summary> Initializes a new instance of the EventDocNewXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocNewXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocNewXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocNewXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocNewXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocNewXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocOpenXsdString"> <summary> <para>Defines the EventDocOpenXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocOpen.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocOpenXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocOpenXsdString.#ctor"> <summary> Initializes a new instance of the EventDocOpenXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocOpenXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocOpenXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocOpenXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocOpenXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocOpenXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocCloseXsdString"> <summary> <para>Defines the EventDocCloseXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocClose.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocCloseXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocCloseXsdString.#ctor"> <summary> Initializes a new instance of the EventDocCloseXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocCloseXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocCloseXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocCloseXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocCloseXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocCloseXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocSyncXsdString"> <summary> <para>Defines the EventDocSyncXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocSync.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocSyncXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocSyncXsdString.#ctor"> <summary> Initializes a new instance of the EventDocSyncXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocSyncXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocSyncXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocSyncXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocSyncXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocSyncXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocXmlAfterInsertXsdString"> <summary> <para>Defines the EventDocXmlAfterInsertXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocXmlAfterInsert.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocXmlAfterInsertXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocXmlAfterInsertXsdString.#ctor"> <summary> Initializes a new instance of the EventDocXmlAfterInsertXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocXmlAfterInsertXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocXmlAfterInsertXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocXmlAfterInsertXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocXmlAfterInsertXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocXmlAfterInsertXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocXmlBeforeDeleteXsdString"> <summary> <para>Defines the EventDocXmlBeforeDeleteXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocXmlBeforeDelete.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocXmlBeforeDeleteXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocXmlBeforeDeleteXsdString.#ctor"> <summary> Initializes a new instance of the EventDocXmlBeforeDeleteXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocXmlBeforeDeleteXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocXmlBeforeDeleteXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocXmlBeforeDeleteXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocXmlBeforeDeleteXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocXmlBeforeDeleteXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocContentControlAfterInsertXsdString"> <summary> <para>Defines the EventDocContentControlAfterInsertXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocContentControlAfterInsert.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlAfterInsertXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlAfterInsertXsdString.#ctor"> <summary> Initializes a new instance of the EventDocContentControlAfterInsertXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlAfterInsertXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocContentControlAfterInsertXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlAfterInsertXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlAfterInsertXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlAfterInsertXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocContentControlBeforeDeleteXsdString"> <summary> <para>Defines the EventDocContentControlBeforeDeleteXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocContentControlBeforeDelete.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlBeforeDeleteXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlBeforeDeleteXsdString.#ctor"> <summary> Initializes a new instance of the EventDocContentControlBeforeDeleteXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlBeforeDeleteXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocContentControlBeforeDeleteXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlBeforeDeleteXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlBeforeDeleteXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlBeforeDeleteXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnExistXsdString"> <summary> <para>Defines the EventDocContentControlOnExistXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocContentControlOnExit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnExistXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnExistXsdString.#ctor"> <summary> Initializes a new instance of the EventDocContentControlOnExistXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnExistXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocContentControlOnExistXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnExistXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnExistXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnExistXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnEnterXsdString"> <summary> <para>Defines the EventDocContentControlOnEnterXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocContentControlOnEnter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnEnterXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnEnterXsdString.#ctor"> <summary> Initializes a new instance of the EventDocContentControlOnEnterXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnEnterXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocContentControlOnEnterXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnEnterXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnEnterXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlOnEnterXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocStoreUpdateXsdString"> <summary> <para>Defines the EventDocStoreUpdateXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocStoreUpdate.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocStoreUpdateXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocStoreUpdateXsdString.#ctor"> <summary> Initializes a new instance of the EventDocStoreUpdateXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocStoreUpdateXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocStoreUpdateXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocStoreUpdateXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocStoreUpdateXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocStoreUpdateXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocContentControlUpdateXsdString"> <summary> <para>Defines the EventDocContentControlUpdateXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocContentControlContentUpdate.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlUpdateXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlUpdateXsdString.#ctor"> <summary> Initializes a new instance of the EventDocContentControlUpdateXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlUpdateXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocContentControlUpdateXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocContentControlUpdateXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlUpdateXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocContentControlUpdateXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.EventDocBuildingBlockAfterInsertXsdString"> <summary> <para>Defines the EventDocBuildingBlockAfterInsertXsdString Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:eventDocBuildingBlockAfterInsert.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocBuildingBlockAfterInsertXsdString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocBuildingBlockAfterInsertXsdString.#ctor"> <summary> Initializes a new instance of the EventDocBuildingBlockAfterInsertXsdString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocBuildingBlockAfterInsertXsdString.#ctor(System.String)"> <summary> Initializes a new instance of the EventDocBuildingBlockAfterInsertXsdString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.EventDocBuildingBlockAfterInsertXsdString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocBuildingBlockAfterInsertXsdString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.EventDocBuildingBlockAfterInsertXsdString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.DocEvents"> <summary> <para>Defines the DocEvents Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:docEvents.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EventDocNewXsdString <wne:eventDocNew></description></item> <item><description>EventDocOpenXsdString <wne:eventDocOpen></description></item> <item><description>EventDocCloseXsdString <wne:eventDocClose></description></item> <item><description>EventDocSyncXsdString <wne:eventDocSync></description></item> <item><description>EventDocXmlAfterInsertXsdString <wne:eventDocXmlAfterInsert></description></item> <item><description>EventDocXmlBeforeDeleteXsdString <wne:eventDocXmlBeforeDelete></description></item> <item><description>EventDocContentControlAfterInsertXsdString <wne:eventDocContentControlAfterInsert></description></item> <item><description>EventDocContentControlBeforeDeleteXsdString <wne:eventDocContentControlBeforeDelete></description></item> <item><description>EventDocContentControlOnExistXsdString <wne:eventDocContentControlOnExit></description></item> <item><description>EventDocContentControlOnEnterXsdString <wne:eventDocContentControlOnEnter></description></item> <item><description>EventDocStoreUpdateXsdString <wne:eventDocStoreUpdate></description></item> <item><description>EventDocContentControlUpdateXsdString <wne:eventDocContentControlContentUpdate></description></item> <item><description>EventDocBuildingBlockAfterInsertXsdString <wne:eventDocBuildingBlockAfterInsert></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.DocEvents.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.DocEvents.#ctor"> <summary> Initializes a new instance of the DocEvents class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.DocEvents.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DocEvents class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.DocEvents.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DocEvents class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.DocEvents.#ctor(System.String)"> <summary> Initializes a new instance of the DocEvents class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.DocEvents.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocNewXsdString"> <summary> <para> EventDocNewXsdString.</para> <para>Represents the element tag in schema: wne:eventDocNew </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocOpenXsdString"> <summary> <para> EventDocOpenXsdString.</para> <para>Represents the element tag in schema: wne:eventDocOpen </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocCloseXsdString"> <summary> <para> EventDocCloseXsdString.</para> <para>Represents the element tag in schema: wne:eventDocClose </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocSyncXsdString"> <summary> <para> EventDocSyncXsdString.</para> <para>Represents the element tag in schema: wne:eventDocSync </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocXmlAfterInsertXsdString"> <summary> <para> EventDocXmlAfterInsertXsdString.</para> <para>Represents the element tag in schema: wne:eventDocXmlAfterInsert </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocXmlBeforeDeleteXsdString"> <summary> <para> EventDocXmlBeforeDeleteXsdString.</para> <para>Represents the element tag in schema: wne:eventDocXmlBeforeDelete </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocContentControlAfterInsertXsdString"> <summary> <para> EventDocContentControlAfterInsertXsdString.</para> <para>Represents the element tag in schema: wne:eventDocContentControlAfterInsert </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocContentControlBeforeDeleteXsdString"> <summary> <para> EventDocContentControlBeforeDeleteXsdString.</para> <para>Represents the element tag in schema: wne:eventDocContentControlBeforeDelete </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocContentControlOnExistXsdString"> <summary> <para> EventDocContentControlOnExistXsdString.</para> <para>Represents the element tag in schema: wne:eventDocContentControlOnExit </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocContentControlOnEnterXsdString"> <summary> <para> EventDocContentControlOnEnterXsdString.</para> <para>Represents the element tag in schema: wne:eventDocContentControlOnEnter </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocStoreUpdateXsdString"> <summary> <para> EventDocStoreUpdateXsdString.</para> <para>Represents the element tag in schema: wne:eventDocStoreUpdate </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocContentControlUpdateXsdString"> <summary> <para> EventDocContentControlUpdateXsdString.</para> <para>Represents the element tag in schema: wne:eventDocContentControlContentUpdate </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.DocEvents.EventDocBuildingBlockAfterInsertXsdString"> <summary> <para> EventDocBuildingBlockAfterInsertXsdString.</para> <para>Represents the element tag in schema: wne:eventDocBuildingBlockAfterInsert </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest"> <summary> <para>Defines the AllocatedCommandManifest Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:acdManifest.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AllocatedCommandManifestEntry <wne:acdEntry></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest.#ctor"> <summary> Initializes a new instance of the AllocatedCommandManifest class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AllocatedCommandManifest class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AllocatedCommandManifest class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest.#ctor(System.String)"> <summary> Initializes a new instance of the AllocatedCommandManifest class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommandManifest.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.ToolbarData"> <summary> <para>Defines the ToolbarData Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:toolbarData.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.ToolbarData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.ToolbarData.#ctor"> <summary> Initializes a new instance of the ToolbarData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.ToolbarData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.ToolbarData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.ToolbarData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.ToolbarData.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations"> <summary> <para>Defines the KeyMapCustomizations Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:keymaps.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>KeyMapEntry <wne:keymap></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.KeymapsType"> <summary> Defines the KeymapsType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>KeyMapEntry <wne:keymap></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeymapsType.#ctor"> <summary> Initializes a new instance of the KeymapsType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeymapsType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the KeymapsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeymapsType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the KeymapsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeymapsType.#ctor(System.String)"> <summary> Initializes a new instance of the KeymapsType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations.#ctor"> <summary> Initializes a new instance of the KeyMapCustomizations class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the KeyMapCustomizations class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the KeyMapCustomizations class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations.#ctor(System.String)"> <summary> Initializes a new instance of the KeyMapCustomizations class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.KeyMapCustomizations.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization"> <summary> <para>Defines the MismatchedKeyMapCustomization Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:keymapsBad.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>KeyMapEntry <wne:keymap></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization.#ctor"> <summary> Initializes a new instance of the MismatchedKeyMapCustomization class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MismatchedKeyMapCustomization class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MismatchedKeyMapCustomization class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization.#ctor(System.String)"> <summary> Initializes a new instance of the MismatchedKeyMapCustomization class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.MismatchedKeyMapCustomization.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.Toolbars"> <summary> <para>Defines the Toolbars Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:toolbars.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AllocatedCommandManifest <wne:acdManifest></description></item> <item><description>ToolbarData <wne:toolbarData></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Toolbars.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Toolbars.#ctor"> <summary> Initializes a new instance of the Toolbars class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Toolbars.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Toolbars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Toolbars.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Toolbars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Toolbars.#ctor(System.String)"> <summary> Initializes a new instance of the Toolbars class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.Toolbars.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Toolbars.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.Toolbars.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.AllocatedCommands"> <summary> <para>Defines the AllocatedCommands Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:acds.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AllocatedCommand <wne:acd></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommands.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommands.#ctor"> <summary> Initializes a new instance of the AllocatedCommands class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommands.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AllocatedCommands class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommands.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AllocatedCommands class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommands.#ctor(System.String)"> <summary> Initializes a new instance of the AllocatedCommands class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.AllocatedCommands.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommands.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.AllocatedCommands.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.RecordIncluded"> <summary> <para>Defines the RecordIncluded Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:active.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.RecordIncluded.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.RecordIncluded.#ctor"> <summary> Initializes a new instance of the RecordIncluded class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.RecordIncluded.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.RecordIncluded.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.RecordIncluded.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.RecordIncluded.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: wne:val </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.RecordHashCode"> <summary> <para>Defines the RecordHashCode Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:hash.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.RecordHashCode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.RecordHashCode.#ctor"> <summary> Initializes a new instance of the RecordHashCode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.RecordHashCode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.RecordHashCode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.RecordHashCode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.RecordHashCode.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: wne:val </para> </summary> <remark> xmlns:wne=http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord"> <summary> <para>Defines the SingleDataSourceRecord Class.</para> <para>When the object is serialized out as xml, its qualified name is wne:recipientData.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RecordIncluded <wne:active></description></item> <item><description>RecordHashCode <wne:hash></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.#ctor"> <summary> Initializes a new instance of the SingleDataSourceRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SingleDataSourceRecord class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SingleDataSourceRecord class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.#ctor(System.String)"> <summary> Initializes a new instance of the SingleDataSourceRecord class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.RecordIncluded"> <summary> <para> RecordIncluded.</para> <para>Represents the element tag in schema: wne:active </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office.Word.SingleDataSourceRecord.RecordHashCode"> <summary> <para> RecordHashCode.</para> <para>Represents the element tag in schema: wne:hash </para> </summary> <remark> xmlns:wne = http://schemas.microsoft.com/office/word/2006/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion"> <summary> <para>Defines the RunConflictInsertion Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:conflictIns.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>RunConflictInsertion <w14:conflictIns></description></item> <item><description>RunConflictDeletion <w14:conflictDel></description></item> <item><description>DocumentFormat.OpenXml.Math.Paragraph <m:oMathPara></description></item> <item><description>DocumentFormat.OpenXml.Math.OfficeMath <m:oMath></description></item> <item><description>DocumentFormat.OpenXml.Math.Accent <m:acc></description></item> <item><description>DocumentFormat.OpenXml.Math.Bar <m:bar></description></item> <item><description>DocumentFormat.OpenXml.Math.Box <m:box></description></item> <item><description>DocumentFormat.OpenXml.Math.BorderBox <m:borderBox></description></item> <item><description>DocumentFormat.OpenXml.Math.Delimiter <m:d></description></item> <item><description>DocumentFormat.OpenXml.Math.EquationArray <m:eqArr></description></item> <item><description>DocumentFormat.OpenXml.Math.Fraction <m:f></description></item> <item><description>DocumentFormat.OpenXml.Math.MathFunction <m:func></description></item> <item><description>DocumentFormat.OpenXml.Math.GroupChar <m:groupChr></description></item> <item><description>DocumentFormat.OpenXml.Math.LimitLower <m:limLow></description></item> <item><description>DocumentFormat.OpenXml.Math.LimitUpper <m:limUpp></description></item> <item><description>DocumentFormat.OpenXml.Math.Matrix <m:m></description></item> <item><description>DocumentFormat.OpenXml.Math.Nary <m:nary></description></item> <item><description>DocumentFormat.OpenXml.Math.Phantom <m:phant></description></item> <item><description>DocumentFormat.OpenXml.Math.Radical <m:rad></description></item> <item><description>DocumentFormat.OpenXml.Math.PreSubSuper <m:sPre></description></item> <item><description>DocumentFormat.OpenXml.Math.Subscript <m:sSub></description></item> <item><description>DocumentFormat.OpenXml.Math.SubSuperscript <m:sSubSup></description></item> <item><description>DocumentFormat.OpenXml.Math.Superscript <m:sSup></description></item> <item><description>DocumentFormat.OpenXml.Math.Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Run <w:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BidirectionalOverride <w:bdo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BidirectionalEmbedding <w:dir></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.RunTrackChangeType"> <summary> Defines the RunTrackChangeType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>RunConflictInsertion <w14:conflictIns></description></item> <item><description>RunConflictDeletion <w14:conflictDel></description></item> <item><description>DocumentFormat.OpenXml.Math.Paragraph <m:oMathPara></description></item> <item><description>DocumentFormat.OpenXml.Math.OfficeMath <m:oMath></description></item> <item><description>DocumentFormat.OpenXml.Math.Accent <m:acc></description></item> <item><description>DocumentFormat.OpenXml.Math.Bar <m:bar></description></item> <item><description>DocumentFormat.OpenXml.Math.Box <m:box></description></item> <item><description>DocumentFormat.OpenXml.Math.BorderBox <m:borderBox></description></item> <item><description>DocumentFormat.OpenXml.Math.Delimiter <m:d></description></item> <item><description>DocumentFormat.OpenXml.Math.EquationArray <m:eqArr></description></item> <item><description>DocumentFormat.OpenXml.Math.Fraction <m:f></description></item> <item><description>DocumentFormat.OpenXml.Math.MathFunction <m:func></description></item> <item><description>DocumentFormat.OpenXml.Math.GroupChar <m:groupChr></description></item> <item><description>DocumentFormat.OpenXml.Math.LimitLower <m:limLow></description></item> <item><description>DocumentFormat.OpenXml.Math.LimitUpper <m:limUpp></description></item> <item><description>DocumentFormat.OpenXml.Math.Matrix <m:m></description></item> <item><description>DocumentFormat.OpenXml.Math.Nary <m:nary></description></item> <item><description>DocumentFormat.OpenXml.Math.Phantom <m:phant></description></item> <item><description>DocumentFormat.OpenXml.Math.Radical <m:rad></description></item> <item><description>DocumentFormat.OpenXml.Math.PreSubSuper <m:sPre></description></item> <item><description>DocumentFormat.OpenXml.Math.Subscript <m:sSub></description></item> <item><description>DocumentFormat.OpenXml.Math.SubSuperscript <m:sSubSup></description></item> <item><description>DocumentFormat.OpenXml.Math.Superscript <m:sSup></description></item> <item><description>DocumentFormat.OpenXml.Math.Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Run <w:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BidirectionalOverride <w:bdo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BidirectionalEmbedding <w:dir></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunTrackChangeType.#ctor"> <summary> Initializes a new instance of the RunTrackChangeType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunTrackChangeType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RunTrackChangeType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunTrackChangeType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RunTrackChangeType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunTrackChangeType.#ctor(System.String)"> <summary> Initializes a new instance of the RunTrackChangeType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RunTrackChangeType.Author"> <summary> <para> author.</para> <para>Represents the attribte in schema: w:author </para> </summary> <remark> xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RunTrackChangeType.Date"> <summary> <para> date.</para> <para>Represents the attribte in schema: w:date </para> </summary> <remark> xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RunTrackChangeType.Id"> <summary> <para> Annotation Identifier.</para> <para>Represents the attribte in schema: w:id </para> </summary> <remark> xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion.#ctor"> <summary> Initializes a new instance of the RunConflictInsertion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RunConflictInsertion class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RunConflictInsertion class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion.#ctor(System.String)"> <summary> Initializes a new instance of the RunConflictInsertion class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion"> <summary> <para>Defines the RunConflictDeletion Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:conflictDel.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>RunConflictInsertion <w14:conflictIns></description></item> <item><description>RunConflictDeletion <w14:conflictDel></description></item> <item><description>DocumentFormat.OpenXml.Math.Paragraph <m:oMathPara></description></item> <item><description>DocumentFormat.OpenXml.Math.OfficeMath <m:oMath></description></item> <item><description>DocumentFormat.OpenXml.Math.Accent <m:acc></description></item> <item><description>DocumentFormat.OpenXml.Math.Bar <m:bar></description></item> <item><description>DocumentFormat.OpenXml.Math.Box <m:box></description></item> <item><description>DocumentFormat.OpenXml.Math.BorderBox <m:borderBox></description></item> <item><description>DocumentFormat.OpenXml.Math.Delimiter <m:d></description></item> <item><description>DocumentFormat.OpenXml.Math.EquationArray <m:eqArr></description></item> <item><description>DocumentFormat.OpenXml.Math.Fraction <m:f></description></item> <item><description>DocumentFormat.OpenXml.Math.MathFunction <m:func></description></item> <item><description>DocumentFormat.OpenXml.Math.GroupChar <m:groupChr></description></item> <item><description>DocumentFormat.OpenXml.Math.LimitLower <m:limLow></description></item> <item><description>DocumentFormat.OpenXml.Math.LimitUpper <m:limUpp></description></item> <item><description>DocumentFormat.OpenXml.Math.Matrix <m:m></description></item> <item><description>DocumentFormat.OpenXml.Math.Nary <m:nary></description></item> <item><description>DocumentFormat.OpenXml.Math.Phantom <m:phant></description></item> <item><description>DocumentFormat.OpenXml.Math.Radical <m:rad></description></item> <item><description>DocumentFormat.OpenXml.Math.PreSubSuper <m:sPre></description></item> <item><description>DocumentFormat.OpenXml.Math.Subscript <m:sSub></description></item> <item><description>DocumentFormat.OpenXml.Math.SubSuperscript <m:sSubSup></description></item> <item><description>DocumentFormat.OpenXml.Math.Superscript <m:sSup></description></item> <item><description>DocumentFormat.OpenXml.Math.Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Run <w:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BidirectionalOverride <w:bdo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BidirectionalEmbedding <w:dir></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion.#ctor"> <summary> Initializes a new instance of the RunConflictDeletion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RunConflictDeletion class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RunConflictDeletion class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion.#ctor(System.String)"> <summary> Initializes a new instance of the RunConflictDeletion class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.ConflictInsertion"> <summary> <para>Defines the ConflictInsertion Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:conflictIns.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.TrackChangeType"> <summary> Defines the TrackChangeType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.TrackChangeType.#ctor"> <summary> Initializes a new instance of the TrackChangeType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TrackChangeType.Author"> <summary> <para> author.</para> <para>Represents the attribte in schema: w:author </para> </summary> <remark> xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TrackChangeType.Date"> <summary> <para> date.</para> <para>Represents the attribte in schema: w:date </para> </summary> <remark> xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TrackChangeType.Id"> <summary> <para> Annotation Identifier.</para> <para>Represents the attribte in schema: w:id </para> </summary> <remark> xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictInsertion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictInsertion.#ctor"> <summary> Initializes a new instance of the ConflictInsertion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictInsertion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ConflictInsertion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ConflictInsertion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.ConflictDeletion"> <summary> <para>Defines the ConflictDeletion Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:conflictDel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictDeletion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictDeletion.#ctor"> <summary> Initializes a new instance of the ConflictDeletion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictDeletion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ConflictDeletion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ConflictDeletion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart"> <summary> <para>Defines the CustomXmlConflictInsertionRangeStart Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:customXmlConflictInsRangeStart.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart.#ctor"> <summary> Initializes a new instance of the CustomXmlConflictInsertionRangeStart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart"> <summary> <para>Defines the CustomXmlConflictDeletionRangeStart Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:customXmlConflictDelRangeStart.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart.#ctor"> <summary> Initializes a new instance of the CustomXmlConflictDeletionRangeStart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Tint"> <summary> <para>Defines the Tint Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:tint.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PositiveFixedPercentageType"> <summary> Defines the PositiveFixedPercentageType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PositiveFixedPercentageType.#ctor"> <summary> Initializes a new instance of the PositiveFixedPercentageType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PositiveFixedPercentageType.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Tint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Tint.#ctor"> <summary> Initializes a new instance of the Tint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Tint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Tint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Tint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Shade"> <summary> <para>Defines the Shade Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:shade.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shade.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shade.#ctor"> <summary> Initializes a new instance of the Shade class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shade.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shade.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shade.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Alpha"> <summary> <para>Defines the Alpha Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:alpha.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Alpha.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Alpha.#ctor"> <summary> Initializes a new instance of the Alpha class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Alpha.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Alpha.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Alpha.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.HueModulation"> <summary> <para>Defines the HueModulation Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:hueMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.HueModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.HueModulation.#ctor"> <summary> Initializes a new instance of the HueModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.HueModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.HueModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.HueModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.HueModulation.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Saturation"> <summary> <para>Defines the Saturation Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:sat.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PercentageType"> <summary> Defines the PercentageType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PercentageType.#ctor"> <summary> Initializes a new instance of the PercentageType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PercentageType.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Saturation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Saturation.#ctor"> <summary> Initializes a new instance of the Saturation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Saturation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Saturation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Saturation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.SaturationOffset"> <summary> <para>Defines the SaturationOffset Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:satOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SaturationOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SaturationOffset.#ctor"> <summary> Initializes a new instance of the SaturationOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SaturationOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SaturationOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SaturationOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.SaturationModulation"> <summary> <para>Defines the SaturationModulation Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:satMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SaturationModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SaturationModulation.#ctor"> <summary> Initializes a new instance of the SaturationModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SaturationModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SaturationModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SaturationModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Luminance"> <summary> <para>Defines the Luminance Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:lum.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Luminance.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Luminance.#ctor"> <summary> Initializes a new instance of the Luminance class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Luminance.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Luminance.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Luminance.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LuminanceOffset"> <summary> <para>Defines the LuminanceOffset Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:lumOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LuminanceOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LuminanceOffset.#ctor"> <summary> Initializes a new instance of the LuminanceOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LuminanceOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LuminanceOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LuminanceOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LuminanceModulation"> <summary> <para>Defines the LuminanceModulation Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:lumMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LuminanceModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LuminanceModulation.#ctor"> <summary> Initializes a new instance of the LuminanceModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LuminanceModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LuminanceModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LuminanceModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex"> <summary> <para>Defines the RgbColorModelHex Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:srgbClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tint <w14:tint></description></item> <item><description>Shade <w14:shade></description></item> <item><description>Alpha <w14:alpha></description></item> <item><description>HueModulation <w14:hueMod></description></item> <item><description>Saturation <w14:sat></description></item> <item><description>SaturationOffset <w14:satOff></description></item> <item><description>SaturationModulation <w14:satMod></description></item> <item><description>Luminance <w14:lum></description></item> <item><description>LuminanceOffset <w14:lumOff></description></item> <item><description>LuminanceModulation <w14:lumMod></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.#ctor"> <summary> Initializes a new instance of the RgbColorModelHex class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RgbColorModelHex class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RgbColorModelHex class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.#ctor(System.String)"> <summary> Initializes a new instance of the RgbColorModelHex class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RgbColorModelHex.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.SchemeColor"> <summary> <para>Defines the SchemeColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:schemeClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tint <w14:tint></description></item> <item><description>Shade <w14:shade></description></item> <item><description>Alpha <w14:alpha></description></item> <item><description>HueModulation <w14:hueMod></description></item> <item><description>Saturation <w14:sat></description></item> <item><description>SaturationOffset <w14:satOff></description></item> <item><description>SaturationModulation <w14:satMod></description></item> <item><description>Luminance <w14:lum></description></item> <item><description>LuminanceOffset <w14:lumOff></description></item> <item><description>LuminanceModulation <w14:lumMod></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.#ctor"> <summary> Initializes a new instance of the SchemeColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SchemeColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SchemeColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.#ctor(System.String)"> <summary> Initializes a new instance of the SchemeColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SchemeColor.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LinearShadeProperties"> <summary> <para>Defines the LinearShadeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:lin.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LinearShadeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LinearShadeProperties.#ctor"> <summary> Initializes a new instance of the LinearShadeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LinearShadeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LinearShadeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LinearShadeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LinearShadeProperties.Angle"> <summary> <para> ang.</para> <para>Represents the attribte in schema: w14:ang </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LinearShadeProperties.Scaled"> <summary> <para> scaled.</para> <para>Represents the attribte in schema: w14:scaled </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties"> <summary> <para>Defines the PathShadeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:path.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FillToRectangle <w14:fillToRect></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.#ctor"> <summary> Initializes a new instance of the PathShadeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PathShadeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PathShadeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the PathShadeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.Path"> <summary> <para> path.</para> <para>Represents the attribte in schema: w14:path </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PathShadeProperties.FillToRectangle"> <summary> <para> FillToRectangle.</para> <para>Represents the element tag in schema: w14:fillToRect </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NoFillEmpty"> <summary> <para>Defines the NoFillEmpty Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:noFill.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.EmptyType"> <summary> Defines the EmptyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.EmptyType.#ctor"> <summary> Initializes a new instance of the EmptyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NoFillEmpty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NoFillEmpty.#ctor"> <summary> Initializes a new instance of the NoFillEmpty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NoFillEmpty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NoFillEmpty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NoFillEmpty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.RoundEmpty"> <summary> <para>Defines the RoundEmpty Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:round.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RoundEmpty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RoundEmpty.#ctor"> <summary> Initializes a new instance of the RoundEmpty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.RoundEmpty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RoundEmpty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.RoundEmpty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.BevelEmpty"> <summary> <para>Defines the BevelEmpty Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:bevel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelEmpty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelEmpty.#ctor"> <summary> Initializes a new instance of the BevelEmpty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelEmpty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelEmpty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelEmpty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.EntityPickerEmpty"> <summary> <para>Defines the EntityPickerEmpty Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:entityPicker.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.EntityPickerEmpty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.EntityPickerEmpty.#ctor"> <summary> Initializes a new instance of the EntityPickerEmpty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.EntityPickerEmpty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.EntityPickerEmpty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.EntityPickerEmpty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties"> <summary> <para>Defines the SolidColorFillProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:solidFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelHex <w14:srgbClr></description></item> <item><description>SchemeColor <w14:schemeClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.#ctor"> <summary> Initializes a new instance of the SolidColorFillProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SolidColorFillProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SolidColorFillProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.#ctor(System.String)"> <summary> Initializes a new instance of the SolidColorFillProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.RgbColorModelHex"> <summary> <para> RgbColorModelHex.</para> <para>Represents the element tag in schema: w14:srgbClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SolidColorFillProperties.SchemeColor"> <summary> <para> SchemeColor.</para> <para>Represents the element tag in schema: w14:schemeClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties"> <summary> <para>Defines the GradientFillProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:gradFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GradientStopList <w14:gsLst></description></item> <item><description>LinearShadeProperties <w14:lin></description></item> <item><description>PathShadeProperties <w14:path></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.#ctor"> <summary> Initializes a new instance of the GradientFillProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GradientFillProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GradientFillProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.#ctor(System.String)"> <summary> Initializes a new instance of the GradientFillProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientFillProperties.GradientStopList"> <summary> <para> GradientStopList.</para> <para>Represents the element tag in schema: w14:gsLst </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashProperties"> <summary> <para>Defines the PresetLineDashProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:prstDash.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashProperties.#ctor"> <summary> Initializes a new instance of the PresetLineDashProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashProperties.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LineJoinMiterProperties"> <summary> <para>Defines the LineJoinMiterProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:miter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LineJoinMiterProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LineJoinMiterProperties.#ctor"> <summary> Initializes a new instance of the LineJoinMiterProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LineJoinMiterProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LineJoinMiterProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LineJoinMiterProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LineJoinMiterProperties.Limit"> <summary> <para> lim.</para> <para>Represents the attribte in schema: w14:lim </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Glow"> <summary> <para>Defines the Glow Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:glow.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelHex <w14:srgbClr></description></item> <item><description>SchemeColor <w14:schemeClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Glow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Glow.#ctor"> <summary> Initializes a new instance of the Glow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Glow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Glow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Glow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Glow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Glow.#ctor(System.String)"> <summary> Initializes a new instance of the Glow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Glow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Glow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Glow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Glow.GlowRadius"> <summary> <para> rad.</para> <para>Represents the attribte in schema: w14:rad </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Glow.RgbColorModelHex"> <summary> <para> RgbColorModelHex.</para> <para>Represents the element tag in schema: w14:srgbClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Glow.SchemeColor"> <summary> <para> SchemeColor.</para> <para>Represents the element tag in schema: w14:schemeClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Shadow"> <summary> <para>Defines the Shadow Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:shadow.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelHex <w14:srgbClr></description></item> <item><description>SchemeColor <w14:schemeClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shadow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shadow.#ctor"> <summary> Initializes a new instance of the Shadow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shadow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shadow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shadow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shadow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shadow.#ctor(System.String)"> <summary> Initializes a new instance of the Shadow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Shadow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.BlurRadius"> <summary> <para> blurRad.</para> <para>Represents the attribte in schema: w14:blurRad </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.DistanceFromText"> <summary> <para> dist.</para> <para>Represents the attribte in schema: w14:dist </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.DirectionAngle"> <summary> <para> dir.</para> <para>Represents the attribte in schema: w14:dir </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.HorizontalScalingFactor"> <summary> <para> sx.</para> <para>Represents the attribte in schema: w14:sx </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.VerticalScalingFactor"> <summary> <para> sy.</para> <para>Represents the attribte in schema: w14:sy </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.HorizontalSkewAngle"> <summary> <para> kx.</para> <para>Represents the attribte in schema: w14:kx </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.VerticalSkewAngle"> <summary> <para> ky.</para> <para>Represents the attribte in schema: w14:ky </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.Alignment"> <summary> <para> algn.</para> <para>Represents the attribte in schema: w14:algn </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.RgbColorModelHex"> <summary> <para> RgbColorModelHex.</para> <para>Represents the element tag in schema: w14:srgbClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Shadow.SchemeColor"> <summary> <para> SchemeColor.</para> <para>Represents the element tag in schema: w14:schemeClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Reflection"> <summary> <para>Defines the Reflection Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:reflection.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Reflection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Reflection.#ctor"> <summary> Initializes a new instance of the Reflection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Reflection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.BlurRadius"> <summary> <para> blurRad.</para> <para>Represents the attribte in schema: w14:blurRad </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.StartingOpacity"> <summary> <para> stA.</para> <para>Represents the attribte in schema: w14:stA </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.StartPosition"> <summary> <para> stPos.</para> <para>Represents the attribte in schema: w14:stPos </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.EndingOpacity"> <summary> <para> endA.</para> <para>Represents the attribte in schema: w14:endA </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.EndPosition"> <summary> <para> endPos.</para> <para>Represents the attribte in schema: w14:endPos </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.DistanceFromText"> <summary> <para> dist.</para> <para>Represents the attribte in schema: w14:dist </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.DirectionAngle"> <summary> <para> dir.</para> <para>Represents the attribte in schema: w14:dir </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.FadeDirection"> <summary> <para> fadeDir.</para> <para>Represents the attribte in schema: w14:fadeDir </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.HorizontalScalingFactor"> <summary> <para> sx.</para> <para>Represents the attribte in schema: w14:sx </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.VerticalScalingFactor"> <summary> <para> sy.</para> <para>Represents the attribte in schema: w14:sy </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.HorizontalSkewAngle"> <summary> <para> kx.</para> <para>Represents the attribte in schema: w14:kx </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.VerticalSkewAngle"> <summary> <para> ky.</para> <para>Represents the attribte in schema: w14:ky </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Reflection.Alignment"> <summary> <para> algn.</para> <para>Represents the attribte in schema: w14:algn </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect"> <summary> <para>Defines the TextOutlineEffect Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:textOutline.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFillEmpty <w14:noFill></description></item> <item><description>SolidColorFillProperties <w14:solidFill></description></item> <item><description>GradientFillProperties <w14:gradFill></description></item> <item><description>PresetLineDashProperties <w14:prstDash></description></item> <item><description>RoundEmpty <w14:round></description></item> <item><description>BevelEmpty <w14:bevel></description></item> <item><description>LineJoinMiterProperties <w14:miter></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.#ctor"> <summary> Initializes a new instance of the TextOutlineEffect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextOutlineEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextOutlineEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.#ctor(System.String)"> <summary> Initializes a new instance of the TextOutlineEffect class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.LineWidth"> <summary> <para> w.</para> <para>Represents the attribte in schema: w14:w </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.CapType"> <summary> <para> cap.</para> <para>Represents the attribte in schema: w14:cap </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.Compound"> <summary> <para> cmpd.</para> <para>Represents the attribte in schema: w14:cmpd </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.TextOutlineEffect.Alignment"> <summary> <para> algn.</para> <para>Represents the attribte in schema: w14:algn </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect"> <summary> <para>Defines the FillTextEffect Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:textFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFillEmpty <w14:noFill></description></item> <item><description>SolidColorFillProperties <w14:solidFill></description></item> <item><description>GradientFillProperties <w14:gradFill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.#ctor"> <summary> Initializes a new instance of the FillTextEffect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FillTextEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FillTextEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.#ctor(System.String)"> <summary> Initializes a new instance of the FillTextEffect class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.NoFillEmpty"> <summary> <para> NoFillEmpty.</para> <para>Represents the element tag in schema: w14:noFill </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.SolidColorFillProperties"> <summary> <para> SolidColorFillProperties.</para> <para>Represents the element tag in schema: w14:solidFill </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillTextEffect.GradientFillProperties"> <summary> <para> GradientFillProperties.</para> <para>Represents the element tag in schema: w14:gradFill </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Scene3D"> <summary> <para>Defines the Scene3D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:scene3d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Camera <w14:camera></description></item> <item><description>LightRig <w14:lightRig></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Scene3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Scene3D.#ctor"> <summary> Initializes a new instance of the Scene3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Scene3D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Scene3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Scene3D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Scene3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Scene3D.#ctor(System.String)"> <summary> Initializes a new instance of the Scene3D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Scene3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Scene3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Scene3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Scene3D.Camera"> <summary> <para> Camera.</para> <para>Represents the element tag in schema: w14:camera </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Scene3D.LightRig"> <summary> <para> LightRig.</para> <para>Represents the element tag in schema: w14:lightRig </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Properties3D"> <summary> <para>Defines the Properties3D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:props3d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BevelTop <w14:bevelT></description></item> <item><description>BevelBottom <w14:bevelB></description></item> <item><description>ExtrusionColor <w14:extrusionClr></description></item> <item><description>ContourColor <w14:contourClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Properties3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Properties3D.#ctor"> <summary> Initializes a new instance of the Properties3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Properties3D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Properties3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Properties3D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Properties3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Properties3D.#ctor(System.String)"> <summary> Initializes a new instance of the Properties3D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Properties3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.ExtrusionHeight"> <summary> <para> extrusionH.</para> <para>Represents the attribte in schema: w14:extrusionH </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.ContourWidth"> <summary> <para> contourW.</para> <para>Represents the attribte in schema: w14:contourW </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.PresetMaterialType"> <summary> <para> prstMaterial.</para> <para>Represents the attribte in schema: w14:prstMaterial </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.BevelTop"> <summary> <para> BevelTop.</para> <para>Represents the element tag in schema: w14:bevelT </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.BevelBottom"> <summary> <para> BevelBottom.</para> <para>Represents the element tag in schema: w14:bevelB </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.ExtrusionColor"> <summary> <para> ExtrusionColor.</para> <para>Represents the element tag in schema: w14:extrusionClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Properties3D.ContourColor"> <summary> <para> ContourColor.</para> <para>Represents the element tag in schema: w14:contourClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Ligatures"> <summary> <para>Defines the Ligatures Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:ligatures.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Ligatures.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Ligatures.#ctor"> <summary> Initializes a new instance of the Ligatures class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Ligatures.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Ligatures.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Ligatures.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Ligatures.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NumberingFormat"> <summary> <para>Defines the NumberingFormat Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:numForm.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NumberingFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NumberingFormat.#ctor"> <summary> Initializes a new instance of the NumberingFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NumberingFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NumberingFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NumberingFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NumberingFormat.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NumberSpacing"> <summary> <para>Defines the NumberSpacing Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:numSpacing.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NumberSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NumberSpacing.#ctor"> <summary> Initializes a new instance of the NumberSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NumberSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NumberSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NumberSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NumberSpacing.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.StylisticSets"> <summary> <para>Defines the StylisticSets Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:stylisticSets.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StyleSet <w14:styleSet></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StylisticSets.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StylisticSets.#ctor"> <summary> Initializes a new instance of the StylisticSets class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StylisticSets.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StylisticSets class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StylisticSets.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StylisticSets class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StylisticSets.#ctor(System.String)"> <summary> Initializes a new instance of the StylisticSets class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StylisticSets.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.StylisticSets.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.StylisticSets.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.ContextualAlternatives"> <summary> <para>Defines the ContextualAlternatives Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:cntxtAlts.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.OnOffType"> <summary> Defines the OnOffType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.OnOffType.#ctor"> <summary> Initializes a new instance of the OnOffType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.OnOffType.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContextualAlternatives.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContextualAlternatives.#ctor"> <summary> Initializes a new instance of the ContextualAlternatives class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContextualAlternatives.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContextualAlternatives.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContextualAlternatives.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.ConflictMode"> <summary> <para>Defines the ConflictMode Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:conflictMode.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictMode.#ctor"> <summary> Initializes a new instance of the ConflictMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ConflictMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ConflictMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ConflictMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DiscardImageEditingData"> <summary> <para>Defines the DiscardImageEditingData Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:discardImageEditingData.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DiscardImageEditingData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DiscardImageEditingData.#ctor"> <summary> Initializes a new instance of the DiscardImageEditingData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DiscardImageEditingData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DiscardImageEditingData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DiscardImageEditingData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Checked"> <summary> <para>Defines the Checked Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:checked.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Checked.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Checked.#ctor"> <summary> Initializes a new instance of the Checked class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Checked.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Checked.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Checked.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.ContentPart"> <summary> <para>Defines the ContentPart Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:contentPart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>WordNonVisualContentPartProperties <w14:nvContentPr></description></item> <item><description>WordNonVisualContentPartShapeProperties <w14:nvContentPartPr></description></item> <item><description>Transform2D <w14:xfrm></description></item> <item><description>OfficeArtExtensionList <w14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContentPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContentPart.#ctor"> <summary> Initializes a new instance of the ContentPart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContentPart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContentPart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContentPart.#ctor(System.String)"> <summary> Initializes a new instance of the ContentPart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContentPart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContentPart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContentPart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContentPart.BlackWhiteMode"> <summary> <para> bwMode.</para> <para>Represents the attribte in schema: w14:bwMode </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContentPart.RelationshipId"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContentPart.WordNonVisualContentPartProperties"> <summary> <para> WordNonVisualContentPartProperties.</para> <para>Represents the element tag in schema: w14:nvContentPr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContentPart.WordNonVisualContentPartShapeProperties"> <summary> <para> WordNonVisualContentPartShapeProperties.</para> <para>Represents the element tag in schema: w14:nvContentPartPr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContentPart.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: w14:xfrm </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContentPart.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: w14:extLst </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DocumentId"> <summary> <para>Defines the DocumentId Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:docId.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DocumentId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DocumentId.#ctor"> <summary> Initializes a new instance of the DocumentId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DocumentId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DocumentId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DocumentId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DocumentId.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd"> <summary> <para>Defines the CustomXmlConflictInsertionRangeEnd Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:customXmlConflictInsRangeEnd.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.MarkupType"> <summary> Defines the MarkupType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.MarkupType.#ctor"> <summary> Initializes a new instance of the MarkupType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.MarkupType.Id"> <summary> <para> Annotation Identifier.</para> <para>Represents the attribte in schema: w:id </para> </summary> <remark> xmlns:w=http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd.#ctor"> <summary> Initializes a new instance of the CustomXmlConflictInsertionRangeEnd class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd"> <summary> <para>Defines the CustomXmlConflictDeletionRangeEnd Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:customXmlConflictDelRangeEnd.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd.#ctor"> <summary> Initializes a new instance of the CustomXmlConflictDeletionRangeEnd class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DefaultImageDpi"> <summary> <para>Defines the DefaultImageDpi Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:defaultImageDpi.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DefaultImageDpi.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DefaultImageDpi.#ctor"> <summary> Initializes a new instance of the DefaultImageDpi class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DefaultImageDpi.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DefaultImageDpi.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DefaultImageDpi.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DefaultImageDpi.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox"> <summary> <para>Defines the SdtContentCheckBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:checkbox.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Checked <w14:checked></description></item> <item><description>CheckedState <w14:checkedState></description></item> <item><description>UncheckedState <w14:uncheckedState></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.#ctor"> <summary> Initializes a new instance of the SdtContentCheckBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SdtContentCheckBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SdtContentCheckBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.#ctor(System.String)"> <summary> Initializes a new instance of the SdtContentCheckBox class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.Checked"> <summary> <para> Checked.</para> <para>Represents the element tag in schema: w14:checked </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.CheckedState"> <summary> <para> CheckedState.</para> <para>Represents the element tag in schema: w14:checkedState </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox.UncheckedState"> <summary> <para> UncheckedState.</para> <para>Represents the element tag in schema: w14:uncheckedState </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties"> <summary> <para>Defines the NonVisualInkProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:cNvInkPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartPropertiesType"> <summary> Defines the NonVisualInkContentPartPropertiesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartPropertiesType.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartPropertiesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartPropertiesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartPropertiesType.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartPropertiesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartPropertiesType.IsComment"> <summary> <para> isComment.</para> <para>Represents the attribte in schema: isComment </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartPropertiesType.ContentPartLocks"> <summary> <para> ContentPartLocks.</para> <para>Represents the element tag in schema: a14:cpLocks </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartPropertiesType.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: a14:extLst </para> </summary> <remark> xmlns:a14 = http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties"> <summary> <para>Defines the NonVisualInkContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:cNvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ContentPartLocks <a14:cpLocks></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.OfficeArtExtensionList <a14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties.#ctor"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualInkContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.NonVisualInkContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties"> <summary> <para>Defines the WordNonVisualContentPartProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:nvContentPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <w14:cNvPr></description></item> <item><description>NonVisualInkProperties <w14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <w14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.WordContentPartNonVisualType"> <summary> Defines the WordContentPartNonVisualType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <w14:cNvPr></description></item> <item><description>NonVisualInkProperties <w14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <w14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordContentPartNonVisualType.#ctor"> <summary> Initializes a new instance of the WordContentPartNonVisualType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordContentPartNonVisualType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WordContentPartNonVisualType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordContentPartNonVisualType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WordContentPartNonVisualType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordContentPartNonVisualType.#ctor(System.String)"> <summary> Initializes a new instance of the WordContentPartNonVisualType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.WordContentPartNonVisualType.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: w14:cNvPr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.WordContentPartNonVisualType.NonVisualInkProperties"> <summary> <para> NonVisualInkProperties.</para> <para>Represents the element tag in schema: w14:cNvInkPr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.WordContentPartNonVisualType.NonVisualInkContentPartProperties"> <summary> <para> NonVisualInkContentPartProperties.</para> <para>Represents the element tag in schema: w14:cNvContentPartPr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties.#ctor"> <summary> Initializes a new instance of the WordNonVisualContentPartProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WordNonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WordNonVisualContentPartProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties.#ctor(System.String)"> <summary> Initializes a new instance of the WordNonVisualContentPartProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties"> <summary> <para>Defines the WordNonVisualContentPartShapeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:nvContentPartPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <w14:cNvPr></description></item> <item><description>NonVisualInkProperties <w14:cNvInkPr></description></item> <item><description>NonVisualInkContentPartProperties <w14:cNvContentPartPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties.#ctor"> <summary> Initializes a new instance of the WordNonVisualContentPartShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WordNonVisualContentPartShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WordNonVisualContentPartShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the WordNonVisualContentPartShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.WordNonVisualContentPartShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Transform2D"> <summary> <para>Defines the Transform2D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Transform2D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Transform2D.#ctor"> <summary> Initializes a new instance of the Transform2D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Transform2D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Transform2D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Transform2D.#ctor(System.String)"> <summary> Initializes a new instance of the Transform2D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Transform2D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Transform2D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Transform2D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Transform2D.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Transform2D.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Transform2D.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Transform2D.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Transform2D.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.GradientStop"> <summary> <para>Defines the GradientStop Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:gs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelHex <w14:srgbClr></description></item> <item><description>SchemeColor <w14:schemeClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStop.#ctor"> <summary> Initializes a new instance of the GradientStop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStop.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GradientStop class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStop.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GradientStop class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStop.#ctor(System.String)"> <summary> Initializes a new instance of the GradientStop class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientStop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientStop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientStop.StopPosition"> <summary> <para> pos.</para> <para>Represents the attribte in schema: w14:pos </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientStop.RgbColorModelHex"> <summary> <para> RgbColorModelHex.</para> <para>Represents the element tag in schema: w14:srgbClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientStop.SchemeColor"> <summary> <para> SchemeColor.</para> <para>Represents the element tag in schema: w14:schemeClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle"> <summary> <para>Defines the FillToRectangle Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:fillToRect.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.#ctor"> <summary> Initializes a new instance of the FillToRectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.Left"> <summary> <para> l.</para> <para>Represents the attribte in schema: w14:l </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.Top"> <summary> <para> t.</para> <para>Represents the attribte in schema: w14:t </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.Right"> <summary> <para> r.</para> <para>Represents the attribte in schema: w14:r </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.FillToRectangle.Bottom"> <summary> <para> b.</para> <para>Represents the attribte in schema: w14:b </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.GradientStopList"> <summary> <para>Defines the GradientStopList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:gsLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GradientStop <w14:gs></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStopList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStopList.#ctor"> <summary> Initializes a new instance of the GradientStopList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStopList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GradientStopList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStopList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GradientStopList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStopList.#ctor(System.String)"> <summary> Initializes a new instance of the GradientStopList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.GradientStopList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientStopList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.GradientStopList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates"> <summary> <para>Defines the SphereCoordinates Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:rot.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates.#ctor"> <summary> Initializes a new instance of the SphereCoordinates class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates.Lattitude"> <summary> <para> lat.</para> <para>Represents the attribte in schema: w14:lat </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates.Longitude"> <summary> <para> lon.</para> <para>Represents the attribte in schema: w14:lon </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.SphereCoordinates.Revolution"> <summary> <para> rev.</para> <para>Represents the attribte in schema: w14:rev </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Camera"> <summary> <para>Defines the Camera Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:camera.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Camera.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Camera.#ctor"> <summary> Initializes a new instance of the Camera class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Camera.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Camera.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Camera.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Camera.PresetCameraType"> <summary> <para> prst.</para> <para>Represents the attribte in schema: w14:prst </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LightRig"> <summary> <para>Defines the LightRig Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:lightRig.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SphereCoordinates <w14:rot></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LightRig.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LightRig.#ctor"> <summary> Initializes a new instance of the LightRig class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LightRig.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LightRig class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LightRig.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LightRig class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LightRig.#ctor(System.String)"> <summary> Initializes a new instance of the LightRig class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.LightRig.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LightRig.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LightRig.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LightRig.LightRigType"> <summary> <para> rig.</para> <para>Represents the attribte in schema: w14:rig </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LightRig.LightDirectionType"> <summary> <para> dir.</para> <para>Represents the attribte in schema: w14:dir </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.LightRig.SphereCoordinates"> <summary> <para> SphereCoordinates.</para> <para>Represents the element tag in schema: w14:rot </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.BevelTop"> <summary> <para>Defines the BevelTop Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:bevelT.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.BevelType"> <summary> Defines the BevelType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelType.#ctor"> <summary> Initializes a new instance of the BevelType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelType.Width"> <summary> <para> w.</para> <para>Represents the attribte in schema: w14:w </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelType.Height"> <summary> <para> h.</para> <para>Represents the attribte in schema: w14:h </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelType.PresetProfileType"> <summary> <para> prst.</para> <para>Represents the attribte in schema: w14:prst </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelTop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelTop.#ctor"> <summary> Initializes a new instance of the BevelTop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelTop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelTop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelTop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.BevelBottom"> <summary> <para>Defines the BevelBottom Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:bevelB.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelBottom.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelBottom.#ctor"> <summary> Initializes a new instance of the BevelBottom class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.BevelBottom.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelBottom.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.BevelBottom.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor"> <summary> <para>Defines the ExtrusionColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:extrusionClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelHex <w14:srgbClr></description></item> <item><description>SchemeColor <w14:schemeClr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.ColorType"> <summary> Defines the ColorType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelHex <w14:srgbClr></description></item> <item><description>SchemeColor <w14:schemeClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ColorType.#ctor"> <summary> Initializes a new instance of the ColorType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ColorType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ColorType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ColorType.#ctor(System.String)"> <summary> Initializes a new instance of the ColorType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ColorType.RgbColorModelHex"> <summary> <para> RgbColorModelHex.</para> <para>Represents the element tag in schema: w14:srgbClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ColorType.SchemeColor"> <summary> <para> SchemeColor.</para> <para>Represents the element tag in schema: w14:schemeClr </para> </summary> <remark> xmlns:w14 = http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor.#ctor"> <summary> Initializes a new instance of the ExtrusionColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtrusionColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtrusionColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor.#ctor(System.String)"> <summary> Initializes a new instance of the ExtrusionColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ExtrusionColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.ContourColor"> <summary> <para>Defines the ContourColor Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:contourClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelHex <w14:srgbClr></description></item> <item><description>SchemeColor <w14:schemeClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContourColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContourColor.#ctor"> <summary> Initializes a new instance of the ContourColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContourColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContourColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContourColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContourColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContourColor.#ctor(System.String)"> <summary> Initializes a new instance of the ContourColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.ContourColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContourColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.ContourColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.StyleSet"> <summary> <para>Defines the StyleSet Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:styleSet.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StyleSet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StyleSet.#ctor"> <summary> Initializes a new instance of the StyleSet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.StyleSet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.StyleSet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.StyleSet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.StyleSet.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: w14:id </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.StyleSet.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.CheckedState"> <summary> <para>Defines the CheckedState Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:checkedState.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.CheckBoxSymbolType"> <summary> Defines the CheckBoxSymbolType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CheckBoxSymbolType.#ctor"> <summary> Initializes a new instance of the CheckBoxSymbolType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CheckBoxSymbolType.Font"> <summary> <para> font.</para> <para>Represents the attribte in schema: w14:font </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CheckBoxSymbolType.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: w14:val </para> </summary> <remark> xmlns:w14=http://schemas.microsoft.com/office/word/2010/wordml </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CheckedState.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CheckedState.#ctor"> <summary> Initializes a new instance of the CheckedState class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.CheckedState.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CheckedState.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.CheckedState.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.UncheckedState"> <summary> <para>Defines the UncheckedState Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is w14:uncheckedState.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.UncheckedState.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.UncheckedState.#ctor"> <summary> Initializes a new instance of the UncheckedState class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.UncheckedState.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.UncheckedState.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.UncheckedState.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.OnOffValues"> <summary> Defines the OnOffValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.OnOffValues.True"> <summary> true. <para>When the item is serialized out as xml, its value is "true".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.OnOffValues.False"> <summary> false. <para>When the item is serialized out as xml, its value is "false".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.OnOffValues.Zero"> <summary> 0. <para>When the item is serialized out as xml, its value is "0".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.OnOffValues.One"> <summary> 1. <para>When the item is serialized out as xml, its value is "1".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues"> <summary> Defines the SchemeColorValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.BackgroundColor"> <summary> bg1. <para>When the item is serialized out as xml, its value is "bg1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.TextColor"> <summary> tx1. <para>When the item is serialized out as xml, its value is "tx1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.AdditionalBackgroundColor"> <summary> bg2. <para>When the item is serialized out as xml, its value is "bg2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.AdditionalTextColor"> <summary> tx2. <para>When the item is serialized out as xml, its value is "tx2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.ExtraSchemeColor1"> <summary> accent1. <para>When the item is serialized out as xml, its value is "accent1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.ExtraSchemeColor2"> <summary> accent2. <para>When the item is serialized out as xml, its value is "accent2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.ExtraSchemeColor3"> <summary> accent3. <para>When the item is serialized out as xml, its value is "accent3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.ExtraSchemeColor4"> <summary> accent4. <para>When the item is serialized out as xml, its value is "accent4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.ExtraSchemeColor5"> <summary> accent5. <para>When the item is serialized out as xml, its value is "accent5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.ExtraSchemeColor6"> <summary> accent6. <para>When the item is serialized out as xml, its value is "accent6".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.HyperlinkColor"> <summary> hlink. <para>When the item is serialized out as xml, its value is "hlink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.FollowedHyperlinkColor"> <summary> folHlink. <para>When the item is serialized out as xml, its value is "folHlink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.MainDarkColor1"> <summary> dk1. <para>When the item is serialized out as xml, its value is "dk1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.MainLightColor1"> <summary> lt1. <para>When the item is serialized out as xml, its value is "lt1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.MainDarkColor2"> <summary> dk2. <para>When the item is serialized out as xml, its value is "dk2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.MainLightColor2"> <summary> lt2. <para>When the item is serialized out as xml, its value is "lt2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.SchemeColorValues.AutoColor"> <summary> phClr. <para>When the item is serialized out as xml, its value is "phClr".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues"> <summary> Defines the RectangleAlignmentValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.None"> <summary> none. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.TopLeft"> <summary> tl. <para>When the item is serialized out as xml, its value is "tl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.Top"> <summary> t. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.TopRight"> <summary> tr. <para>When the item is serialized out as xml, its value is "tr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.Left"> <summary> l. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.Center"> <summary> ctr. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.Right"> <summary> r. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.BottomLeft"> <summary> bl. <para>When the item is serialized out as xml, its value is "bl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.Bottom"> <summary> b. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.RectangleAlignmentValues.BottomRight"> <summary> br. <para>When the item is serialized out as xml, its value is "br".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PathShadeTypeValues"> <summary> Defines the PathShadeTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PathShadeTypeValues.Shape"> <summary> shape. <para>When the item is serialized out as xml, its value is "shape".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PathShadeTypeValues.Circle"> <summary> circle. <para>When the item is serialized out as xml, its value is "circle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PathShadeTypeValues.Rect"> <summary> rect. <para>When the item is serialized out as xml, its value is "rect".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LineCapValues"> <summary> Defines the LineCapValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LineCapValues.Round"> <summary> rnd. <para>When the item is serialized out as xml, its value is "rnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LineCapValues.Square"> <summary> sq. <para>When the item is serialized out as xml, its value is "sq".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LineCapValues.Flat"> <summary> flat. <para>When the item is serialized out as xml, its value is "flat".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues"> <summary> Defines the PresetLineDashValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.Solid"> <summary> solid. <para>When the item is serialized out as xml, its value is "solid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.Dot"> <summary> dot. <para>When the item is serialized out as xml, its value is "dot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.SysDot"> <summary> sysDot. <para>When the item is serialized out as xml, its value is "sysDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.Dash"> <summary> dash. <para>When the item is serialized out as xml, its value is "dash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.SysDash"> <summary> sysDash. <para>When the item is serialized out as xml, its value is "sysDash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.LongDash"> <summary> lgDash. <para>When the item is serialized out as xml, its value is "lgDash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.DashDot"> <summary> dashDot. <para>When the item is serialized out as xml, its value is "dashDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.SystemDashDot"> <summary> sysDashDot. <para>When the item is serialized out as xml, its value is "sysDashDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.LongDashDot"> <summary> lgDashDot. <para>When the item is serialized out as xml, its value is "lgDashDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.LongDashDotDot"> <summary> lgDashDotDot. <para>When the item is serialized out as xml, its value is "lgDashDotDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetLineDashValues.SystemDashDotDot"> <summary> sysDashDotDot. <para>When the item is serialized out as xml, its value is "sysDashDotDot".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PenAlignmentValues"> <summary> Defines the PenAlignmentValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PenAlignmentValues.Center"> <summary> ctr. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PenAlignmentValues.Inset"> <summary> in. <para>When the item is serialized out as xml, its value is "in".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.CompoundLineValues"> <summary> Defines the CompoundLineValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.CompoundLineValues.Simple"> <summary> sng. <para>When the item is serialized out as xml, its value is "sng".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.CompoundLineValues.Double"> <summary> dbl. <para>When the item is serialized out as xml, its value is "dbl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.CompoundLineValues.ThickThin"> <summary> thickThin. <para>When the item is serialized out as xml, its value is "thickThin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.CompoundLineValues.ThinThick"> <summary> thinThick. <para>When the item is serialized out as xml, its value is "thinThick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.CompoundLineValues.Triple"> <summary> tri. <para>When the item is serialized out as xml, its value is "tri".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues"> <summary> Defines the PresetCameraTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueTopLeft"> <summary> legacyObliqueTopLeft. <para>When the item is serialized out as xml, its value is "legacyObliqueTopLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueTop"> <summary> legacyObliqueTop. <para>When the item is serialized out as xml, its value is "legacyObliqueTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueTopRight"> <summary> legacyObliqueTopRight. <para>When the item is serialized out as xml, its value is "legacyObliqueTopRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueLeft"> <summary> legacyObliqueLeft. <para>When the item is serialized out as xml, its value is "legacyObliqueLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueFront"> <summary> legacyObliqueFront. <para>When the item is serialized out as xml, its value is "legacyObliqueFront".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueRight"> <summary> legacyObliqueRight. <para>When the item is serialized out as xml, its value is "legacyObliqueRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueBottomLeft"> <summary> legacyObliqueBottomLeft. <para>When the item is serialized out as xml, its value is "legacyObliqueBottomLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueBottom"> <summary> legacyObliqueBottom. <para>When the item is serialized out as xml, its value is "legacyObliqueBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyObliqueBottomRight"> <summary> legacyObliqueBottomRight. <para>When the item is serialized out as xml, its value is "legacyObliqueBottomRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveTopLeft"> <summary> legacyPerspectiveTopLeft. <para>When the item is serialized out as xml, its value is "legacyPerspectiveTopLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveTop"> <summary> legacyPerspectiveTop. <para>When the item is serialized out as xml, its value is "legacyPerspectiveTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveTopRight"> <summary> legacyPerspectiveTopRight. <para>When the item is serialized out as xml, its value is "legacyPerspectiveTopRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveLeft"> <summary> legacyPerspectiveLeft. <para>When the item is serialized out as xml, its value is "legacyPerspectiveLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveFront"> <summary> legacyPerspectiveFront. <para>When the item is serialized out as xml, its value is "legacyPerspectiveFront".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveRight"> <summary> legacyPerspectiveRight. <para>When the item is serialized out as xml, its value is "legacyPerspectiveRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveBottomLeft"> <summary> legacyPerspectiveBottomLeft. <para>When the item is serialized out as xml, its value is "legacyPerspectiveBottomLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveBottom"> <summary> legacyPerspectiveBottom. <para>When the item is serialized out as xml, its value is "legacyPerspectiveBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.LegacyPerspectiveBottomRight"> <summary> legacyPerspectiveBottomRight. <para>When the item is serialized out as xml, its value is "legacyPerspectiveBottomRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.OrthographicFront"> <summary> orthographicFront. <para>When the item is serialized out as xml, its value is "orthographicFront".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricTopUp"> <summary> isometricTopUp. <para>When the item is serialized out as xml, its value is "isometricTopUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricTopDown"> <summary> isometricTopDown. <para>When the item is serialized out as xml, its value is "isometricTopDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricBottomUp"> <summary> isometricBottomUp. <para>When the item is serialized out as xml, its value is "isometricBottomUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricBottomDown"> <summary> isometricBottomDown. <para>When the item is serialized out as xml, its value is "isometricBottomDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricLeftUp"> <summary> isometricLeftUp. <para>When the item is serialized out as xml, its value is "isometricLeftUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricLeftDown"> <summary> isometricLeftDown. <para>When the item is serialized out as xml, its value is "isometricLeftDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricRightUp"> <summary> isometricRightUp. <para>When the item is serialized out as xml, its value is "isometricRightUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricRightDown"> <summary> isometricRightDown. <para>When the item is serialized out as xml, its value is "isometricRightDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis1Left"> <summary> isometricOffAxis1Left. <para>When the item is serialized out as xml, its value is "isometricOffAxis1Left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis1Right"> <summary> isometricOffAxis1Right. <para>When the item is serialized out as xml, its value is "isometricOffAxis1Right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis1Top"> <summary> isometricOffAxis1Top. <para>When the item is serialized out as xml, its value is "isometricOffAxis1Top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis2Left"> <summary> isometricOffAxis2Left. <para>When the item is serialized out as xml, its value is "isometricOffAxis2Left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis2Right"> <summary> isometricOffAxis2Right. <para>When the item is serialized out as xml, its value is "isometricOffAxis2Right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis2Top"> <summary> isometricOffAxis2Top. <para>When the item is serialized out as xml, its value is "isometricOffAxis2Top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis3Left"> <summary> isometricOffAxis3Left. <para>When the item is serialized out as xml, its value is "isometricOffAxis3Left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis3Right"> <summary> isometricOffAxis3Right. <para>When the item is serialized out as xml, its value is "isometricOffAxis3Right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis3Bottom"> <summary> isometricOffAxis3Bottom. <para>When the item is serialized out as xml, its value is "isometricOffAxis3Bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis4Left"> <summary> isometricOffAxis4Left. <para>When the item is serialized out as xml, its value is "isometricOffAxis4Left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis4Right"> <summary> isometricOffAxis4Right. <para>When the item is serialized out as xml, its value is "isometricOffAxis4Right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.IsometricOffAxis4Bottom"> <summary> isometricOffAxis4Bottom. <para>When the item is serialized out as xml, its value is "isometricOffAxis4Bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.ObliqueTopLeft"> <summary> obliqueTopLeft. <para>When the item is serialized out as xml, its value is "obliqueTopLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.ObliqueTop"> <summary> obliqueTop. <para>When the item is serialized out as xml, its value is "obliqueTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.ObliqueTopRight"> <summary> obliqueTopRight. <para>When the item is serialized out as xml, its value is "obliqueTopRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.ObliqueLeft"> <summary> obliqueLeft. <para>When the item is serialized out as xml, its value is "obliqueLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.ObliqueRight"> <summary> obliqueRight. <para>When the item is serialized out as xml, its value is "obliqueRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.ObliqueBottomLeft"> <summary> obliqueBottomLeft. <para>When the item is serialized out as xml, its value is "obliqueBottomLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.ObliqueBottom"> <summary> obliqueBottom. <para>When the item is serialized out as xml, its value is "obliqueBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.ObliqueBottomRight"> <summary> obliqueBottomRight. <para>When the item is serialized out as xml, its value is "obliqueBottomRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveFront"> <summary> perspectiveFront. <para>When the item is serialized out as xml, its value is "perspectiveFront".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveLeft"> <summary> perspectiveLeft. <para>When the item is serialized out as xml, its value is "perspectiveLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveRight"> <summary> perspectiveRight. <para>When the item is serialized out as xml, its value is "perspectiveRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveAbove"> <summary> perspectiveAbove. <para>When the item is serialized out as xml, its value is "perspectiveAbove".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveBelow"> <summary> perspectiveBelow. <para>When the item is serialized out as xml, its value is "perspectiveBelow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveAboveLeftFacing"> <summary> perspectiveAboveLeftFacing. <para>When the item is serialized out as xml, its value is "perspectiveAboveLeftFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveAboveRightFacing"> <summary> perspectiveAboveRightFacing. <para>When the item is serialized out as xml, its value is "perspectiveAboveRightFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveContrastingLeftFacing"> <summary> perspectiveContrastingLeftFacing. <para>When the item is serialized out as xml, its value is "perspectiveContrastingLeftFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveContrastingRightFacing"> <summary> perspectiveContrastingRightFacing. <para>When the item is serialized out as xml, its value is "perspectiveContrastingRightFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveHeroicLeftFacing"> <summary> perspectiveHeroicLeftFacing. <para>When the item is serialized out as xml, its value is "perspectiveHeroicLeftFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveHeroicRightFacing"> <summary> perspectiveHeroicRightFacing. <para>When the item is serialized out as xml, its value is "perspectiveHeroicRightFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveHeroicExtremeLeftFacing"> <summary> perspectiveHeroicExtremeLeftFacing. <para>When the item is serialized out as xml, its value is "perspectiveHeroicExtremeLeftFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveHeroicExtremeRightFacing"> <summary> perspectiveHeroicExtremeRightFacing. <para>When the item is serialized out as xml, its value is "perspectiveHeroicExtremeRightFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveRelaxed"> <summary> perspectiveRelaxed. <para>When the item is serialized out as xml, its value is "perspectiveRelaxed".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetCameraTypeValues.PerspectiveRelaxedModerately"> <summary> perspectiveRelaxedModerately. <para>When the item is serialized out as xml, its value is "perspectiveRelaxedModerately".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues"> <summary> Defines the LightRigTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyFlat1"> <summary> legacyFlat1. <para>When the item is serialized out as xml, its value is "legacyFlat1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyFlat2"> <summary> legacyFlat2. <para>When the item is serialized out as xml, its value is "legacyFlat2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyFlat3"> <summary> legacyFlat3. <para>When the item is serialized out as xml, its value is "legacyFlat3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyFlat4"> <summary> legacyFlat4. <para>When the item is serialized out as xml, its value is "legacyFlat4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyNormal1"> <summary> legacyNormal1. <para>When the item is serialized out as xml, its value is "legacyNormal1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyNormal2"> <summary> legacyNormal2. <para>When the item is serialized out as xml, its value is "legacyNormal2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyNormal3"> <summary> legacyNormal3. <para>When the item is serialized out as xml, its value is "legacyNormal3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyNormal4"> <summary> legacyNormal4. <para>When the item is serialized out as xml, its value is "legacyNormal4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyHarsh1"> <summary> legacyHarsh1. <para>When the item is serialized out as xml, its value is "legacyHarsh1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyHarsh2"> <summary> legacyHarsh2. <para>When the item is serialized out as xml, its value is "legacyHarsh2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyHarsh3"> <summary> legacyHarsh3. <para>When the item is serialized out as xml, its value is "legacyHarsh3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.LegacyHarsh4"> <summary> legacyHarsh4. <para>When the item is serialized out as xml, its value is "legacyHarsh4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.ThreePoint"> <summary> threePt. <para>When the item is serialized out as xml, its value is "threePt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Balanced"> <summary> balanced. <para>When the item is serialized out as xml, its value is "balanced".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Soft"> <summary> soft. <para>When the item is serialized out as xml, its value is "soft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Harsh"> <summary> harsh. <para>When the item is serialized out as xml, its value is "harsh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Flood"> <summary> flood. <para>When the item is serialized out as xml, its value is "flood".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Contrasting"> <summary> contrasting. <para>When the item is serialized out as xml, its value is "contrasting".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Morning"> <summary> morning. <para>When the item is serialized out as xml, its value is "morning".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Sunrise"> <summary> sunrise. <para>When the item is serialized out as xml, its value is "sunrise".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Sunset"> <summary> sunset. <para>When the item is serialized out as xml, its value is "sunset".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Chilly"> <summary> chilly. <para>When the item is serialized out as xml, its value is "chilly".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Freezing"> <summary> freezing. <para>When the item is serialized out as xml, its value is "freezing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Flat"> <summary> flat. <para>When the item is serialized out as xml, its value is "flat".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.TwoPoint"> <summary> twoPt. <para>When the item is serialized out as xml, its value is "twoPt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.Glow"> <summary> glow. <para>When the item is serialized out as xml, its value is "glow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigTypeValues.BrightRoom"> <summary> brightRoom. <para>When the item is serialized out as xml, its value is "brightRoom".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues"> <summary> Defines the LightRigDirectionValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues.TopLeft"> <summary> tl. <para>When the item is serialized out as xml, its value is "tl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues.Top"> <summary> t. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues.TopRight"> <summary> tr. <para>When the item is serialized out as xml, its value is "tr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues.Left"> <summary> l. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues.Right"> <summary> r. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues.BottomLeft"> <summary> bl. <para>When the item is serialized out as xml, its value is "bl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues.Bottom"> <summary> b. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LightRigDirectionValues.BottomRight"> <summary> br. <para>When the item is serialized out as xml, its value is "br".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues"> <summary> Defines the BevelPresetTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.RelaxedInset"> <summary> relaxedInset. <para>When the item is serialized out as xml, its value is "relaxedInset".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.Circle"> <summary> circle. <para>When the item is serialized out as xml, its value is "circle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.Slope"> <summary> slope. <para>When the item is serialized out as xml, its value is "slope".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.Cross"> <summary> cross. <para>When the item is serialized out as xml, its value is "cross".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.Angle"> <summary> angle. <para>When the item is serialized out as xml, its value is "angle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.SoftRound"> <summary> softRound. <para>When the item is serialized out as xml, its value is "softRound".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.Convex"> <summary> convex. <para>When the item is serialized out as xml, its value is "convex".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.CoolSlant"> <summary> coolSlant. <para>When the item is serialized out as xml, its value is "coolSlant".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.Divot"> <summary> divot. <para>When the item is serialized out as xml, its value is "divot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.Riblet"> <summary> riblet. <para>When the item is serialized out as xml, its value is "riblet".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.HardEdge"> <summary> hardEdge. <para>When the item is serialized out as xml, its value is "hardEdge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.BevelPresetTypeValues.ArtDeco"> <summary> artDeco. <para>When the item is serialized out as xml, its value is "artDeco".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues"> <summary> Defines the PresetMaterialTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.LegacyMatte"> <summary> legacyMatte. <para>When the item is serialized out as xml, its value is "legacyMatte".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.LegacyPlastic"> <summary> legacyPlastic. <para>When the item is serialized out as xml, its value is "legacyPlastic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.LegacyMetal"> <summary> legacyMetal. <para>When the item is serialized out as xml, its value is "legacyMetal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.LegacyWireframe"> <summary> legacyWireframe. <para>When the item is serialized out as xml, its value is "legacyWireframe".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.Matte"> <summary> matte. <para>When the item is serialized out as xml, its value is "matte".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.Plastic"> <summary> plastic. <para>When the item is serialized out as xml, its value is "plastic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.Metal"> <summary> metal. <para>When the item is serialized out as xml, its value is "metal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.WarmMatte"> <summary> warmMatte. <para>When the item is serialized out as xml, its value is "warmMatte".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.TranslucentPowder"> <summary> translucentPowder. <para>When the item is serialized out as xml, its value is "translucentPowder".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.Powder"> <summary> powder. <para>When the item is serialized out as xml, its value is "powder".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.DarkEdge"> <summary> dkEdge. <para>When the item is serialized out as xml, its value is "dkEdge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.SoftEdge"> <summary> softEdge. <para>When the item is serialized out as xml, its value is "softEdge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.Clear"> <summary> clear. <para>When the item is serialized out as xml, its value is "clear".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.Flat"> <summary> flat. <para>When the item is serialized out as xml, its value is "flat".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.SoftMetal"> <summary> softmetal. <para>When the item is serialized out as xml, its value is "softmetal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.PresetMaterialTypeValues.None"> <summary> none. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues"> <summary> Defines the LigaturesValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.None"> <summary> none. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.Standard"> <summary> standard. <para>When the item is serialized out as xml, its value is "standard".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.Contextual"> <summary> contextual. <para>When the item is serialized out as xml, its value is "contextual".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.Historical"> <summary> historical. <para>When the item is serialized out as xml, its value is "historical".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.Discretional"> <summary> discretional. <para>When the item is serialized out as xml, its value is "discretional".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.StandardContextual"> <summary> standardContextual. <para>When the item is serialized out as xml, its value is "standardContextual".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.StandardHistorical"> <summary> standardHistorical. <para>When the item is serialized out as xml, its value is "standardHistorical".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.ContextualHistorical"> <summary> contextualHistorical. <para>When the item is serialized out as xml, its value is "contextualHistorical".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.StandardDiscretional"> <summary> standardDiscretional. <para>When the item is serialized out as xml, its value is "standardDiscretional".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.ContextualDiscretional"> <summary> contextualDiscretional. <para>When the item is serialized out as xml, its value is "contextualDiscretional".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.HistoricalDiscretional"> <summary> historicalDiscretional. <para>When the item is serialized out as xml, its value is "historicalDiscretional".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.StandardContextualHistorical"> <summary> standardContextualHistorical. <para>When the item is serialized out as xml, its value is "standardContextualHistorical".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.StandardContextualDiscretional"> <summary> standardContextualDiscretional. <para>When the item is serialized out as xml, its value is "standardContextualDiscretional".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.StandardHistoricalDiscretional"> <summary> standardHistoricalDiscretional. <para>When the item is serialized out as xml, its value is "standardHistoricalDiscretional".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.ContextualHistoricalDiscretional"> <summary> contextualHistoricalDiscretional. <para>When the item is serialized out as xml, its value is "contextualHistoricalDiscretional".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.LigaturesValues.All"> <summary> all. <para>When the item is serialized out as xml, its value is "all".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NumberFormValues"> <summary> Defines the NumberFormValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.NumberFormValues.Default"> <summary> default. <para>When the item is serialized out as xml, its value is "default".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.NumberFormValues.Lining"> <summary> lining. <para>When the item is serialized out as xml, its value is "lining".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.NumberFormValues.OldStyle"> <summary> oldStyle. <para>When the item is serialized out as xml, its value is "oldStyle".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.NumberSpacingValues"> <summary> Defines the NumberSpacingValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.NumberSpacingValues.Default"> <summary> default. <para>When the item is serialized out as xml, its value is "default".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.NumberSpacingValues.Proportional"> <summary> proportional. <para>When the item is serialized out as xml, its value is "proportional".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.NumberSpacingValues.Tabular"> <summary> tabular. <para>When the item is serialized out as xml, its value is "tabular".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas"> <summary> <para>Defines the WordprocessingCanvas Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpc:wpc.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackgroundFormatting <wpc:bg></description></item> <item><description>WholeFormatting <wpc:whole></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape <wps:wsp></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Pictures.Picture <pic:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.ContentPart <w14:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup <wpg:wgp></description></item> <item><description>OfficeArtExtensionList <wpc:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.#ctor"> <summary> Initializes a new instance of the WordprocessingCanvas class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WordprocessingCanvas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WordprocessingCanvas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.#ctor(System.String)"> <summary> Initializes a new instance of the WordprocessingCanvas class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.BackgroundFormatting"> <summary> <para> BackgroundFormatting.</para> <para>Represents the element tag in schema: wpc:bg </para> </summary> <remark> xmlns:wpc = http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas.WholeFormatting"> <summary> <para> WholeFormatting.</para> <para>Represents the element tag in schema: wpc:whole </para> </summary> <remark> xmlns:wpc = http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting"> <summary> <para>Defines the BackgroundFormatting Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpc:bg.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting.#ctor"> <summary> Initializes a new instance of the BackgroundFormatting class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackgroundFormatting class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackgroundFormatting class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting.#ctor(System.String)"> <summary> Initializes a new instance of the BackgroundFormatting class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.BackgroundFormatting.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting"> <summary> <para>Defines the WholeFormatting Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpc:whole.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.#ctor"> <summary> Initializes a new instance of the WholeFormatting class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WholeFormatting class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WholeFormatting class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.#ctor(System.String)"> <summary> Initializes a new instance of the WholeFormatting class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WholeFormatting.Outline"> <summary> <para> Outline.</para> <para>Represents the element tag in schema: a:ln </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpc:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset"> <summary> <para>Defines the PercentagePositionHeightOffset Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wp14:pctPosHOffset.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset.#ctor"> <summary> Initializes a new instance of the PercentagePositionHeightOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset.#ctor(System.String)"> <summary> Initializes a new instance of the PercentagePositionHeightOffset class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset"> <summary> <para>Defines the PercentagePositionVerticalOffset Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wp14:pctPosVOffset.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset.#ctor"> <summary> Initializes a new instance of the PercentagePositionVerticalOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset.#ctor(System.String)"> <summary> Initializes a new instance of the PercentagePositionVerticalOffset class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth"> <summary> <para>Defines the RelativeWidth Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wp14:sizeRelH.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PercentageWidth <wp14:pctWidth></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.#ctor"> <summary> Initializes a new instance of the RelativeWidth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RelativeWidth class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RelativeWidth class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.#ctor(System.String)"> <summary> Initializes a new instance of the RelativeWidth class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.ObjectId"> <summary> <para> relativeFrom.</para> <para>Represents the attribte in schema: relativeFrom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth.PercentageWidth"> <summary> <para> PercentageWidth.</para> <para>Represents the element tag in schema: wp14:pctWidth </para> </summary> <remark> xmlns:wp14 = http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight"> <summary> <para>Defines the RelativeHeight Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wp14:sizeRelV.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PercentageHeight <wp14:pctHeight></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.#ctor"> <summary> Initializes a new instance of the RelativeHeight class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RelativeHeight class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RelativeHeight class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.#ctor(System.String)"> <summary> Initializes a new instance of the RelativeHeight class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.RelativeFrom"> <summary> <para> relativeFrom.</para> <para>Represents the attribte in schema: relativeFrom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight.PercentageHeight"> <summary> <para> PercentageHeight.</para> <para>Represents the element tag in schema: wp14:pctHeight </para> </summary> <remark> xmlns:wp14 = http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageWidth"> <summary> <para>Defines the PercentageWidth Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wp14:pctWidth.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageWidth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageWidth.#ctor"> <summary> Initializes a new instance of the PercentageWidth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageWidth.#ctor(System.String)"> <summary> Initializes a new instance of the PercentageWidth class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageWidth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageWidth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageWidth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageHeight"> <summary> <para>Defines the PercentageHeight Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wp14:pctHeight.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageHeight.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageHeight.#ctor"> <summary> Initializes a new instance of the PercentageHeight class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageHeight.#ctor(System.String)"> <summary> Initializes a new instance of the PercentageHeight class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageHeight.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageHeight.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentageHeight.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeHorizontallyValues"> <summary> Defines the SizeRelativeHorizontallyValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeHorizontallyValues.Margin"> <summary> margin. <para>When the item is serialized out as xml, its value is "margin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeHorizontallyValues.Page"> <summary> page. <para>When the item is serialized out as xml, its value is "page".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeHorizontallyValues.LeftMargin"> <summary> leftMargin. <para>When the item is serialized out as xml, its value is "leftMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeHorizontallyValues.RightMargin"> <summary> rightMargin. <para>When the item is serialized out as xml, its value is "rightMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeHorizontallyValues.InsideMargin"> <summary> insideMargin. <para>When the item is serialized out as xml, its value is "insideMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeHorizontallyValues.OutsideMargin"> <summary> outsideMargin. <para>When the item is serialized out as xml, its value is "outsideMargin".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeVerticallyValues"> <summary> Defines the SizeRelativeVerticallyValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeVerticallyValues.Margin"> <summary> margin. <para>When the item is serialized out as xml, its value is "margin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeVerticallyValues.Page"> <summary> page. <para>When the item is serialized out as xml, its value is "page".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeVerticallyValues.TopMargin"> <summary> topMargin. <para>When the item is serialized out as xml, its value is "topMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeVerticallyValues.BottomMargin"> <summary> bottomMargin. <para>When the item is serialized out as xml, its value is "bottomMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeVerticallyValues.InsideMargin"> <summary> insideMargin. <para>When the item is serialized out as xml, its value is "insideMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Office2010.Word.Drawing.SizeRelativeVerticallyValues.OutsideMargin"> <summary> outsideMargin. <para>When the item is serialized out as xml, its value is "outsideMargin".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup"> <summary> <para>Defines the WordprocessingGroup Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:wgp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <wpg:cNvPr></description></item> <item><description>NonVisualGroupDrawingShapeProperties <wpg:cNvGrpSpPr></description></item> <item><description>GroupShapeProperties <wpg:grpSpPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape <wps:wsp></description></item> <item><description>GroupShape <wpg:grpSp></description></item> <item><description>GraphicFrame <wpg:graphicFrame></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Pictures.Picture <pic:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.ContentPart <w14:contentPart></description></item> <item><description>OfficeArtExtensionList <wpg:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroupType"> <summary> Defines the WordprocessingGroupType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <wpg:cNvPr></description></item> <item><description>NonVisualGroupDrawingShapeProperties <wpg:cNvGrpSpPr></description></item> <item><description>GroupShapeProperties <wpg:grpSpPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape <wps:wsp></description></item> <item><description>GroupShape <wpg:grpSp></description></item> <item><description>GraphicFrame <wpg:graphicFrame></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Pictures.Picture <pic:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.ContentPart <w14:contentPart></description></item> <item><description>OfficeArtExtensionList <wpg:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroupType.#ctor"> <summary> Initializes a new instance of the WordprocessingGroupType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroupType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WordprocessingGroupType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroupType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WordprocessingGroupType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroupType.#ctor(System.String)"> <summary> Initializes a new instance of the WordprocessingGroupType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroupType.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: wpg:cNvPr </para> </summary> <remark> xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroupType.NonVisualGroupDrawingShapeProperties"> <summary> <para> NonVisualGroupDrawingShapeProperties.</para> <para>Represents the element tag in schema: wpg:cNvGrpSpPr </para> </summary> <remark> xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroupType.GroupShapeProperties"> <summary> <para> GroupShapeProperties.</para> <para>Represents the element tag in schema: wpg:grpSpPr </para> </summary> <remark> xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup </remark> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup.#ctor"> <summary> Initializes a new instance of the WordprocessingGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WordprocessingGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WordprocessingGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup.#ctor(System.String)"> <summary> Initializes a new instance of the WordprocessingGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape"> <summary> <para>Defines the GroupShape Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:grpSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <wpg:cNvPr></description></item> <item><description>NonVisualGroupDrawingShapeProperties <wpg:cNvGrpSpPr></description></item> <item><description>GroupShapeProperties <wpg:grpSpPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape <wps:wsp></description></item> <item><description>GroupShape <wpg:grpSp></description></item> <item><description>GraphicFrame <wpg:graphicFrame></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Pictures.Picture <pic:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.ContentPart <w14:contentPart></description></item> <item><description>OfficeArtExtensionList <wpg:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape.#ctor"> <summary> Initializes a new instance of the GroupShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties"> <summary> <para>Defines the NonVisualGraphicFrameProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:cNvFrPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GraphicFrameLocks <a:graphicFrameLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.GraphicFrameLocks"> <summary> <para> Graphic Frame Locks.</para> <para>Represents the element tag in schema: a:graphicFrameLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGraphicFrameProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D"> <summary> <para>Defines the Transform2D Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.#ctor"> <summary> Initializes a new instance of the Transform2D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.#ctor(System.String)"> <summary> Initializes a new instance of the Transform2D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.Transform2D.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties"> <summary> <para>Defines the NonVisualGroupDrawingShapeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:cNvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GroupShapeLocks <a:grpSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupDrawingShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupDrawingShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupDrawingShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupDrawingShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.GroupShapeLocks"> <summary> <para> Group Shape Locks.</para> <para>Represents the element tag in schema: a:grpSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.NonVisualGroupDrawingShapeProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties"> <summary> <para>Defines the GroupShapeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:grpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.TransformGroup <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.#ctor"> <summary> Initializes a new instance of the GroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GroupShapeProperties.TransformGroup"> <summary> <para> 2D Transform for Grouped Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame"> <summary> <para>Defines the GraphicFrame Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wpg:graphicFrame.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <wpg:cNvPr></description></item> <item><description>NonVisualGraphicFrameProperties <wpg:cNvFrPr></description></item> <item><description>Transform2D <wpg:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Graphic <a:graphic></description></item> <item><description>OfficeArtExtensionList <wpg:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.#ctor"> <summary> Initializes a new instance of the GraphicFrame class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.#ctor(System.String)"> <summary> Initializes a new instance of the GraphicFrame class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: wpg:cNvPr </para> </summary> <remark> xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.NonVisualGraphicFrameProperties"> <summary> <para> NonVisualGraphicFrameProperties.</para> <para>Represents the element tag in schema: wpg:cNvFrPr </para> </summary> <remark> xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: wpg:xfrm </para> </summary> <remark> xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.Graphic"> <summary> <para> Graphic.</para> <para>Represents the element tag in schema: a:graphic </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.GraphicFrame.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: wpg:extLst </para> </summary> <remark> xmlns:wpg = http://schemas.microsoft.com/office/word/2010/wordprocessingGroup </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape"> <summary> <para>Defines the WordprocessingShape Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:wsp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <wps:cNvPr></description></item> <item><description>NonVisualDrawingShapeProperties <wps:cNvSpPr></description></item> <item><description>NonVisualConnectorProperties <wps:cNvCnPr></description></item> <item><description>ShapeProperties <wps:spPr></description></item> <item><description>ShapeStyle <wps:style></description></item> <item><description>OfficeArtExtensionList <wps:extLst></description></item> <item><description>TextBoxInfo2 <wps:txbx></description></item> <item><description>LinkedTextBox <wps:linkedTxbx></description></item> <item><description>TextBodyProperties <wps:bodyPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.#ctor"> <summary> Initializes a new instance of the WordprocessingShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WordprocessingShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WordprocessingShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.#ctor(System.String)"> <summary> Initializes a new instance of the WordprocessingShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.NormalEastAsianFlow"> <summary> <para> normalEastAsianFlow.</para> <para>Represents the attribte in schema: normalEastAsianFlow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: wps:cNvPr </para> </summary> <remark> xmlns:wps = http://schemas.microsoft.com/office/word/2010/wordprocessingShape </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList"> <summary> <para>Defines the OfficeArtExtensionList Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList.#ctor"> <summary> Initializes a new instance of the OfficeArtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeArtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeArtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.OfficeArtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.Title"> <summary> <para> title.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties"> <summary> <para>Defines the NonVisualDrawingShapeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:cNvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ShapeLocks <a:spLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.TextBox"> <summary> <para> Text Box.</para> <para>Represents the attribte in schema: txBox </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.ShapeLocks"> <summary> <para> Shape Locks.</para> <para>Represents the element tag in schema: a:spLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualDrawingShapeProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties"> <summary> <para>Defines the NonVisualConnectorProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:cNvCnPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks <a:cxnSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.StartConnection <a:stCxn></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EndConnection <a:endCxn></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectorProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectorProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectorProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectorProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.ConnectionShapeLocks"> <summary> <para> Connection Shape Locks.</para> <para>Represents the element tag in schema: a:cxnSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.StartConnection"> <summary> <para> Connection Start.</para> <para>Represents the element tag in schema: a:stCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.EndConnection"> <summary> <para> Connection End.</para> <para>Represents the element tag in schema: a:endCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.NonVisualConnectorProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties"> <summary> <para>Defines the ShapeProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle"> <summary> <para>Defines the ShapeStyle Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:style.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.LineReference <a:lnRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FillReference <a:fillRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectReference <a:effectRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FontReference <a:fontRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.#ctor"> <summary> Initializes a new instance of the ShapeStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.LineReference"> <summary> <para> LineReference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.FillReference"> <summary> <para> FillReference.</para> <para>Represents the element tag in schema: a:fillRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.EffectReference"> <summary> <para> EffectReference.</para> <para>Represents the element tag in schema: a:effectRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.ShapeStyle.FontReference"> <summary> <para> Font Reference.</para> <para>Represents the element tag in schema: a:fontRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2"> <summary> <para>Defines the TextBoxInfo2 Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:txbx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Wordprocessing.TextBoxContent <w:txbxContent></description></item> <item><description>OfficeArtExtensionList <wps:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.#ctor"> <summary> Initializes a new instance of the TextBoxInfo2 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBoxInfo2 class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBoxInfo2 class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.#ctor(System.String)"> <summary> Initializes a new instance of the TextBoxInfo2 class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.TextBoxContent"> <summary> <para> TextBoxContent.</para> <para>Represents the element tag in schema: w:txbxContent </para> </summary> <remark> xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBoxInfo2.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: wps:extLst </para> </summary> <remark> xmlns:wps = http://schemas.microsoft.com/office/word/2010/wordprocessingShape </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox"> <summary> <para>Defines the LinkedTextBox Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:linkedTxbx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OfficeArtExtensionList <wps:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.#ctor"> <summary> Initializes a new instance of the LinkedTextBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LinkedTextBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LinkedTextBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.#ctor(System.String)"> <summary> Initializes a new instance of the LinkedTextBox class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.Sequence"> <summary> <para> seq.</para> <para>Represents the attribte in schema: seq </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.LinkedTextBox.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: wps:extLst </para> </summary> <remark> xmlns:wps = http://schemas.microsoft.com/office/word/2010/wordprocessingShape </remark> </member> <member name="T:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties"> <summary> <para>Defines the TextBodyProperties Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is wps:bodyPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.PresetTextWrap <a:prstTxWarp></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoAutoFit <a:noAutofit></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NormalAutoFit <a:normAutofit></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapeAutoFit <a:spAutoFit></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FlatText <a:flatTx></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.#ctor"> <summary> Initializes a new instance of the TextBodyProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBodyProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBodyProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.#ctor(System.String)"> <summary> Initializes a new instance of the TextBodyProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.UseParagraphSpacing"> <summary> <para> Paragraph Spacing.</para> <para>Represents the attribte in schema: spcFirstLastPara </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.VerticalOverflow"> <summary> <para> Text Vertical Overflow.</para> <para>Represents the attribte in schema: vertOverflow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.HorizontalOverflow"> <summary> <para> Text Horizontal Overflow.</para> <para>Represents the attribte in schema: horzOverflow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.Vertical"> <summary> <para> Vertical Text.</para> <para>Represents the attribte in schema: vert </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.Wrap"> <summary> <para> Text Wrapping Type.</para> <para>Represents the attribte in schema: wrap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.LeftInset"> <summary> <para> Left Inset.</para> <para>Represents the attribte in schema: lIns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.TopInset"> <summary> <para> Top Inset.</para> <para>Represents the attribte in schema: tIns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.RightInset"> <summary> <para> Right Inset.</para> <para>Represents the attribte in schema: rIns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.BottomInset"> <summary> <para> Bottom Inset.</para> <para>Represents the attribte in schema: bIns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.ColumnCount"> <summary> <para> Number of Columns.</para> <para>Represents the attribte in schema: numCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.ColumnSpacing"> <summary> <para> Space Between Columns.</para> <para>Represents the attribte in schema: spcCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.RightToLeftColumns"> <summary> <para> Columns Right-To-Left.</para> <para>Represents the attribte in schema: rtlCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.FromWordArt"> <summary> <para> From WordArt.</para> <para>Represents the attribte in schema: fromWordArt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.Anchor"> <summary> <para> Anchor.</para> <para>Represents the attribte in schema: anchor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.AnchorCenter"> <summary> <para> Anchor Center.</para> <para>Represents the attribte in schema: anchorCtr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.ForceAntiAlias"> <summary> <para> Force Anti-Alias.</para> <para>Represents the attribte in schema: forceAA </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.UpRight"> <summary> <para> Text Upright.</para> <para>Represents the attribte in schema: upright </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.CompatibleLineSpacing"> <summary> <para> Compatible Line Spacing.</para> <para>Represents the attribte in schema: compatLnSpc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Office2010.Word.DrawingShape.TextBodyProperties.PresetTextWrap"> <summary> <para> Preset Text Shape.</para> <para>Represents the element tag in schema: a:prstTxWarp </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NumberingFormat"> <summary> <para>Number Format.</para> <para>When the object is serialized out as xml, its qualified name is c:numFmt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingFormat.#ctor"> <summary> Initializes a new instance of the NumberingFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberingFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberingFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberingFormat.FormatCode"> <summary> <para> Number Format Code.</para> <para>Represents the attribte in schema: formatCode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberingFormat.SourceLinked"> <summary> <para> Linked to Source.</para> <para>Represents the attribte in schema: sourceLinked </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties"> <summary> <para>Defines the ChartShapeProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is c:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.#ctor"> <summary> Initializes a new instance of the ChartShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ChartShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ChartShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ChartShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TextProperties"> <summary> <para>Defines the TextProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is c:txPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BodyProperties <a:bodyPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ListStyle <a:lstStyle></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Paragraph <a:p></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TextBodyType"> <summary> Defines the TextBodyType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BodyProperties <a:bodyPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ListStyle <a:lstStyle></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Paragraph <a:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextBodyType.#ctor"> <summary> Initializes a new instance of the TextBodyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextBodyType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBodyType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextBodyType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBodyType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextBodyType.#ctor(System.String)"> <summary> Initializes a new instance of the TextBodyType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TextBodyType.BodyProperties"> <summary> <para> Body Properties.</para> <para>Represents the element tag in schema: a:bodyPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TextBodyType.ListStyle"> <summary> <para> Text List Styles.</para> <para>Represents the element tag in schema: a:lstStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextProperties.#ctor"> <summary> Initializes a new instance of the TextProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextProperties.#ctor(System.String)"> <summary> Initializes a new instance of the TextProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TextProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TextProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TextProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RichText"> <summary> <para>Rich Text.</para> <para>When the object is serialized out as xml, its qualified name is c:rich.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BodyProperties <a:bodyPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ListStyle <a:lstStyle></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Paragraph <a:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RichText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RichText.#ctor"> <summary> Initializes a new instance of the RichText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RichText.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RichText class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RichText.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RichText class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RichText.#ctor(System.String)"> <summary> Initializes a new instance of the RichText class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RichText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RichText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RichText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPosition"> <summary> <para>Data Label Position.</para> <para>When the object is serialized out as xml, its qualified name is c:dLblPos.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPosition.#ctor"> <summary> Initializes a new instance of the DataLabelPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPosition.Val"> <summary> <para> Data Label Position Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowLegendKey"> <summary> <para>Show Legend Key.</para> <para>When the object is serialized out as xml, its qualified name is c:showLegendKey.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BooleanType"> <summary> Defines the BooleanType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BooleanType.#ctor"> <summary> Initializes a new instance of the BooleanType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BooleanType.Val"> <summary> <para> Boolean Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowLegendKey.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowLegendKey.#ctor"> <summary> Initializes a new instance of the ShowLegendKey class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowLegendKey.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowLegendKey.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowLegendKey.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowValue"> <summary> <para>Show Value.</para> <para>When the object is serialized out as xml, its qualified name is c:showVal.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowValue.#ctor"> <summary> Initializes a new instance of the ShowValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowCategoryName"> <summary> <para>Show Category Name.</para> <para>When the object is serialized out as xml, its qualified name is c:showCatName.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowCategoryName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowCategoryName.#ctor"> <summary> Initializes a new instance of the ShowCategoryName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowCategoryName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowCategoryName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowCategoryName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowSeriesName"> <summary> <para>Show Series Name.</para> <para>When the object is serialized out as xml, its qualified name is c:showSerName.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowSeriesName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowSeriesName.#ctor"> <summary> Initializes a new instance of the ShowSeriesName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowSeriesName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowSeriesName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowSeriesName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowPercent"> <summary> <para>Show Percent.</para> <para>When the object is serialized out as xml, its qualified name is c:showPercent.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowPercent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowPercent.#ctor"> <summary> Initializes a new instance of the ShowPercent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowPercent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowPercent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowPercent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowBubbleSize"> <summary> <para>Show Bubble Size.</para> <para>When the object is serialized out as xml, its qualified name is c:showBubbleSize.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowBubbleSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowBubbleSize.#ctor"> <summary> Initializes a new instance of the ShowBubbleSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowBubbleSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowBubbleSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowBubbleSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowLeaderLines"> <summary> <para>Show Leader Lines.</para> <para>When the object is serialized out as xml, its qualified name is c:showLeaderLines.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowLeaderLines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowLeaderLines.#ctor"> <summary> Initializes a new instance of the ShowLeaderLines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowLeaderLines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowLeaderLines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowLeaderLines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.VaryColors"> <summary> <para>Defines the VaryColors Class.</para> <para>When the object is serialized out as xml, its qualified name is c:varyColors.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.VaryColors.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.VaryColors.#ctor"> <summary> Initializes a new instance of the VaryColors class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.VaryColors.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.VaryColors.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.VaryColors.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Wireframe"> <summary> <para>Wireframe.</para> <para>When the object is serialized out as xml, its qualified name is c:wireframe.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Wireframe.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Wireframe.#ctor"> <summary> Initializes a new instance of the Wireframe class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Wireframe.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Wireframe.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Wireframe.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Delete"> <summary> <para>Delete.</para> <para>When the object is serialized out as xml, its qualified name is c:delete.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Delete.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Delete.#ctor"> <summary> Initializes a new instance of the Delete class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Delete.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Delete.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Delete.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Overlay"> <summary> <para>Overlay.</para> <para>When the object is serialized out as xml, its qualified name is c:overlay.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Overlay.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Overlay.#ctor"> <summary> Initializes a new instance of the Overlay class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Overlay.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Overlay.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Overlay.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RightAngleAxes"> <summary> <para>Right Angle Axes.</para> <para>When the object is serialized out as xml, its qualified name is c:rAngAx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RightAngleAxes.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RightAngleAxes.#ctor"> <summary> Initializes a new instance of the RightAngleAxes class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RightAngleAxes.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RightAngleAxes.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RightAngleAxes.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowHorizontalBorder"> <summary> <para>Show Horizontal Border.</para> <para>When the object is serialized out as xml, its qualified name is c:showHorzBorder.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowHorizontalBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowHorizontalBorder.#ctor"> <summary> Initializes a new instance of the ShowHorizontalBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowHorizontalBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowHorizontalBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowHorizontalBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowVerticalBorder"> <summary> <para>Show Vertical Border.</para> <para>When the object is serialized out as xml, its qualified name is c:showVertBorder.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowVerticalBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowVerticalBorder.#ctor"> <summary> Initializes a new instance of the ShowVerticalBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowVerticalBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowVerticalBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowVerticalBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowOutlineBorder"> <summary> <para>Show Outline Border.</para> <para>When the object is serialized out as xml, its qualified name is c:showOutline.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowOutlineBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowOutlineBorder.#ctor"> <summary> Initializes a new instance of the ShowOutlineBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowOutlineBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowOutlineBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowOutlineBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowKeys"> <summary> <para>Show Legend Keys.</para> <para>When the object is serialized out as xml, its qualified name is c:showKeys.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowKeys.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowKeys.#ctor"> <summary> Initializes a new instance of the ShowKeys class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowKeys.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowKeys.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowKeys.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.InvertIfNegative"> <summary> <para>Invert if Negative.</para> <para>When the object is serialized out as xml, its qualified name is c:invertIfNegative.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.InvertIfNegative.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.InvertIfNegative.#ctor"> <summary> Initializes a new instance of the InvertIfNegative class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.InvertIfNegative.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.InvertIfNegative.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.InvertIfNegative.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Bubble3D"> <summary> <para>3D Bubble.</para> <para>When the object is serialized out as xml, its qualified name is c:bubble3D.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bubble3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bubble3D.#ctor"> <summary> Initializes a new instance of the Bubble3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bubble3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Bubble3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Bubble3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DisplayRSquaredValue"> <summary> <para>Display R Squared Value.</para> <para>When the object is serialized out as xml, its qualified name is c:dispRSqr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayRSquaredValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayRSquaredValue.#ctor"> <summary> Initializes a new instance of the DisplayRSquaredValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayRSquaredValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayRSquaredValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayRSquaredValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DisplayEquation"> <summary> <para>Display Equation.</para> <para>When the object is serialized out as xml, its qualified name is c:dispEq.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayEquation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayEquation.#ctor"> <summary> Initializes a new instance of the DisplayEquation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayEquation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayEquation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayEquation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NoEndCap"> <summary> <para>No End Cap.</para> <para>When the object is serialized out as xml, its qualified name is c:noEndCap.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NoEndCap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NoEndCap.#ctor"> <summary> Initializes a new instance of the NoEndCap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NoEndCap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NoEndCap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NoEndCap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowMarker"> <summary> <para>Show Marker.</para> <para>When the object is serialized out as xml, its qualified name is c:marker.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowMarker.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowMarker.#ctor"> <summary> Initializes a new instance of the ShowMarker class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowMarker.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowMarker.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowMarker.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Smooth"> <summary> <para>Defines the Smooth Class.</para> <para>When the object is serialized out as xml, its qualified name is c:smooth.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Smooth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Smooth.#ctor"> <summary> Initializes a new instance of the Smooth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Smooth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Smooth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Smooth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ApplyToFront"> <summary> <para>Apply To Front.</para> <para>When the object is serialized out as xml, its qualified name is c:applyToFront.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToFront.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToFront.#ctor"> <summary> Initializes a new instance of the ApplyToFront class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToFront.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ApplyToFront.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ApplyToFront.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ApplyToSides"> <summary> <para>Apply To Sides.</para> <para>When the object is serialized out as xml, its qualified name is c:applyToSides.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToSides.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToSides.#ctor"> <summary> Initializes a new instance of the ApplyToSides class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToSides.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ApplyToSides.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ApplyToSides.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ApplyToEnd"> <summary> <para>Apply to End.</para> <para>When the object is serialized out as xml, its qualified name is c:applyToEnd.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToEnd.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToEnd.#ctor"> <summary> Initializes a new instance of the ApplyToEnd class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ApplyToEnd.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ApplyToEnd.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ApplyToEnd.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AutoLabeled"> <summary> <para>Automatic Category Axis.</para> <para>When the object is serialized out as xml, its qualified name is c:auto.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoLabeled.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoLabeled.#ctor"> <summary> Initializes a new instance of the AutoLabeled class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoLabeled.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AutoLabeled.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AutoLabeled.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NoMultiLevelLabels"> <summary> <para>No Multi-level Labels.</para> <para>When the object is serialized out as xml, its qualified name is c:noMultiLvlLbl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NoMultiLevelLabels.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NoMultiLevelLabels.#ctor"> <summary> Initializes a new instance of the NoMultiLevelLabels class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NoMultiLevelLabels.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NoMultiLevelLabels.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NoMultiLevelLabels.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AutoTitleDeleted"> <summary> <para>Auto Title Is Deleted.</para> <para>When the object is serialized out as xml, its qualified name is c:autoTitleDeleted.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoTitleDeleted.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoTitleDeleted.#ctor"> <summary> Initializes a new instance of the AutoTitleDeleted class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoTitleDeleted.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AutoTitleDeleted.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AutoTitleDeleted.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PlotVisibleOnly"> <summary> <para>Plot Visible Only.</para> <para>When the object is serialized out as xml, its qualified name is c:plotVisOnly.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotVisibleOnly.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotVisibleOnly.#ctor"> <summary> Initializes a new instance of the PlotVisibleOnly class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotVisibleOnly.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PlotVisibleOnly.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PlotVisibleOnly.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowDataLabelsOverMaximum"> <summary> <para>Show Data Labels over Maximum.</para> <para>When the object is serialized out as xml, its qualified name is c:showDLblsOverMax.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowDataLabelsOverMaximum.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowDataLabelsOverMaximum.#ctor"> <summary> Initializes a new instance of the ShowDataLabelsOverMaximum class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowDataLabelsOverMaximum.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowDataLabelsOverMaximum.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowDataLabelsOverMaximum.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ChartObject"> <summary> <para>Chart Object.</para> <para>When the object is serialized out as xml, its qualified name is c:chartObject.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartObject.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartObject.#ctor"> <summary> Initializes a new instance of the ChartObject class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartObject.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartObject.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartObject.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Data"> <summary> <para>Data Cannot Be Changed.</para> <para>When the object is serialized out as xml, its qualified name is c:data.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Data.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Data.#ctor"> <summary> Initializes a new instance of the Data class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Data.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Data.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Data.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Formatting"> <summary> <para>Formatting.</para> <para>When the object is serialized out as xml, its qualified name is c:formatting.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Formatting.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Formatting.#ctor"> <summary> Initializes a new instance of the Formatting class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Formatting.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Formatting.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Formatting.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Selection"> <summary> <para>Selection.</para> <para>When the object is serialized out as xml, its qualified name is c:selection.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Selection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Selection.#ctor"> <summary> Initializes a new instance of the Selection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Selection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Selection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Selection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.UserInterface"> <summary> <para>User Interface.</para> <para>When the object is serialized out as xml, its qualified name is c:userInterface.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserInterface.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserInterface.#ctor"> <summary> Initializes a new instance of the UserInterface class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserInterface.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UserInterface.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UserInterface.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AutoUpdate"> <summary> <para>Update Automatically.</para> <para>When the object is serialized out as xml, its qualified name is c:autoUpdate.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoUpdate.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoUpdate.#ctor"> <summary> Initializes a new instance of the AutoUpdate class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AutoUpdate.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AutoUpdate.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AutoUpdate.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShowNegativeBubbles"> <summary> <para>Show Negative Bubbles.</para> <para>When the object is serialized out as xml, its qualified name is c:showNegBubbles.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowNegativeBubbles.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowNegativeBubbles.#ctor"> <summary> Initializes a new instance of the ShowNegativeBubbles class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShowNegativeBubbles.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowNegativeBubbles.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShowNegativeBubbles.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Date1904"> <summary> <para>1904 Date System.</para> <para>When the object is serialized out as xml, its qualified name is c:date1904.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Date1904.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Date1904.#ctor"> <summary> Initializes a new instance of the Date1904 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Date1904.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Date1904.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Date1904.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RoundedCorners"> <summary> <para>Rounded Corners.</para> <para>When the object is serialized out as xml, its qualified name is c:roundedCorners.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RoundedCorners.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RoundedCorners.#ctor"> <summary> Initializes a new instance of the RoundedCorners class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RoundedCorners.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RoundedCorners.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RoundedCorners.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Separator"> <summary> <para>Separator.</para> <para>When the object is serialized out as xml, its qualified name is c:separator.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Separator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Separator.#ctor"> <summary> Initializes a new instance of the Separator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Separator.#ctor(System.String)"> <summary> Initializes a new instance of the Separator class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Separator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Separator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Separator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Formula"> <summary> <para>Formula.</para> <para>When the object is serialized out as xml, its qualified name is c:f.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Formula.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Formula.#ctor"> <summary> Initializes a new instance of the Formula class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Formula.#ctor(System.String)"> <summary> Initializes a new instance of the Formula class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Formula.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Formula.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Formula.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TrendlineName"> <summary> <para>Trendline Name.</para> <para>When the object is serialized out as xml, its qualified name is c:name.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineName.#ctor"> <summary> Initializes a new instance of the TrendlineName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineName.#ctor(System.String)"> <summary> Initializes a new instance of the TrendlineName class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Layout"> <summary> <para>Layout.</para> <para>When the object is serialized out as xml, its qualified name is c:layout.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ManualLayout <c:manualLayout></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Layout.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Layout.#ctor"> <summary> Initializes a new instance of the Layout class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Layout.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Layout class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Layout.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Layout class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Layout.#ctor(System.String)"> <summary> Initializes a new instance of the Layout class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Layout.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Layout.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Layout.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Layout.ManualLayout"> <summary> <para> Manual Layout.</para> <para>Represents the element tag in schema: c:manualLayout </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Layout.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ChartText"> <summary> <para>Defines the ChartText Class.</para> <para>When the object is serialized out as xml, its qualified name is c:tx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StringReference <c:strRef></description></item> <item><description>RichText <c:rich></description></item> <item><description>StringLiteral <c:strLit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartText.#ctor"> <summary> Initializes a new instance of the ChartText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartText.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ChartText class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartText.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ChartText class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartText.#ctor(System.String)"> <summary> Initializes a new instance of the ChartText class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartText.StringReference"> <summary> <para> String Reference.</para> <para>Represents the element tag in schema: c:strRef </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartText.RichText"> <summary> <para> Rich Text.</para> <para>Represents the element tag in schema: c:rich </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartText.StringLiteral"> <summary> <para> String Literal.</para> <para>Represents the element tag in schema: c:strLit </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines"> <summary> <para>Leader Lines.</para> <para>When the object is serialized out as xml, its qualified name is c:leaderLines.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ChartLinesType"> <summary> Defines the ChartLinesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartLinesType.#ctor"> <summary> Initializes a new instance of the ChartLinesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartLinesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ChartLinesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartLinesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ChartLinesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartLinesType.#ctor(System.String)"> <summary> Initializes a new instance of the ChartLinesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartLinesType.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines.#ctor"> <summary> Initializes a new instance of the LeaderLines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LeaderLines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LeaderLines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines.#ctor(System.String)"> <summary> Initializes a new instance of the LeaderLines class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LeaderLines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DropLines"> <summary> <para>Drop Lines.</para> <para>When the object is serialized out as xml, its qualified name is c:dropLines.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DropLines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DropLines.#ctor"> <summary> Initializes a new instance of the DropLines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DropLines.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DropLines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DropLines.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DropLines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DropLines.#ctor(System.String)"> <summary> Initializes a new instance of the DropLines class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DropLines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DropLines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DropLines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines"> <summary> <para>Major Gridlines.</para> <para>When the object is serialized out as xml, its qualified name is c:majorGridlines.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines.#ctor"> <summary> Initializes a new instance of the MajorGridlines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MajorGridlines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MajorGridlines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines.#ctor(System.String)"> <summary> Initializes a new instance of the MajorGridlines class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MajorGridlines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines"> <summary> <para>Minor Gridlines.</para> <para>When the object is serialized out as xml, its qualified name is c:minorGridlines.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines.#ctor"> <summary> Initializes a new instance of the MinorGridlines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MinorGridlines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MinorGridlines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines.#ctor(System.String)"> <summary> Initializes a new instance of the MinorGridlines class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinorGridlines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines"> <summary> <para>High Low Lines.</para> <para>When the object is serialized out as xml, its qualified name is c:hiLowLines.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines.#ctor"> <summary> Initializes a new instance of the HighLowLines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HighLowLines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HighLowLines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines.#ctor(System.String)"> <summary> Initializes a new instance of the HighLowLines class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HighLowLines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines"> <summary> <para>Defines the SeriesLines Class.</para> <para>When the object is serialized out as xml, its qualified name is c:serLines.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines.#ctor"> <summary> Initializes a new instance of the SeriesLines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SeriesLines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SeriesLines class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines.#ctor(System.String)"> <summary> Initializes a new instance of the SeriesLines class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesLines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Index"> <summary> <para>Index.</para> <para>When the object is serialized out as xml, its qualified name is c:idx.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.UnsignedIntegerType"> <summary> Defines the UnsignedIntegerType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UnsignedIntegerType.#ctor"> <summary> Initializes a new instance of the UnsignedIntegerType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UnsignedIntegerType.Val"> <summary> <para> Integer Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Index.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Index.#ctor"> <summary> Initializes a new instance of the Index class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Index.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Index.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Index.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Order"> <summary> <para>Order.</para> <para>When the object is serialized out as xml, its qualified name is c:order.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Order.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Order.#ctor"> <summary> Initializes a new instance of the Order class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Order.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Order.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Order.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AxisId"> <summary> <para>Axis ID.</para> <para>When the object is serialized out as xml, its qualified name is c:axId.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisId.#ctor"> <summary> Initializes a new instance of the AxisId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CrossingAxis"> <summary> <para>Crossing Axis ID.</para> <para>When the object is serialized out as xml, its qualified name is c:crossAx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossingAxis.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossingAxis.#ctor"> <summary> Initializes a new instance of the CrossingAxis class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossingAxis.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CrossingAxis.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CrossingAxis.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PointCount"> <summary> <para>Point Count.</para> <para>When the object is serialized out as xml, its qualified name is c:ptCount.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PointCount.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PointCount.#ctor"> <summary> Initializes a new instance of the PointCount class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PointCount.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PointCount.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PointCount.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SecondPiePoint"> <summary> <para>Second Pie Point.</para> <para>When the object is serialized out as xml, its qualified name is c:secondPiePt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SecondPiePoint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SecondPiePoint.#ctor"> <summary> Initializes a new instance of the SecondPiePoint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SecondPiePoint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SecondPiePoint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SecondPiePoint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Explosion"> <summary> <para>Explosion.</para> <para>When the object is serialized out as xml, its qualified name is c:explosion.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Explosion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Explosion.#ctor"> <summary> Initializes a new instance of the Explosion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Explosion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Explosion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Explosion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.FormatId"> <summary> <para>Format ID.</para> <para>When the object is serialized out as xml, its qualified name is c:fmtId.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FormatId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FormatId.#ctor"> <summary> Initializes a new instance of the FormatId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FormatId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FormatId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FormatId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SeriesText"> <summary> <para>Series Text.</para> <para>When the object is serialized out as xml, its qualified name is c:tx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StringReference <c:strRef></description></item> <item><description>NumericValue <c:v></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.#ctor"> <summary> Initializes a new instance of the SeriesText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SeriesText class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SeriesText class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.#ctor(System.String)"> <summary> Initializes a new instance of the SeriesText class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.StringReference"> <summary> <para> StringReference.</para> <para>Represents the element tag in schema: c:strRef </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesText.NumericValue"> <summary> <para> NumericValue.</para> <para>Represents the element tag in schema: c:v </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Grouping"> <summary> <para>Grouping.</para> <para>When the object is serialized out as xml, its qualified name is c:grouping.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Grouping.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Grouping.#ctor"> <summary> Initializes a new instance of the Grouping class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Grouping.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Grouping.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Grouping.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Grouping.Val"> <summary> <para> Grouping Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries"> <summary> <para>Defines the LineChartSeries Class.</para> <para>When the object is serialized out as xml, its qualified name is c:ser.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Order <c:order></description></item> <item><description>SeriesText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>Marker <c:marker></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>DataPoint <c:dPt></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>Trendline <c:trendline></description></item> <item><description>ErrorBars <c:errBars></description></item> <item><description>CategoryAxisData <c:cat></description></item> <item><description>Values <c:val></description></item> <item><description>Smooth <c:smooth></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.#ctor"> <summary> Initializes a new instance of the LineChartSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LineChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LineChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.#ctor(System.String)"> <summary> Initializes a new instance of the LineChartSeries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.Order"> <summary> <para> Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.SeriesText"> <summary> <para> Series Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.Marker"> <summary> <para> Marker.</para> <para>Represents the element tag in schema: c:marker </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChartSeries.PictureOptions"> <summary> <para> PictureOptions.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DataLabels"> <summary> <para>Data Labels.</para> <para>When the object is serialized out as xml, its qualified name is c:dLbls.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataLabel <c:dLbl></description></item> <item><description>Delete <c:delete></description></item> <item><description>NumberingFormat <c:numFmt></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>DataLabelPosition <c:dLblPos></description></item> <item><description>ShowLegendKey <c:showLegendKey></description></item> <item><description>ShowValue <c:showVal></description></item> <item><description>ShowCategoryName <c:showCatName></description></item> <item><description>ShowSeriesName <c:showSerName></description></item> <item><description>ShowPercent <c:showPercent></description></item> <item><description>ShowBubbleSize <c:showBubbleSize></description></item> <item><description>Separator <c:separator></description></item> <item><description>ShowLeaderLines <c:showLeaderLines></description></item> <item><description>LeaderLines <c:leaderLines></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabels.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabels.#ctor"> <summary> Initializes a new instance of the DataLabels class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabels.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataLabels class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabels.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataLabels class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabels.#ctor(System.String)"> <summary> Initializes a new instance of the DataLabels class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabels.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataLabels.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataLabels.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BarDirection"> <summary> <para>Bar Direction.</para> <para>When the object is serialized out as xml, its qualified name is c:barDir.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarDirection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarDirection.#ctor"> <summary> Initializes a new instance of the BarDirection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarDirection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarDirection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarDirection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarDirection.Val"> <summary> <para> Bar Direction Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BarGrouping"> <summary> <para>Bar Grouping.</para> <para>When the object is serialized out as xml, its qualified name is c:grouping.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarGrouping.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarGrouping.#ctor"> <summary> Initializes a new instance of the BarGrouping class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarGrouping.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarGrouping.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarGrouping.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarGrouping.Val"> <summary> <para> Bar Grouping Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries"> <summary> <para>Bar Chart Series.</para> <para>When the object is serialized out as xml, its qualified name is c:ser.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Order <c:order></description></item> <item><description>SeriesText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>InvertIfNegative <c:invertIfNegative></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>DataPoint <c:dPt></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>Trendline <c:trendline></description></item> <item><description>ErrorBars <c:errBars></description></item> <item><description>CategoryAxisData <c:cat></description></item> <item><description>Values <c:val></description></item> <item><description>Shape <c:shape></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>Smooth <c:smooth></description></item> <item><description>BarSerExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.#ctor"> <summary> Initializes a new instance of the BarChartSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BarChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BarChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.#ctor(System.String)"> <summary> Initializes a new instance of the BarChartSeries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.Order"> <summary> <para> Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.SeriesText"> <summary> <para> Series Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.InvertIfNegative"> <summary> <para> Invert if Negative.</para> <para>Represents the element tag in schema: c:invertIfNegative </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChartSeries.PictureOptions"> <summary> <para> PictureOptions.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries"> <summary> <para>Area Chart Series.</para> <para>When the object is serialized out as xml, its qualified name is c:ser.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Order <c:order></description></item> <item><description>SeriesText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>DataPoint <c:dPt></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>Trendline <c:trendline></description></item> <item><description>ErrorBars <c:errBars></description></item> <item><description>CategoryAxisData <c:cat></description></item> <item><description>Values <c:val></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>ExtensionList <c:extLst></description></item> <item><description>Smooth <c:smooth></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.#ctor"> <summary> Initializes a new instance of the AreaChartSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AreaChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AreaChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.#ctor(System.String)"> <summary> Initializes a new instance of the AreaChartSeries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.Order"> <summary> <para> Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.SeriesText"> <summary> <para> Series Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChartSeries.PictureOptions"> <summary> <para> PictureOptions.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries"> <summary> <para>Pie Chart Series.</para> <para>When the object is serialized out as xml, its qualified name is c:ser.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Order <c:order></description></item> <item><description>SeriesText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>Explosion <c:explosion></description></item> <item><description>DataPoint <c:dPt></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>CategoryAxisData <c:cat></description></item> <item><description>Values <c:val></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>ExtensionList <c:extLst></description></item> <item><description>Smooth <c:smooth></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.#ctor"> <summary> Initializes a new instance of the PieChartSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PieChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PieChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.#ctor(System.String)"> <summary> Initializes a new instance of the PieChartSeries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.Order"> <summary> <para> Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.SeriesText"> <summary> <para> Series Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.PictureOptions"> <summary> <para> PictureOptions.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChartSeries.Explosion"> <summary> <para> Explosion.</para> <para>Represents the element tag in schema: c:explosion </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries"> <summary> <para>Surface Chart Series.</para> <para>When the object is serialized out as xml, its qualified name is c:ser.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Order <c:order></description></item> <item><description>SeriesText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>CategoryAxisData <c:cat></description></item> <item><description>Values <c:val></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.#ctor"> <summary> Initializes a new instance of the SurfaceChartSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SurfaceChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SurfaceChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.#ctor(System.String)"> <summary> Initializes a new instance of the SurfaceChartSeries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.Order"> <summary> <para> Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.SeriesText"> <summary> <para> Series Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.PictureOptions"> <summary> <para> PictureOptions.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.CategoryAxisData"> <summary> <para> Category Axis Data.</para> <para>Represents the element tag in schema: c:cat </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.Values"> <summary> <para> Values.</para> <para>Represents the element tag in schema: c:val </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.Bubble3D"> <summary> <para> Bubble3D.</para> <para>Represents the element tag in schema: c:bubble3D </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChartSeries.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BandFormats"> <summary> <para>Band Formats.</para> <para>When the object is serialized out as xml, its qualified name is c:bandFmts.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BandFormat <c:bandFmt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormats.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormats.#ctor"> <summary> Initializes a new instance of the BandFormats class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormats.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BandFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormats.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BandFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormats.#ctor(System.String)"> <summary> Initializes a new instance of the BandFormats class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormats.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BandFormats.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BandFormats.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Scaling"> <summary> <para>Scaling.</para> <para>When the object is serialized out as xml, its qualified name is c:scaling.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LogBase <c:logBase></description></item> <item><description>Orientation <c:orientation></description></item> <item><description>MaxAxisValue <c:max></description></item> <item><description>MinAxisValue <c:min></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Scaling.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Scaling.#ctor"> <summary> Initializes a new instance of the Scaling class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Scaling.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Scaling class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Scaling.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Scaling class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Scaling.#ctor(System.String)"> <summary> Initializes a new instance of the Scaling class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Scaling.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Scaling.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Scaling.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Scaling.LogBase"> <summary> <para> Logarithmic Base.</para> <para>Represents the element tag in schema: c:logBase </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Scaling.Orientation"> <summary> <para> Axis Orientation.</para> <para>Represents the element tag in schema: c:orientation </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Scaling.MaxAxisValue"> <summary> <para> Maximum.</para> <para>Represents the element tag in schema: c:max </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Scaling.MinAxisValue"> <summary> <para> Minimum.</para> <para>Represents the element tag in schema: c:min </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Scaling.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AxisPosition"> <summary> <para>Axis Position.</para> <para>When the object is serialized out as xml, its qualified name is c:axPos.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisPosition.#ctor"> <summary> Initializes a new instance of the AxisPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisPosition.Val"> <summary> <para> Axis Position Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Title"> <summary> <para>Title.</para> <para>When the object is serialized out as xml, its qualified name is c:title.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartText <c:tx></description></item> <item><description>Layout <c:layout></description></item> <item><description>Overlay <c:overlay></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Title.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Title.#ctor"> <summary> Initializes a new instance of the Title class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Title.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Title class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Title.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Title class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Title.#ctor(System.String)"> <summary> Initializes a new instance of the Title class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Title.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Title.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Title.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Title.ChartText"> <summary> <para> Chart Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Title.Layout"> <summary> <para> Layout.</para> <para>Represents the element tag in schema: c:layout </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Title.Overlay"> <summary> <para> Overlay.</para> <para>Represents the element tag in schema: c:overlay </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Title.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Title.TextProperties"> <summary> <para> TextProperties.</para> <para>Represents the element tag in schema: c:txPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Title.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MajorTickMark"> <summary> <para>Major Tick Mark.</para> <para>When the object is serialized out as xml, its qualified name is c:majorTickMark.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TickMarkType"> <summary> Defines the TickMarkType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickMarkType.#ctor"> <summary> Initializes a new instance of the TickMarkType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TickMarkType.Val"> <summary> <para> Tick Mark Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorTickMark.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorTickMark.#ctor"> <summary> Initializes a new instance of the MajorTickMark class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorTickMark.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MajorTickMark.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MajorTickMark.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MinorTickMark"> <summary> <para>Minor Tick Mark.</para> <para>When the object is serialized out as xml, its qualified name is c:minorTickMark.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorTickMark.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorTickMark.#ctor"> <summary> Initializes a new instance of the MinorTickMark class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorTickMark.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinorTickMark.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinorTickMark.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPosition"> <summary> <para>Tick Label Position.</para> <para>When the object is serialized out as xml, its qualified name is c:tickLblPos.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPosition.#ctor"> <summary> Initializes a new instance of the TickLabelPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPosition.Val"> <summary> <para> Tick Label Position Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Crosses"> <summary> <para>Crosses.</para> <para>When the object is serialized out as xml, its qualified name is c:crosses.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Crosses.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Crosses.#ctor"> <summary> Initializes a new instance of the Crosses class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Crosses.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Crosses.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Crosses.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Crosses.Val"> <summary> <para> Crosses Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CrossesAt"> <summary> <para>Crossing Value.</para> <para>When the object is serialized out as xml, its qualified name is c:crossesAt.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DoubleType"> <summary> Defines the DoubleType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DoubleType.#ctor"> <summary> Initializes a new instance of the DoubleType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DoubleType.Val"> <summary> <para> Floating Point Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossesAt.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossesAt.#ctor"> <summary> Initializes a new instance of the CrossesAt class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossesAt.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CrossesAt.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CrossesAt.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Left"> <summary> <para>Left.</para> <para>When the object is serialized out as xml, its qualified name is c:x.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Left.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Left.#ctor"> <summary> Initializes a new instance of the Left class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Left.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Left.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Left.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Top"> <summary> <para>Top.</para> <para>When the object is serialized out as xml, its qualified name is c:y.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Top.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Top.#ctor"> <summary> Initializes a new instance of the Top class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Top.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Top.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Top.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Width"> <summary> <para>Width.</para> <para>When the object is serialized out as xml, its qualified name is c:w.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Width.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Width.#ctor"> <summary> Initializes a new instance of the Width class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Width.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Width.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Width.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Height"> <summary> <para>Height.</para> <para>When the object is serialized out as xml, its qualified name is c:h.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Height.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Height.#ctor"> <summary> Initializes a new instance of the Height class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Height.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Height.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Height.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Forward"> <summary> <para>Forward.</para> <para>When the object is serialized out as xml, its qualified name is c:forward.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Forward.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Forward.#ctor"> <summary> Initializes a new instance of the Forward class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Forward.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Forward.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Forward.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Backward"> <summary> <para>Backward.</para> <para>When the object is serialized out as xml, its qualified name is c:backward.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Backward.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Backward.#ctor"> <summary> Initializes a new instance of the Backward class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Backward.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Backward.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Backward.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Intercept"> <summary> <para>Intercept.</para> <para>When the object is serialized out as xml, its qualified name is c:intercept.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Intercept.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Intercept.#ctor"> <summary> Initializes a new instance of the Intercept class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Intercept.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Intercept.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Intercept.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValue"> <summary> <para>Error Bar Value.</para> <para>When the object is serialized out as xml, its qualified name is c:val.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValue.#ctor"> <summary> Initializes a new instance of the ErrorBarValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SplitPosition"> <summary> <para>Split Position.</para> <para>When the object is serialized out as xml, its qualified name is c:splitPos.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SplitPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SplitPosition.#ctor"> <summary> Initializes a new instance of the SplitPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SplitPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SplitPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SplitPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CustomDisplayUnit"> <summary> <para>Custom Display Unit.</para> <para>When the object is serialized out as xml, its qualified name is c:custUnit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomDisplayUnit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomDisplayUnit.#ctor"> <summary> Initializes a new instance of the CustomDisplayUnit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomDisplayUnit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CustomDisplayUnit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CustomDisplayUnit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MaxAxisValue"> <summary> <para>Maximum.</para> <para>When the object is serialized out as xml, its qualified name is c:max.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MaxAxisValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MaxAxisValue.#ctor"> <summary> Initializes a new instance of the MaxAxisValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MaxAxisValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MaxAxisValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MaxAxisValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MinAxisValue"> <summary> <para>Minimum.</para> <para>When the object is serialized out as xml, its qualified name is c:min.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinAxisValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinAxisValue.#ctor"> <summary> Initializes a new instance of the MinAxisValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinAxisValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinAxisValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinAxisValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace"> <summary> <para>Chart Space. It is the root element of ChartPart.</para> <para>When the object is serialized out as xml, its qualified name is c:chartSpace.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Date1904 <c:date1904></description></item> <item><description>EditingLanguage <c:lang></description></item> <item><description>RoundedCorners <c:roundedCorners></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style <c14:style></description></item> <item><description>Style <c:style></description></item> <item><description>ColorMapOverride <c:clrMapOvr></description></item> <item><description>PivotSource <c:pivotSource></description></item> <item><description>Protection <c:protection></description></item> <item><description>Chart <c:chart></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>ExternalData <c:externalData></description></item> <item><description>PrintSettings <c:printSettings></description></item> <item><description>UserShapesReference <c:userShapes></description></item> <item><description>ChartSpaceExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.#ctor(DocumentFormat.OpenXml.Packaging.ChartPart)"> <summary> ChartSpace constructor </summary> <param name="ownerPart">The owner part of the ChartSpace</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.Load(DocumentFormat.OpenXml.Packaging.ChartPart)"> <summary> Loads the DOM from the ChartPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ChartSpace class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ChartSpace class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.#ctor(System.String)"> <summary> Initializes a new instance of the ChartSpace class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.#ctor"> <summary> Initializes a new instance of the ChartSpace class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.Save(DocumentFormat.OpenXml.Packaging.ChartPart)"> <summary> Saves the DOM into the ChartPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.ChartPart"> <summary> Gets the ChartPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.Date1904"> <summary> <para> 1904 Date System.</para> <para>Represents the element tag in schema: c:date1904 </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.EditingLanguage"> <summary> <para> Editing Language.</para> <para>Represents the element tag in schema: c:lang </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpace.RoundedCorners"> <summary> <para> Rounded Corners.</para> <para>Represents the element tag in schema: c:roundedCorners </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.UserShapes"> <summary> <para>User Shapes. It is the root element of ChartDrawingPart.</para> <para>When the object is serialized out as xml, its qualified name is c:userShapes.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize <cdr:relSizeAnchor></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize <cdr:absSizeAnchor></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.#ctor(DocumentFormat.OpenXml.Packaging.ChartDrawingPart)"> <summary> UserShapes constructor </summary> <param name="ownerPart">The owner part of the UserShapes</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.Load(DocumentFormat.OpenXml.Packaging.ChartDrawingPart)"> <summary> Loads the DOM from the ChartDrawingPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the UserShapes class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the UserShapes class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.#ctor(System.String)"> <summary> Initializes a new instance of the UserShapes class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.#ctor"> <summary> Initializes a new instance of the UserShapes class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.Save(DocumentFormat.OpenXml.Packaging.ChartDrawingPart)"> <summary> Saves the DOM into the ChartDrawingPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UserShapes.ChartDrawingPart"> <summary> Gets the ChartDrawingPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ChartReference"> <summary> <para>Reference to Chart Part.</para> <para>When the object is serialized out as xml, its qualified name is c:chart.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RelationshipIdType"> <summary> Defines the RelationshipIdType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RelationshipIdType.#ctor"> <summary> Initializes a new instance of the RelationshipIdType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RelationshipIdType.Id"> <summary> <para> Relationship Reference.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartReference.#ctor"> <summary> Initializes a new instance of the ChartReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LegacyDrawingHeaderFooter"> <summary> <para>Legacy Drawing for Headers and Footers.</para> <para>When the object is serialized out as xml, its qualified name is c:legacyDrawingHF.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegacyDrawingHeaderFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegacyDrawingHeaderFooter.#ctor"> <summary> Initializes a new instance of the LegacyDrawingHeaderFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegacyDrawingHeaderFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LegacyDrawingHeaderFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LegacyDrawingHeaderFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.UserShapesReference"> <summary> <para>Reference to Chart Drawing Part.</para> <para>When the object is serialized out as xml, its qualified name is c:userShapes.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapesReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapesReference.#ctor"> <summary> Initializes a new instance of the UserShapesReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UserShapesReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UserShapesReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UserShapesReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Extension"> <summary> <para>Extension.</para> <para>When the object is serialized out as xml, its qualified name is c:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Extension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Extension.#ctor"> <summary> Initializes a new instance of the Extension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Extension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Extension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Extension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Extension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Extension.#ctor(System.String)"> <summary> Initializes a new instance of the Extension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Extension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Extension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Extension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Extension.Uri"> <summary> <para> Uniform Resource Identifier.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NumericValue"> <summary> <para>Numeric Value.</para> <para>When the object is serialized out as xml, its qualified name is c:v.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericValue.#ctor"> <summary> Initializes a new instance of the NumericValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericValue.#ctor(System.String)"> <summary> Initializes a new instance of the NumericValue class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumericValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumericValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.FormatCode"> <summary> <para>Format Code.</para> <para>When the object is serialized out as xml, its qualified name is c:formatCode.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FormatCode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FormatCode.#ctor"> <summary> Initializes a new instance of the FormatCode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FormatCode.#ctor(System.String)"> <summary> Initializes a new instance of the FormatCode class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FormatCode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FormatCode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FormatCode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.OddHeader"> <summary> <para>Odd Header.</para> <para>When the object is serialized out as xml, its qualified name is c:oddHeader.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OddHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OddHeader.#ctor"> <summary> Initializes a new instance of the OddHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OddHeader.#ctor(System.String)"> <summary> Initializes a new instance of the OddHeader class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OddHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OddHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OddHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.OddFooter"> <summary> <para>Odd Footer.</para> <para>When the object is serialized out as xml, its qualified name is c:oddFooter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OddFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OddFooter.#ctor"> <summary> Initializes a new instance of the OddFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OddFooter.#ctor(System.String)"> <summary> Initializes a new instance of the OddFooter class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OddFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OddFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OddFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.EvenHeader"> <summary> <para>Even Header.</para> <para>When the object is serialized out as xml, its qualified name is c:evenHeader.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EvenHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EvenHeader.#ctor"> <summary> Initializes a new instance of the EvenHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EvenHeader.#ctor(System.String)"> <summary> Initializes a new instance of the EvenHeader class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EvenHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.EvenHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.EvenHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.EvenFooter"> <summary> <para>Even Footer.</para> <para>When the object is serialized out as xml, its qualified name is c:evenFooter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EvenFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EvenFooter.#ctor"> <summary> Initializes a new instance of the EvenFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EvenFooter.#ctor(System.String)"> <summary> Initializes a new instance of the EvenFooter class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EvenFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.EvenFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.EvenFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.FirstHeader"> <summary> <para>First Header.</para> <para>When the object is serialized out as xml, its qualified name is c:firstHeader.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstHeader.#ctor"> <summary> Initializes a new instance of the FirstHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstHeader.#ctor(System.String)"> <summary> Initializes a new instance of the FirstHeader class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FirstHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FirstHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.FirstFooter"> <summary> <para>First Footer.</para> <para>When the object is serialized out as xml, its qualified name is c:firstFooter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstFooter.#ctor"> <summary> Initializes a new instance of the FirstFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstFooter.#ctor(System.String)"> <summary> Initializes a new instance of the FirstFooter class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FirstFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FirstFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PivotTableName"> <summary> <para>Pivot Name.</para> <para>When the object is serialized out as xml, its qualified name is c:name.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotTableName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotTableName.#ctor"> <summary> Initializes a new instance of the PivotTableName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotTableName.#ctor(System.String)"> <summary> Initializes a new instance of the PivotTableName class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotTableName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotTableName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotTableName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint"> <summary> <para>Numeric Point.</para> <para>When the object is serialized out as xml, its qualified name is c:pt.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumericValue <c:v></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.#ctor"> <summary> Initializes a new instance of the NumericPoint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NumericPoint class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NumericPoint class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.#ctor(System.String)"> <summary> Initializes a new instance of the NumericPoint class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.Index"> <summary> <para> Index.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.FormatCode"> <summary> <para> Number Format.</para> <para>Represents the attribte in schema: formatCode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumericPoint.NumericValue"> <summary> <para> Numeric Value.</para> <para>Represents the element tag in schema: c:v </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList"> <summary> <para>Defines the ExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is c:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Extension <c:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList.#ctor"> <summary> Initializes a new instance of the ExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache"> <summary> <para>Number Cache.</para> <para>When the object is serialized out as xml, its qualified name is c:numCache.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FormatCode <c:formatCode></description></item> <item><description>PointCount <c:ptCount></description></item> <item><description>NumericPoint <c:pt></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NumberDataType"> <summary> Defines the NumberDataType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FormatCode <c:formatCode></description></item> <item><description>PointCount <c:ptCount></description></item> <item><description>NumericPoint <c:pt></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberDataType.#ctor"> <summary> Initializes a new instance of the NumberDataType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberDataType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NumberDataType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberDataType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NumberDataType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberDataType.#ctor(System.String)"> <summary> Initializes a new instance of the NumberDataType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberDataType.FormatCode"> <summary> <para> Format Code.</para> <para>Represents the element tag in schema: c:formatCode </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberDataType.PointCount"> <summary> <para> Point Count.</para> <para>Represents the element tag in schema: c:ptCount </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache.#ctor"> <summary> Initializes a new instance of the NumberingCache class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NumberingCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NumberingCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache.#ctor(System.String)"> <summary> Initializes a new instance of the NumberingCache class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberingCache.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral"> <summary> <para>Number Literal.</para> <para>When the object is serialized out as xml, its qualified name is c:numLit.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FormatCode <c:formatCode></description></item> <item><description>PointCount <c:ptCount></description></item> <item><description>NumericPoint <c:pt></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral.#ctor"> <summary> Initializes a new instance of the NumberLiteral class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NumberLiteral class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NumberLiteral class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral.#ctor(System.String)"> <summary> Initializes a new instance of the NumberLiteral class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberLiteral.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NumberReference"> <summary> <para>Number Reference.</para> <para>When the object is serialized out as xml, its qualified name is c:numRef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Formula <c:f></description></item> <item><description>NumberingCache <c:numCache></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.#ctor"> <summary> Initializes a new instance of the NumberReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NumberReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NumberReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.#ctor(System.String)"> <summary> Initializes a new instance of the NumberReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.Formula"> <summary> <para> Formula.</para> <para>Represents the element tag in schema: c:f </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.NumberingCache"> <summary> <para> Number Cache.</para> <para>Represents the element tag in schema: c:numCache </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberReference.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.StringPoint"> <summary> <para>Defines the StringPoint Class.</para> <para>When the object is serialized out as xml, its qualified name is c:pt.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumericValue <c:v></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.#ctor"> <summary> Initializes a new instance of the StringPoint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StringPoint class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StringPoint class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.#ctor(System.String)"> <summary> Initializes a new instance of the StringPoint class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.Index"> <summary> <para> Index.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringPoint.NumericValue"> <summary> <para> Text Value.</para> <para>Represents the element tag in schema: c:v </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.StringCache"> <summary> <para>String Cache.</para> <para>When the object is serialized out as xml, its qualified name is c:strCache.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PointCount <c:ptCount></description></item> <item><description>StringPoint <c:pt></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.StringDataType"> <summary> Defines the StringDataType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PointCount <c:ptCount></description></item> <item><description>StringPoint <c:pt></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringDataType.#ctor"> <summary> Initializes a new instance of the StringDataType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringDataType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StringDataType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringDataType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StringDataType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringDataType.#ctor(System.String)"> <summary> Initializes a new instance of the StringDataType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringDataType.PointCount"> <summary> <para> PointCount.</para> <para>Represents the element tag in schema: c:ptCount </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringCache.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringCache.#ctor"> <summary> Initializes a new instance of the StringCache class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringCache.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StringCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringCache.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StringCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringCache.#ctor(System.String)"> <summary> Initializes a new instance of the StringCache class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringCache.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringCache.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringCache.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral"> <summary> <para>String Literal.</para> <para>When the object is serialized out as xml, its qualified name is c:strLit.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PointCount <c:ptCount></description></item> <item><description>StringPoint <c:pt></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral.#ctor"> <summary> Initializes a new instance of the StringLiteral class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StringLiteral class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StringLiteral class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral.#ctor(System.String)"> <summary> Initializes a new instance of the StringLiteral class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringLiteral.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Level"> <summary> <para>Level.</para> <para>When the object is serialized out as xml, its qualified name is c:lvl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StringPoint <c:pt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Level.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Level.#ctor"> <summary> Initializes a new instance of the Level class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Level.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Level.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Level.#ctor(System.String)"> <summary> Initializes a new instance of the Level class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Level.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Level.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Level.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache"> <summary> <para>Multi Level String Cache.</para> <para>When the object is serialized out as xml, its qualified name is c:multiLvlStrCache.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PointCount <c:ptCount></description></item> <item><description>Level <c:lvl></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.#ctor"> <summary> Initializes a new instance of the MultiLevelStringCache class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MultiLevelStringCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MultiLevelStringCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.#ctor(System.String)"> <summary> Initializes a new instance of the MultiLevelStringCache class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringCache.PointCount"> <summary> <para> PointCount.</para> <para>Represents the element tag in schema: c:ptCount </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference"> <summary> <para>Multi Level String Reference.</para> <para>When the object is serialized out as xml, its qualified name is c:multiLvlStrRef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Formula <c:f></description></item> <item><description>MultiLevelStringCache <c:multiLvlStrCache></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.#ctor"> <summary> Initializes a new instance of the MultiLevelStringReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MultiLevelStringReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MultiLevelStringReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.#ctor(System.String)"> <summary> Initializes a new instance of the MultiLevelStringReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.Formula"> <summary> <para> Formula.</para> <para>Represents the element tag in schema: c:f </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.MultiLevelStringCache"> <summary> <para> Multi Level String Cache.</para> <para>Represents the element tag in schema: c:multiLvlStrCache </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MultiLevelStringReference.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.StringReference"> <summary> <para>Defines the StringReference Class.</para> <para>When the object is serialized out as xml, its qualified name is c:strRef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Formula <c:f></description></item> <item><description>StringCache <c:strCache></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringReference.#ctor"> <summary> Initializes a new instance of the StringReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StringReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StringReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringReference.#ctor(System.String)"> <summary> Initializes a new instance of the StringReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StringReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringReference.Formula"> <summary> <para> Formula.</para> <para>Represents the element tag in schema: c:f </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringReference.StringCache"> <summary> <para> String Cache.</para> <para>Represents the element tag in schema: c:strCache </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StringReference.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LayoutTarget"> <summary> <para>Layout Target.</para> <para>When the object is serialized out as xml, its qualified name is c:layoutTarget.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LayoutTarget.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LayoutTarget.#ctor"> <summary> Initializes a new instance of the LayoutTarget class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LayoutTarget.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LayoutTarget.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LayoutTarget.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LayoutTarget.Val"> <summary> <para> Layout Target Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LeftMode"> <summary> <para>Left Mode.</para> <para>When the object is serialized out as xml, its qualified name is c:xMode.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LayoutModeType"> <summary> Defines the LayoutModeType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LayoutModeType.#ctor"> <summary> Initializes a new instance of the LayoutModeType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LayoutModeType.Val"> <summary> <para> Layout Mode Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeftMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeftMode.#ctor"> <summary> Initializes a new instance of the LeftMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LeftMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LeftMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LeftMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TopMode"> <summary> <para>Top Mode.</para> <para>When the object is serialized out as xml, its qualified name is c:yMode.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TopMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TopMode.#ctor"> <summary> Initializes a new instance of the TopMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TopMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TopMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TopMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.WidthMode"> <summary> <para>Width Mode.</para> <para>When the object is serialized out as xml, its qualified name is c:wMode.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.WidthMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.WidthMode.#ctor"> <summary> Initializes a new instance of the WidthMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.WidthMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.WidthMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.WidthMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.HeightMode"> <summary> <para>Height Mode.</para> <para>When the object is serialized out as xml, its qualified name is c:hMode.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeightMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeightMode.#ctor"> <summary> Initializes a new instance of the HeightMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeightMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeightMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeightMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout"> <summary> <para>Manual Layout.</para> <para>When the object is serialized out as xml, its qualified name is c:manualLayout.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LayoutTarget <c:layoutTarget></description></item> <item><description>LeftMode <c:xMode></description></item> <item><description>TopMode <c:yMode></description></item> <item><description>WidthMode <c:wMode></description></item> <item><description>HeightMode <c:hMode></description></item> <item><description>Left <c:x></description></item> <item><description>Top <c:y></description></item> <item><description>Width <c:w></description></item> <item><description>Height <c:h></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.#ctor"> <summary> Initializes a new instance of the ManualLayout class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ManualLayout class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ManualLayout class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.#ctor(System.String)"> <summary> Initializes a new instance of the ManualLayout class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.LayoutTarget"> <summary> <para> Layout Target.</para> <para>Represents the element tag in schema: c:layoutTarget </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.LeftMode"> <summary> <para> Left Mode.</para> <para>Represents the element tag in schema: c:xMode </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.TopMode"> <summary> <para> Top Mode.</para> <para>Represents the element tag in schema: c:yMode </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.WidthMode"> <summary> <para> Width Mode.</para> <para>Represents the element tag in schema: c:wMode </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.HeightMode"> <summary> <para> Height Mode.</para> <para>Represents the element tag in schema: c:hMode </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.Left"> <summary> <para> Left.</para> <para>Represents the element tag in schema: c:x </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.Top"> <summary> <para> Top.</para> <para>Represents the element tag in schema: c:y </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.Width"> <summary> <para> Width.</para> <para>Represents the element tag in schema: c:w </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.Height"> <summary> <para> Height.</para> <para>Represents the element tag in schema: c:h </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ManualLayout.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RotateX"> <summary> <para>X Rotation.</para> <para>When the object is serialized out as xml, its qualified name is c:rotX.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RotateX.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RotateX.#ctor"> <summary> Initializes a new instance of the RotateX class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RotateX.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RotateX.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RotateX.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RotateX.Val"> <summary> <para> X Rotation Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.HeightPercent"> <summary> <para>Height Percent.</para> <para>When the object is serialized out as xml, its qualified name is c:hPercent.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeightPercent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeightPercent.#ctor"> <summary> Initializes a new instance of the HeightPercent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeightPercent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeightPercent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeightPercent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeightPercent.Val"> <summary> <para> Height Percent Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RotateY"> <summary> <para>Y Rotation.</para> <para>When the object is serialized out as xml, its qualified name is c:rotY.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RotateY.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RotateY.#ctor"> <summary> Initializes a new instance of the RotateY class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RotateY.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RotateY.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RotateY.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RotateY.Val"> <summary> <para> Y Rotation Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DepthPercent"> <summary> <para>Depth Percent.</para> <para>When the object is serialized out as xml, its qualified name is c:depthPercent.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DepthPercent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DepthPercent.#ctor"> <summary> Initializes a new instance of the DepthPercent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DepthPercent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DepthPercent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DepthPercent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DepthPercent.Val"> <summary> <para> Depth Percent Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Perspective"> <summary> <para>Perspective.</para> <para>When the object is serialized out as xml, its qualified name is c:perspective.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Perspective.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Perspective.#ctor"> <summary> Initializes a new instance of the Perspective class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Perspective.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Perspective.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Perspective.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Perspective.Val"> <summary> <para> Perspective Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DataLabel"> <summary> <para>Data Label.</para> <para>When the object is serialized out as xml, its qualified name is c:dLbl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Delete <c:delete></description></item> <item><description>Layout <c:layout></description></item> <item><description>ChartText <c:tx></description></item> <item><description>NumberingFormat <c:numFmt></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>DataLabelPosition <c:dLblPos></description></item> <item><description>ShowLegendKey <c:showLegendKey></description></item> <item><description>ShowValue <c:showVal></description></item> <item><description>ShowCategoryName <c:showCatName></description></item> <item><description>ShowSeriesName <c:showSerName></description></item> <item><description>ShowPercent <c:showPercent></description></item> <item><description>ShowBubbleSize <c:showBubbleSize></description></item> <item><description>Separator <c:separator></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.#ctor"> <summary> Initializes a new instance of the DataLabel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.#ctor(System.String)"> <summary> Initializes a new instance of the DataLabel class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataLabel.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Symbol"> <summary> <para>Symbol.</para> <para>When the object is serialized out as xml, its qualified name is c:symbol.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Symbol.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Symbol.#ctor"> <summary> Initializes a new instance of the Symbol class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Symbol.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Symbol.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Symbol.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Symbol.Val"> <summary> <para> Marker Style Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Size"> <summary> <para>Size.</para> <para>When the object is serialized out as xml, its qualified name is c:size.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Size.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Size.#ctor"> <summary> Initializes a new instance of the Size class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Size.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Size.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Size.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Size.Val"> <summary> <para> Marker Size Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Marker"> <summary> <para>Marker.</para> <para>When the object is serialized out as xml, its qualified name is c:marker.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Symbol <c:symbol></description></item> <item><description>Size <c:size></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Marker.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Marker.#ctor"> <summary> Initializes a new instance of the Marker class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Marker.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Marker class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Marker.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Marker class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Marker.#ctor(System.String)"> <summary> Initializes a new instance of the Marker class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Marker.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Marker.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Marker.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Marker.Symbol"> <summary> <para> Symbol.</para> <para>Represents the element tag in schema: c:symbol </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Marker.Size"> <summary> <para> Size.</para> <para>Represents the element tag in schema: c:size </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Marker.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Marker.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions"> <summary> <para>Defines the PictureOptions Class.</para> <para>When the object is serialized out as xml, its qualified name is c:pictureOptions.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ApplyToFront <c:applyToFront></description></item> <item><description>ApplyToSides <c:applyToSides></description></item> <item><description>ApplyToEnd <c:applyToEnd></description></item> <item><description>PictureFormat <c:pictureFormat></description></item> <item><description>PictureStackUnit <c:pictureStackUnit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.#ctor"> <summary> Initializes a new instance of the PictureOptions class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PictureOptions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PictureOptions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.#ctor(System.String)"> <summary> Initializes a new instance of the PictureOptions class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.ApplyToFront"> <summary> <para> Apply To Front.</para> <para>Represents the element tag in schema: c:applyToFront </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.ApplyToSides"> <summary> <para> Apply To Sides.</para> <para>Represents the element tag in schema: c:applyToSides </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.ApplyToEnd"> <summary> <para> Apply to End.</para> <para>Represents the element tag in schema: c:applyToEnd </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.PictureFormat"> <summary> <para> Picture Format.</para> <para>Represents the element tag in schema: c:pictureFormat </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureOptions.PictureStackUnit"> <summary> <para> Picture Stack Unit.</para> <para>Represents the element tag in schema: c:pictureStackUnit </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TrendlineType"> <summary> <para>Trendline Type.</para> <para>When the object is serialized out as xml, its qualified name is c:trendlineType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineType.#ctor"> <summary> Initializes a new instance of the TrendlineType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineType.Val"> <summary> <para> Trendline Type Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PolynomialOrder"> <summary> <para>Polynomial Trendline Order.</para> <para>When the object is serialized out as xml, its qualified name is c:order.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PolynomialOrder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PolynomialOrder.#ctor"> <summary> Initializes a new instance of the PolynomialOrder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PolynomialOrder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PolynomialOrder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PolynomialOrder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PolynomialOrder.Val"> <summary> <para> Order Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Period"> <summary> <para>Period.</para> <para>When the object is serialized out as xml, its qualified name is c:period.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Period.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Period.#ctor"> <summary> Initializes a new instance of the Period class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Period.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Period.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Period.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Period.Val"> <summary> <para> Period Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel"> <summary> <para>Trendline Label.</para> <para>When the object is serialized out as xml, its qualified name is c:trendlineLbl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Layout <c:layout></description></item> <item><description>ChartText <c:tx></description></item> <item><description>NumberingFormat <c:numFmt></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.#ctor"> <summary> Initializes a new instance of the TrendlineLabel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TrendlineLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TrendlineLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.#ctor(System.String)"> <summary> Initializes a new instance of the TrendlineLabel class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.Layout"> <summary> <para> Layout.</para> <para>Represents the element tag in schema: c:layout </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.ChartText"> <summary> <para> ChartText.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.NumberingFormat"> <summary> <para> Number Format.</para> <para>Represents the element tag in schema: c:numFmt </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.TextProperties"> <summary> <para> TextProperties.</para> <para>Represents the element tag in schema: c:txPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TrendlineLabel.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ErrorDirection"> <summary> <para>Error Bar Direction.</para> <para>When the object is serialized out as xml, its qualified name is c:errDir.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorDirection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorDirection.#ctor"> <summary> Initializes a new instance of the ErrorDirection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorDirection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorDirection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorDirection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorDirection.Val"> <summary> <para> Error Bar Direction Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarType"> <summary> <para>Error Bar Type.</para> <para>When the object is serialized out as xml, its qualified name is c:errBarType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarType.#ctor"> <summary> Initializes a new instance of the ErrorBarType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarType.Val"> <summary> <para> Error Bar Type Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValueType"> <summary> <para>Error Bar Value Type.</para> <para>When the object is serialized out as xml, its qualified name is c:errValType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValueType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValueType.#ctor"> <summary> Initializes a new instance of the ErrorBarValueType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValueType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValueType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValueType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValueType.Val"> <summary> <para> Error Bar Type Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Plus"> <summary> <para>Plus.</para> <para>When the object is serialized out as xml, its qualified name is c:plus.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.NumberDataSourceType"> <summary> Defines the NumberDataSourceType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberDataSourceType.#ctor"> <summary> Initializes a new instance of the NumberDataSourceType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberDataSourceType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NumberDataSourceType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberDataSourceType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NumberDataSourceType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.NumberDataSourceType.#ctor(System.String)"> <summary> Initializes a new instance of the NumberDataSourceType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberDataSourceType.NumberReference"> <summary> <para> Number Reference.</para> <para>Represents the element tag in schema: c:numRef </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.NumberDataSourceType.NumberLiteral"> <summary> <para> Number Literal.</para> <para>Represents the element tag in schema: c:numLit </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Plus.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Plus.#ctor"> <summary> Initializes a new instance of the Plus class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Plus.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Plus class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Plus.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Plus class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Plus.#ctor(System.String)"> <summary> Initializes a new instance of the Plus class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Plus.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Plus.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Plus.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Minus"> <summary> <para>Minus.</para> <para>When the object is serialized out as xml, its qualified name is c:minus.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Minus.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Minus.#ctor"> <summary> Initializes a new instance of the Minus class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Minus.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Minus class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Minus.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Minus class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Minus.#ctor(System.String)"> <summary> Initializes a new instance of the Minus class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Minus.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Minus.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Minus.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Values"> <summary> <para>Values.</para> <para>When the object is serialized out as xml, its qualified name is c:val.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Values.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Values.#ctor"> <summary> Initializes a new instance of the Values class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Values.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Values class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Values.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Values class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Values.#ctor(System.String)"> <summary> Initializes a new instance of the Values class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Values.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Values.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Values.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.YValues"> <summary> <para>Defines the YValues Class.</para> <para>When the object is serialized out as xml, its qualified name is c:yVal.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.YValues.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.YValues.#ctor"> <summary> Initializes a new instance of the YValues class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.YValues.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the YValues class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.YValues.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the YValues class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.YValues.#ctor(System.String)"> <summary> Initializes a new instance of the YValues class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.YValues.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.YValues.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.YValues.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize"> <summary> <para>Bubble Size.</para> <para>When the object is serialized out as xml, its qualified name is c:bubbleSize.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize.#ctor"> <summary> Initializes a new instance of the BubbleSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BubbleSize class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BubbleSize class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize.#ctor(System.String)"> <summary> Initializes a new instance of the BubbleSize class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.GapWidth"> <summary> <para>Gap Width.</para> <para>When the object is serialized out as xml, its qualified name is c:gapWidth.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.GapAmountType"> <summary> Defines the GapAmountType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.GapAmountType.#ctor"> <summary> Initializes a new instance of the GapAmountType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.GapAmountType.Val"> <summary> <para> Gap Size Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.GapWidth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.GapWidth.#ctor"> <summary> Initializes a new instance of the GapWidth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.GapWidth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.GapWidth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.GapWidth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.GapDepth"> <summary> <para>Gap Depth.</para> <para>When the object is serialized out as xml, its qualified name is c:gapDepth.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.GapDepth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.GapDepth.#ctor"> <summary> Initializes a new instance of the GapDepth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.GapDepth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.GapDepth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.GapDepth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.UpBars"> <summary> <para>Up Bars.</para> <para>When the object is serialized out as xml, its qualified name is c:upBars.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.UpDownBarType"> <summary> Defines the UpDownBarType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBarType.#ctor"> <summary> Initializes a new instance of the UpDownBarType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBarType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the UpDownBarType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBarType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the UpDownBarType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBarType.#ctor(System.String)"> <summary> Initializes a new instance of the UpDownBarType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpDownBarType.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpBars.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpBars.#ctor"> <summary> Initializes a new instance of the UpBars class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpBars.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the UpBars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpBars.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the UpBars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpBars.#ctor(System.String)"> <summary> Initializes a new instance of the UpBars class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpBars.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpBars.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpBars.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DownBars"> <summary> <para>Down Bars.</para> <para>When the object is serialized out as xml, its qualified name is c:downBars.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DownBars.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DownBars.#ctor"> <summary> Initializes a new instance of the DownBars class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DownBars.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DownBars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DownBars.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DownBars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DownBars.#ctor(System.String)"> <summary> Initializes a new instance of the DownBars class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DownBars.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DownBars.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DownBars.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars"> <summary> <para>Defines the UpDownBars Class.</para> <para>When the object is serialized out as xml, its qualified name is c:upDownBars.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GapWidth <c:gapWidth></description></item> <item><description>UpBars <c:upBars></description></item> <item><description>DownBars <c:downBars></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.#ctor"> <summary> Initializes a new instance of the UpDownBars class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the UpDownBars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the UpDownBars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.#ctor(System.String)"> <summary> Initializes a new instance of the UpDownBars class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.GapWidth"> <summary> <para> Gap Width.</para> <para>Represents the element tag in schema: c:gapWidth </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.UpBars"> <summary> <para> Up Bars.</para> <para>Represents the element tag in schema: c:upBars </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.DownBars"> <summary> <para> Down Bars.</para> <para>Represents the element tag in schema: c:downBars </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.UpDownBars.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.FirstSliceAngle"> <summary> <para>First Slice Angle.</para> <para>When the object is serialized out as xml, its qualified name is c:firstSliceAng.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstSliceAngle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstSliceAngle.#ctor"> <summary> Initializes a new instance of the FirstSliceAngle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.FirstSliceAngle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FirstSliceAngle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FirstSliceAngle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.FirstSliceAngle.Val"> <summary> <para> First Slice Angle Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.OfPieType"> <summary> <para>Pie of Pie or Bar of Pie Type.</para> <para>When the object is serialized out as xml, its qualified name is c:ofPieType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieType.#ctor"> <summary> Initializes a new instance of the OfPieType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OfPieType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OfPieType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OfPieType.Val"> <summary> <para> Pie of Pie or Bar of Pie Type Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SplitType"> <summary> <para>Split Type.</para> <para>When the object is serialized out as xml, its qualified name is c:splitType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SplitType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SplitType.#ctor"> <summary> Initializes a new instance of the SplitType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SplitType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SplitType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SplitType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SplitType.Val"> <summary> <para> Split Type Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit"> <summary> <para>Custom Split.</para> <para>When the object is serialized out as xml, its qualified name is c:custSplit.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SecondPiePoint <c:secondPiePt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit.#ctor"> <summary> Initializes a new instance of the CustomSplit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomSplit class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomSplit class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit.#ctor(System.String)"> <summary> Initializes a new instance of the CustomSplit class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CustomSplit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SecondPieSize"> <summary> <para>Second Pie Size.</para> <para>When the object is serialized out as xml, its qualified name is c:secondPieSize.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SecondPieSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SecondPieSize.#ctor"> <summary> Initializes a new instance of the SecondPieSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SecondPieSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SecondPieSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SecondPieSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SecondPieSize.Val"> <summary> <para> Second Pie Size Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BandFormat"> <summary> <para>Band Format.</para> <para>When the object is serialized out as xml, its qualified name is c:bandFmt.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.#ctor"> <summary> Initializes a new instance of the BandFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BandFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BandFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.#ctor(System.String)"> <summary> Initializes a new instance of the BandFormat class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BandFormat.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PictureFormat"> <summary> <para>Picture Format.</para> <para>When the object is serialized out as xml, its qualified name is c:pictureFormat.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureFormat.#ctor"> <summary> Initializes a new instance of the PictureFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureFormat.Val"> <summary> <para> Picture Format Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PictureStackUnit"> <summary> <para>Picture Stack Unit.</para> <para>When the object is serialized out as xml, its qualified name is c:pictureStackUnit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureStackUnit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureStackUnit.#ctor"> <summary> Initializes a new instance of the PictureStackUnit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PictureStackUnit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureStackUnit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureStackUnit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PictureStackUnit.Val"> <summary> <para> Picture Stack Unit.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnit"> <summary> <para>Built in Display Unit Value.</para> <para>When the object is serialized out as xml, its qualified name is c:builtInUnit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnit.#ctor"> <summary> Initializes a new instance of the BuiltInUnit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnit.Val"> <summary> <para> Built In Unit Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel"> <summary> <para>Display Units Label.</para> <para>When the object is serialized out as xml, its qualified name is c:dispUnitsLbl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Layout <c:layout></description></item> <item><description>ChartText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.#ctor"> <summary> Initializes a new instance of the DisplayUnitsLabel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DisplayUnitsLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DisplayUnitsLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.#ctor(System.String)"> <summary> Initializes a new instance of the DisplayUnitsLabel class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.Layout"> <summary> <para> Layout.</para> <para>Represents the element tag in schema: c:layout </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.ChartText"> <summary> <para> ChartText.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnitsLabel.TextProperties"> <summary> <para> TextProperties.</para> <para>Represents the element tag in schema: c:txPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LogBase"> <summary> <para>Logarithmic Base.</para> <para>When the object is serialized out as xml, its qualified name is c:logBase.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LogBase.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LogBase.#ctor"> <summary> Initializes a new instance of the LogBase class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LogBase.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LogBase.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LogBase.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LogBase.Val"> <summary> <para> Logarithmic Base Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Orientation"> <summary> <para>Axis Orientation.</para> <para>When the object is serialized out as xml, its qualified name is c:orientation.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Orientation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Orientation.#ctor"> <summary> Initializes a new instance of the Orientation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Orientation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Orientation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Orientation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Orientation.Val"> <summary> <para> Orientation Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignment"> <summary> <para>Label Alignment.</para> <para>When the object is serialized out as xml, its qualified name is c:lblAlgn.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignment.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignment.#ctor"> <summary> Initializes a new instance of the LabelAlignment class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignment.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignment.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignment.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignment.Val"> <summary> <para> Label Alignment Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LabelOffset"> <summary> <para>Label Offset.</para> <para>When the object is serialized out as xml, its qualified name is c:lblOffset.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LabelOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LabelOffset.#ctor"> <summary> Initializes a new instance of the LabelOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LabelOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LabelOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LabelOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LabelOffset.Val"> <summary> <para> Label Offset Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TickLabelSkip"> <summary> <para>Defines the TickLabelSkip Class.</para> <para>When the object is serialized out as xml, its qualified name is c:tickLblSkip.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SkipType"> <summary> Defines the SkipType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SkipType.#ctor"> <summary> Initializes a new instance of the SkipType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SkipType.Val"> <summary> <para> Tick Skip Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickLabelSkip.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickLabelSkip.#ctor"> <summary> Initializes a new instance of the TickLabelSkip class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickLabelSkip.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TickLabelSkip.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TickLabelSkip.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TickMarkSkip"> <summary> <para>Tick Mark Skip.</para> <para>When the object is serialized out as xml, its qualified name is c:tickMarkSkip.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickMarkSkip.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickMarkSkip.#ctor"> <summary> Initializes a new instance of the TickMarkSkip class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TickMarkSkip.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TickMarkSkip.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TickMarkSkip.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CrossBetween"> <summary> <para>Cross Between.</para> <para>When the object is serialized out as xml, its qualified name is c:crossBetween.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossBetween.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossBetween.#ctor"> <summary> Initializes a new instance of the CrossBetween class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CrossBetween.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CrossBetween.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CrossBetween.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CrossBetween.Val"> <summary> <para> Cross Between Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MajorUnit"> <summary> <para>Major Unit.</para> <para>When the object is serialized out as xml, its qualified name is c:majorUnit.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AxisUnitType"> <summary> Defines the AxisUnitType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisUnitType.#ctor"> <summary> Initializes a new instance of the AxisUnitType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisUnitType.Val"> <summary> <para> Major Unit Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorUnit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorUnit.#ctor"> <summary> Initializes a new instance of the MajorUnit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorUnit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MajorUnit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MajorUnit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MinorUnit"> <summary> <para>Minor Unit.</para> <para>When the object is serialized out as xml, its qualified name is c:minorUnit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorUnit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorUnit.#ctor"> <summary> Initializes a new instance of the MinorUnit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorUnit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinorUnit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinorUnit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits"> <summary> <para>Display Units.</para> <para>When the object is serialized out as xml, its qualified name is c:dispUnits.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CustomDisplayUnit <c:custUnit></description></item> <item><description>BuiltInUnit <c:builtInUnit></description></item> <item><description>DisplayUnitsLabel <c:dispUnitsLbl></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits.#ctor"> <summary> Initializes a new instance of the DisplayUnits class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DisplayUnits class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DisplayUnits class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits.#ctor(System.String)"> <summary> Initializes a new instance of the DisplayUnits class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayUnits.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat"> <summary> <para>Pivot Format.</para> <para>When the object is serialized out as xml, its qualified name is c:pivotFmt.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>ShapeProperties <c:spPr></description></item> <item><description>Marker <c:marker></description></item> <item><description>DataLabel <c:dLbl></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.#ctor"> <summary> Initializes a new instance of the PivotFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.#ctor(System.String)"> <summary> Initializes a new instance of the PivotFormat class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.ShapeProperties"> <summary> <para> ShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.Marker"> <summary> <para> Marker.</para> <para>Represents the element tag in schema: c:marker </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.DataLabel"> <summary> <para> Data Label.</para> <para>Represents the element tag in schema: c:dLbl </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormat.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LegendPosition"> <summary> <para>Legend Position.</para> <para>When the object is serialized out as xml, its qualified name is c:legendPos.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendPosition.#ctor"> <summary> Initializes a new instance of the LegendPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LegendPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LegendPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LegendPosition.Val"> <summary> <para> Legend Position Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry"> <summary> <para>Legend Entry.</para> <para>When the object is serialized out as xml, its qualified name is c:legendEntry.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Delete <c:delete></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.#ctor"> <summary> Initializes a new instance of the LegendEntry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LegendEntry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LegendEntry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.#ctor(System.String)"> <summary> Initializes a new instance of the LegendEntry class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LegendEntry.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats"> <summary> <para>Pivot Formats.</para> <para>When the object is serialized out as xml, its qualified name is c:pivotFmts.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotFormat <c:pivotFmt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats.#ctor"> <summary> Initializes a new instance of the PivotFormats class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats.#ctor(System.String)"> <summary> Initializes a new instance of the PivotFormats class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotFormats.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.View3D"> <summary> <para>View In 3D.</para> <para>When the object is serialized out as xml, its qualified name is c:view3D.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RotateX <c:rotX></description></item> <item><description>HeightPercent <c:hPercent></description></item> <item><description>RotateY <c:rotY></description></item> <item><description>DepthPercent <c:depthPercent></description></item> <item><description>RightAngleAxes <c:rAngAx></description></item> <item><description>Perspective <c:perspective></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.View3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.View3D.#ctor"> <summary> Initializes a new instance of the View3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.View3D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the View3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.View3D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the View3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.View3D.#ctor(System.String)"> <summary> Initializes a new instance of the View3D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.View3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.RotateX"> <summary> <para> X Rotation.</para> <para>Represents the element tag in schema: c:rotX </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.HeightPercent"> <summary> <para> Height Percent.</para> <para>Represents the element tag in schema: c:hPercent </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.RotateY"> <summary> <para> Y Rotation.</para> <para>Represents the element tag in schema: c:rotY </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.DepthPercent"> <summary> <para> Depth Percent.</para> <para>Represents the element tag in schema: c:depthPercent </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.RightAngleAxes"> <summary> <para> Right Angle Axes.</para> <para>Represents the element tag in schema: c:rAngAx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.Perspective"> <summary> <para> Perspective.</para> <para>Represents the element tag in schema: c:perspective </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.View3D.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Floor"> <summary> <para>Floor.</para> <para>When the object is serialized out as xml, its qualified name is c:floor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Thickness <c:thickness></description></item> <item><description>ShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType"> <summary> Defines the SurfaceType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Thickness <c:thickness></description></item> <item><description>ShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType.#ctor"> <summary> Initializes a new instance of the SurfaceType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SurfaceType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SurfaceType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType.#ctor(System.String)"> <summary> Initializes a new instance of the SurfaceType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType.Thickness"> <summary> <para> Thickness.</para> <para>Represents the element tag in schema: c:thickness </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType.ShapeProperties"> <summary> <para> ShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType.PictureOptions"> <summary> <para> Picture Options.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceType.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Floor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Floor.#ctor"> <summary> Initializes a new instance of the Floor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Floor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Floor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Floor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Floor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Floor.#ctor(System.String)"> <summary> Initializes a new instance of the Floor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Floor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Floor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Floor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SideWall"> <summary> <para>Side Wall.</para> <para>When the object is serialized out as xml, its qualified name is c:sideWall.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Thickness <c:thickness></description></item> <item><description>ShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SideWall.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SideWall.#ctor"> <summary> Initializes a new instance of the SideWall class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SideWall.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SideWall class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SideWall.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SideWall class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SideWall.#ctor(System.String)"> <summary> Initializes a new instance of the SideWall class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SideWall.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SideWall.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SideWall.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BackWall"> <summary> <para>Back Wall.</para> <para>When the object is serialized out as xml, its qualified name is c:backWall.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Thickness <c:thickness></description></item> <item><description>ShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BackWall.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BackWall.#ctor"> <summary> Initializes a new instance of the BackWall class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BackWall.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackWall class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BackWall.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackWall class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BackWall.#ctor(System.String)"> <summary> Initializes a new instance of the BackWall class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BackWall.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BackWall.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BackWall.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PlotArea"> <summary> <para>Plot Area.</para> <para>When the object is serialized out as xml, its qualified name is c:plotArea.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Layout <c:layout></description></item> <item><description>AreaChart <c:areaChart></description></item> <item><description>Area3DChart <c:area3DChart></description></item> <item><description>LineChart <c:lineChart></description></item> <item><description>Line3DChart <c:line3DChart></description></item> <item><description>StockChart <c:stockChart></description></item> <item><description>RadarChart <c:radarChart></description></item> <item><description>ScatterChart <c:scatterChart></description></item> <item><description>PieChart <c:pieChart></description></item> <item><description>Pie3DChart <c:pie3DChart></description></item> <item><description>DoughnutChart <c:doughnutChart></description></item> <item><description>BarChart <c:barChart></description></item> <item><description>Bar3DChart <c:bar3DChart></description></item> <item><description>OfPieChart <c:ofPieChart></description></item> <item><description>SurfaceChart <c:surfaceChart></description></item> <item><description>Surface3DChart <c:surface3DChart></description></item> <item><description>BubbleChart <c:bubbleChart></description></item> <item><description>ValueAxis <c:valAx></description></item> <item><description>CategoryAxis <c:catAx></description></item> <item><description>DateAxis <c:dateAx></description></item> <item><description>SeriesAxis <c:serAx></description></item> <item><description>DataTable <c:dTable></description></item> <item><description>ShapeProperties <c:spPr></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.#ctor"> <summary> Initializes a new instance of the PlotArea class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PlotArea class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PlotArea class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.#ctor(System.String)"> <summary> Initializes a new instance of the PlotArea class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PlotArea.Layout"> <summary> <para> Layout.</para> <para>Represents the element tag in schema: c:layout </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Legend"> <summary> <para>Legend.</para> <para>When the object is serialized out as xml, its qualified name is c:legend.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LegendPosition <c:legendPos></description></item> <item><description>LegendEntry <c:legendEntry></description></item> <item><description>Layout <c:layout></description></item> <item><description>Overlay <c:overlay></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Legend.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Legend.#ctor"> <summary> Initializes a new instance of the Legend class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Legend.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Legend class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Legend.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Legend class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Legend.#ctor(System.String)"> <summary> Initializes a new instance of the Legend class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Legend.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Legend.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Legend.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Legend.LegendPosition"> <summary> <para> Legend Position.</para> <para>Represents the element tag in schema: c:legendPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAs"> <summary> <para>Display Blanks As.</para> <para>When the object is serialized out as xml, its qualified name is c:dispBlanksAs.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAs.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAs.#ctor"> <summary> Initializes a new instance of the DisplayBlanksAs class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAs.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAs.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAs.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAs.Val"> <summary> <para> Display Blanks As Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter"> <summary> <para>Header and Footer.</para> <para>When the object is serialized out as xml, its qualified name is c:headerFooter.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OddHeader <c:oddHeader></description></item> <item><description>OddFooter <c:oddFooter></description></item> <item><description>EvenHeader <c:evenHeader></description></item> <item><description>EvenFooter <c:evenFooter></description></item> <item><description>FirstHeader <c:firstHeader></description></item> <item><description>FirstFooter <c:firstFooter></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.#ctor"> <summary> Initializes a new instance of the HeaderFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HeaderFooter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HeaderFooter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.#ctor(System.String)"> <summary> Initializes a new instance of the HeaderFooter class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.AlignWithMargins"> <summary> <para> Align With Margins.</para> <para>Represents the attribte in schema: alignWithMargins </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.DifferentOddEven"> <summary> <para> Different Odd Even.</para> <para>Represents the attribte in schema: differentOddEven </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.DifferentFirst"> <summary> <para> Different First.</para> <para>Represents the attribte in schema: differentFirst </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.OddHeader"> <summary> <para> Odd Header.</para> <para>Represents the element tag in schema: c:oddHeader </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.OddFooter"> <summary> <para> Odd Footer.</para> <para>Represents the element tag in schema: c:oddFooter </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.EvenHeader"> <summary> <para> Even Header.</para> <para>Represents the element tag in schema: c:evenHeader </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.EvenFooter"> <summary> <para> Even Footer.</para> <para>Represents the element tag in schema: c:evenFooter </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.FirstHeader"> <summary> <para> First Header.</para> <para>Represents the element tag in schema: c:firstHeader </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HeaderFooter.FirstFooter"> <summary> <para> First Footer.</para> <para>Represents the element tag in schema: c:firstFooter </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PageMargins"> <summary> <para>Page Margins.</para> <para>When the object is serialized out as xml, its qualified name is c:pageMargins.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.#ctor"> <summary> Initializes a new instance of the PageMargins class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.Left"> <summary> <para> Left.</para> <para>Represents the attribte in schema: l </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.Right"> <summary> <para> Right.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.Top"> <summary> <para> Top.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.Bottom"> <summary> <para> Bottom.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.Header"> <summary> <para> Header.</para> <para>Represents the attribte in schema: header </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageMargins.Footer"> <summary> <para> Footer.</para> <para>Represents the attribte in schema: footer </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PageSetup"> <summary> <para>Page Setup.</para> <para>When the object is serialized out as xml, its qualified name is c:pageSetup.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.#ctor"> <summary> Initializes a new instance of the PageSetup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.PaperSize"> <summary> <para> Page Size.</para> <para>Represents the attribte in schema: paperSize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.FirstPageNumber"> <summary> <para> First Page Number.</para> <para>Represents the attribte in schema: firstPageNumber </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.Orientation"> <summary> <para> Orientation.</para> <para>Represents the attribte in schema: orientation </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.BlackAndWhite"> <summary> <para> Black and White.</para> <para>Represents the attribte in schema: blackAndWhite </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.Draft"> <summary> <para> Draft.</para> <para>Represents the attribte in schema: draft </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.UseFirstPageNumber"> <summary> <para> Use First Page Number.</para> <para>Represents the attribte in schema: useFirstPageNumber </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.HorizontalDpi"> <summary> <para> Horizontal DPI.</para> <para>Represents the attribte in schema: horizontalDpi </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.VerticalDpi"> <summary> <para> Vertical DPI.</para> <para>Represents the attribte in schema: verticalDpi </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PageSetup.Copies"> <summary> <para> Copies.</para> <para>Represents the attribte in schema: copies </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DataPoint"> <summary> <para>Data Point.</para> <para>When the object is serialized out as xml, its qualified name is c:dPt.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>InvertIfNegative <c:invertIfNegative></description></item> <item><description>Marker <c:marker></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>Explosion <c:explosion></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.#ctor"> <summary> Initializes a new instance of the DataPoint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataPoint class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataPoint class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.#ctor(System.String)"> <summary> Initializes a new instance of the DataPoint class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.InvertIfNegative"> <summary> <para> Invert if Negative.</para> <para>Represents the element tag in schema: c:invertIfNegative </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.Marker"> <summary> <para> Marker.</para> <para>Represents the element tag in schema: c:marker </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.Bubble3D"> <summary> <para> 3D Bubble.</para> <para>Represents the element tag in schema: c:bubble3D </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.Explosion"> <summary> <para> Explosion.</para> <para>Represents the element tag in schema: c:explosion </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.PictureOptions"> <summary> <para> PictureOptions.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataPoint.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Trendline"> <summary> <para>Defines the Trendline Class.</para> <para>When the object is serialized out as xml, its qualified name is c:trendline.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TrendlineName <c:name></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TrendlineType <c:trendlineType></description></item> <item><description>PolynomialOrder <c:order></description></item> <item><description>Period <c:period></description></item> <item><description>Forward <c:forward></description></item> <item><description>Backward <c:backward></description></item> <item><description>Intercept <c:intercept></description></item> <item><description>DisplayRSquaredValue <c:dispRSqr></description></item> <item><description>DisplayEquation <c:dispEq></description></item> <item><description>TrendlineLabel <c:trendlineLbl></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Trendline.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Trendline.#ctor"> <summary> Initializes a new instance of the Trendline class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Trendline.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Trendline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Trendline.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Trendline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Trendline.#ctor(System.String)"> <summary> Initializes a new instance of the Trendline class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Trendline.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.TrendlineName"> <summary> <para> Trendline Name.</para> <para>Represents the element tag in schema: c:name </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.TrendlineType"> <summary> <para> Trendline Type.</para> <para>Represents the element tag in schema: c:trendlineType </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.PolynomialOrder"> <summary> <para> Polynomial Trendline Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.Period"> <summary> <para> Period.</para> <para>Represents the element tag in schema: c:period </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.Forward"> <summary> <para> Forward.</para> <para>Represents the element tag in schema: c:forward </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.Backward"> <summary> <para> Backward.</para> <para>Represents the element tag in schema: c:backward </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.Intercept"> <summary> <para> Intercept.</para> <para>Represents the element tag in schema: c:intercept </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.DisplayRSquaredValue"> <summary> <para> Display R Squared Value.</para> <para>Represents the element tag in schema: c:dispRSqr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.DisplayEquation"> <summary> <para> Display Equation.</para> <para>Represents the element tag in schema: c:dispEq </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.TrendlineLabel"> <summary> <para> Trendline Label.</para> <para>Represents the element tag in schema: c:trendlineLbl </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Trendline.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars"> <summary> <para>Error Bars.</para> <para>When the object is serialized out as xml, its qualified name is c:errBars.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ErrorDirection <c:errDir></description></item> <item><description>ErrorBarType <c:errBarType></description></item> <item><description>ErrorBarValueType <c:errValType></description></item> <item><description>NoEndCap <c:noEndCap></description></item> <item><description>Plus <c:plus></description></item> <item><description>Minus <c:minus></description></item> <item><description>ErrorBarValue <c:val></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.#ctor"> <summary> Initializes a new instance of the ErrorBars class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ErrorBars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ErrorBars class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.#ctor(System.String)"> <summary> Initializes a new instance of the ErrorBars class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.ErrorDirection"> <summary> <para> Error Bar Direction.</para> <para>Represents the element tag in schema: c:errDir </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.ErrorBarType"> <summary> <para> Error Bar Type.</para> <para>Represents the element tag in schema: c:errBarType </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.ErrorBarValueType"> <summary> <para> Error Bar Value Type.</para> <para>Represents the element tag in schema: c:errValType </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.NoEndCap"> <summary> <para> No End Cap.</para> <para>Represents the element tag in schema: c:noEndCap </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.Plus"> <summary> <para> Plus.</para> <para>Represents the element tag in schema: c:plus </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.Minus"> <summary> <para> Minus.</para> <para>Represents the element tag in schema: c:minus </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.ErrorBarValue"> <summary> <para> Error Bar Value.</para> <para>Represents the element tag in schema: c:val </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ErrorBars.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData"> <summary> <para>Category Axis Data.</para> <para>When the object is serialized out as xml, its qualified name is c:cat.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MultiLevelStringReference <c:multiLvlStrRef></description></item> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> <item><description>StringReference <c:strRef></description></item> <item><description>StringLiteral <c:strLit></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType"> <summary> Defines the AxisDataSourceType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MultiLevelStringReference <c:multiLvlStrRef></description></item> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> <item><description>StringReference <c:strRef></description></item> <item><description>StringLiteral <c:strLit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.#ctor"> <summary> Initializes a new instance of the AxisDataSourceType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AxisDataSourceType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AxisDataSourceType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.#ctor(System.String)"> <summary> Initializes a new instance of the AxisDataSourceType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.MultiLevelStringReference"> <summary> <para> Multi Level String Reference.</para> <para>Represents the element tag in schema: c:multiLvlStrRef </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.NumberReference"> <summary> <para> Number Reference.</para> <para>Represents the element tag in schema: c:numRef </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.NumberLiteral"> <summary> <para> Number Literal.</para> <para>Represents the element tag in schema: c:numLit </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.StringReference"> <summary> <para> StringReference.</para> <para>Represents the element tag in schema: c:strRef </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AxisDataSourceType.StringLiteral"> <summary> <para> String Literal.</para> <para>Represents the element tag in schema: c:strLit </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData.#ctor"> <summary> Initializes a new instance of the CategoryAxisData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CategoryAxisData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CategoryAxisData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData.#ctor(System.String)"> <summary> Initializes a new instance of the CategoryAxisData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxisData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.XValues"> <summary> <para>Defines the XValues Class.</para> <para>When the object is serialized out as xml, its qualified name is c:xVal.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MultiLevelStringReference <c:multiLvlStrRef></description></item> <item><description>NumberReference <c:numRef></description></item> <item><description>NumberLiteral <c:numLit></description></item> <item><description>StringReference <c:strRef></description></item> <item><description>StringLiteral <c:strLit></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.XValues.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.XValues.#ctor"> <summary> Initializes a new instance of the XValues class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.XValues.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the XValues class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.XValues.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the XValues class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.XValues.#ctor(System.String)"> <summary> Initializes a new instance of the XValues class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.XValues.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.XValues.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.XValues.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Overlap"> <summary> <para>Overlap.</para> <para>When the object is serialized out as xml, its qualified name is c:overlap.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Overlap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Overlap.#ctor"> <summary> Initializes a new instance of the Overlap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Overlap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Overlap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Overlap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Overlap.Val"> <summary> <para> Overlap Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties"> <summary> <para>Defines the ShapeProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is c:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyle"> <summary> <para>Scatter Style.</para> <para>When the object is serialized out as xml, its qualified name is c:scatterStyle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyle.#ctor"> <summary> Initializes a new instance of the ScatterStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyle.Val"> <summary> <para> Scatter Style Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries"> <summary> <para>Scatter Chart Series.</para> <para>When the object is serialized out as xml, its qualified name is c:ser.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Order <c:order></description></item> <item><description>SeriesText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>Marker <c:marker></description></item> <item><description>DataPoint <c:dPt></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>Trendline <c:trendline></description></item> <item><description>ErrorBars <c:errBars></description></item> <item><description>XValues <c:xVal></description></item> <item><description>YValues <c:yVal></description></item> <item><description>Smooth <c:smooth></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.#ctor"> <summary> Initializes a new instance of the ScatterChartSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ScatterChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ScatterChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.#ctor(System.String)"> <summary> Initializes a new instance of the ScatterChartSeries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.Order"> <summary> <para> Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.SeriesText"> <summary> <para> Series Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChartSeries.Marker"> <summary> <para> Marker.</para> <para>Represents the element tag in schema: c:marker </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries"> <summary> <para>Bubble Chart Series.</para> <para>When the object is serialized out as xml, its qualified name is c:ser.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Order <c:order></description></item> <item><description>SeriesText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>InvertIfNegative <c:invertIfNegative></description></item> <item><description>DataPoint <c:dPt></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>Trendline <c:trendline></description></item> <item><description>ErrorBars <c:errBars></description></item> <item><description>XValues <c:xVal></description></item> <item><description>YValues <c:yVal></description></item> <item><description>BubbleSize <c:bubbleSize></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>BubbleSerExtensionList <c:extLst></description></item> <item><description>Smooth <c:smooth></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.#ctor"> <summary> Initializes a new instance of the BubbleChartSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BubbleChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BubbleChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.#ctor(System.String)"> <summary> Initializes a new instance of the BubbleChartSeries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.Order"> <summary> <para> Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.SeriesText"> <summary> <para> Series Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.PictureOptions"> <summary> <para> PictureOptions.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChartSeries.InvertIfNegative"> <summary> <para> Invert if Negative.</para> <para>Represents the element tag in schema: c:invertIfNegative </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BubbleScale"> <summary> <para>Bubble Scale.</para> <para>When the object is serialized out as xml, its qualified name is c:bubbleScale.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleScale.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleScale.#ctor"> <summary> Initializes a new instance of the BubbleScale class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleScale.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleScale.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleScale.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleScale.Val"> <summary> <para> Bubble Scale Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresents"> <summary> <para>Size Represents.</para> <para>When the object is serialized out as xml, its qualified name is c:sizeRepresents.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresents.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresents.#ctor"> <summary> Initializes a new instance of the SizeRepresents class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresents.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresents.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresents.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresents.Val"> <summary> <para> Size Represents Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Shape"> <summary> <para>Defines the Shape Class.</para> <para>When the object is serialized out as xml, its qualified name is c:shape.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Shape.Val"> <summary> <para> Shape Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RadarStyle"> <summary> <para>Radar Style.</para> <para>When the object is serialized out as xml, its qualified name is c:radarStyle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarStyle.#ctor"> <summary> Initializes a new instance of the RadarStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarStyle.Val"> <summary> <para> Radar Style Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries"> <summary> <para>Radar Chart Series.</para> <para>When the object is serialized out as xml, its qualified name is c:ser.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Index <c:idx></description></item> <item><description>Order <c:order></description></item> <item><description>SeriesText <c:tx></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>PictureOptions <c:pictureOptions></description></item> <item><description>Marker <c:marker></description></item> <item><description>DataPoint <c:dPt></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>CategoryAxisData <c:cat></description></item> <item><description>Values <c:val></description></item> <item><description>Bubble3D <c:bubble3D></description></item> <item><description>ExtensionList <c:extLst></description></item> <item><description>Smooth <c:smooth></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.#ctor"> <summary> Initializes a new instance of the RadarChartSeries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RadarChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RadarChartSeries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.#ctor(System.String)"> <summary> Initializes a new instance of the RadarChartSeries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.Index"> <summary> <para> Index.</para> <para>Represents the element tag in schema: c:idx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.Order"> <summary> <para> Order.</para> <para>Represents the element tag in schema: c:order </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.SeriesText"> <summary> <para> Series Text.</para> <para>Represents the element tag in schema: c:tx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.PictureOptions"> <summary> <para> PictureOptions.</para> <para>Represents the element tag in schema: c:pictureOptions </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChartSeries.Marker"> <summary> <para> Marker.</para> <para>Represents the element tag in schema: c:marker </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AreaChart"> <summary> <para>Area Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:areaChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Grouping <c:grouping></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>AreaChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>DropLines <c:dropLines></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.#ctor"> <summary> Initializes a new instance of the AreaChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AreaChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AreaChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.#ctor(System.String)"> <summary> Initializes a new instance of the AreaChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.Grouping"> <summary> <para> Grouping.</para> <para>Represents the element tag in schema: c:grouping </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.AreaChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart"> <summary> <para>3D Area Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:area3DChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Grouping <c:grouping></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>AreaChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>DropLines <c:dropLines></description></item> <item><description>GapDepth <c:gapDepth></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.#ctor"> <summary> Initializes a new instance of the Area3DChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Area3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Area3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.#ctor(System.String)"> <summary> Initializes a new instance of the Area3DChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.Grouping"> <summary> <para> Grouping.</para> <para>Represents the element tag in schema: c:grouping </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Area3DChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LineChart"> <summary> <para>Line Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:lineChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Grouping <c:grouping></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>LineChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>DropLines <c:dropLines></description></item> <item><description>HighLowLines <c:hiLowLines></description></item> <item><description>UpDownBars <c:upDownBars></description></item> <item><description>ShowMarker <c:marker></description></item> <item><description>Smooth <c:smooth></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChart.#ctor"> <summary> Initializes a new instance of the LineChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LineChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LineChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChart.#ctor(System.String)"> <summary> Initializes a new instance of the LineChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.LineChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChart.Grouping"> <summary> <para> Grouping.</para> <para>Represents the element tag in schema: c:grouping </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.LineChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart"> <summary> <para>3D Line Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:line3DChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Grouping <c:grouping></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>LineChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>DropLines <c:dropLines></description></item> <item><description>GapDepth <c:gapDepth></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.#ctor"> <summary> Initializes a new instance of the Line3DChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Line3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Line3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.#ctor(System.String)"> <summary> Initializes a new instance of the Line3DChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.Grouping"> <summary> <para> Grouping.</para> <para>Represents the element tag in schema: c:grouping </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Line3DChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.StockChart"> <summary> <para>Stock Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:stockChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>DropLines <c:dropLines></description></item> <item><description>HighLowLines <c:hiLowLines></description></item> <item><description>UpDownBars <c:upDownBars></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> <item><description>VaryColors <c:varyColors></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StockChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StockChart.#ctor"> <summary> Initializes a new instance of the StockChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StockChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StockChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StockChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StockChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StockChart.#ctor(System.String)"> <summary> Initializes a new instance of the StockChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.StockChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StockChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.StockChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RadarChart"> <summary> <para>Radar Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:radarChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RadarStyle <c:radarStyle></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>RadarChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.#ctor"> <summary> Initializes a new instance of the RadarChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RadarChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RadarChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.#ctor(System.String)"> <summary> Initializes a new instance of the RadarChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.RadarStyle"> <summary> <para> Radar Style.</para> <para>Represents the element tag in schema: c:radarStyle </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.RadarChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart"> <summary> <para>Scatter Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:scatterChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ScatterStyle <c:scatterStyle></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>ScatterChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.#ctor"> <summary> Initializes a new instance of the ScatterChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ScatterChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ScatterChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.#ctor(System.String)"> <summary> Initializes a new instance of the ScatterChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.ScatterStyle"> <summary> <para> Scatter Style.</para> <para>Represents the element tag in schema: c:scatterStyle </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ScatterChart.VaryColors"> <summary> <para> Vary Colors by Point.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PieChart"> <summary> <para>Pie Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:pieChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VaryColors <c:varyColors></description></item> <item><description>PieChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>FirstSliceAngle <c:firstSliceAng></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChart.#ctor"> <summary> Initializes a new instance of the PieChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PieChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PieChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChart.#ctor(System.String)"> <summary> Initializes a new instance of the PieChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PieChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PieChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart"> <summary> <para>3D Pie Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:pie3DChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VaryColors <c:varyColors></description></item> <item><description>PieChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.#ctor"> <summary> Initializes a new instance of the Pie3DChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Pie3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Pie3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.#ctor(System.String)"> <summary> Initializes a new instance of the Pie3DChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Pie3DChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart"> <summary> <para>Doughnut Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:doughnutChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VaryColors <c:varyColors></description></item> <item><description>PieChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>FirstSliceAngle <c:firstSliceAng></description></item> <item><description>HoleSize <c:holeSize></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.#ctor"> <summary> Initializes a new instance of the DoughnutChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DoughnutChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DoughnutChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.#ctor(System.String)"> <summary> Initializes a new instance of the DoughnutChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DoughnutChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BarChart"> <summary> <para>Bar Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:barChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BarDirection <c:barDir></description></item> <item><description>BarGrouping <c:grouping></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>BarChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>GapWidth <c:gapWidth></description></item> <item><description>Overlap <c:overlap></description></item> <item><description>SeriesLines <c:serLines></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChart.#ctor"> <summary> Initializes a new instance of the BarChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BarChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BarChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChart.#ctor(System.String)"> <summary> Initializes a new instance of the BarChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChart.BarDirection"> <summary> <para> Bar Direction.</para> <para>Represents the element tag in schema: c:barDir </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChart.BarGrouping"> <summary> <para> Bar Grouping.</para> <para>Represents the element tag in schema: c:grouping </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart"> <summary> <para>3D Bar Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:bar3DChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BarDirection <c:barDir></description></item> <item><description>BarGrouping <c:grouping></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>BarChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>GapWidth <c:gapWidth></description></item> <item><description>GapDepth <c:gapDepth></description></item> <item><description>Shape <c:shape></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.#ctor"> <summary> Initializes a new instance of the Bar3DChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Bar3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Bar3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.#ctor(System.String)"> <summary> Initializes a new instance of the Bar3DChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.BarDirection"> <summary> <para> Bar Direction.</para> <para>Represents the element tag in schema: c:barDir </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.BarGrouping"> <summary> <para> Bar Grouping.</para> <para>Represents the element tag in schema: c:grouping </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Bar3DChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart"> <summary> <para>Pie of Pie or Bar of Pie Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:ofPieChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OfPieType <c:ofPieType></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>PieChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>GapWidth <c:gapWidth></description></item> <item><description>SplitType <c:splitType></description></item> <item><description>SplitPosition <c:splitPos></description></item> <item><description>CustomSplit <c:custSplit></description></item> <item><description>SecondPieSize <c:secondPieSize></description></item> <item><description>SeriesLines <c:serLines></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.#ctor"> <summary> Initializes a new instance of the OfPieChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfPieChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfPieChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.#ctor(System.String)"> <summary> Initializes a new instance of the OfPieChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.OfPieType"> <summary> <para> Pie of Pie or Bar of Pie Type.</para> <para>Represents the element tag in schema: c:ofPieType </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.OfPieChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart"> <summary> <para>Surface Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:surfaceChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Wireframe <c:wireframe></description></item> <item><description>SurfaceChartSeries <c:ser></description></item> <item><description>BandFormats <c:bandFmts></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.#ctor"> <summary> Initializes a new instance of the SurfaceChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SurfaceChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SurfaceChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.#ctor(System.String)"> <summary> Initializes a new instance of the SurfaceChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SurfaceChart.Wireframe"> <summary> <para> Wireframe.</para> <para>Represents the element tag in schema: c:wireframe </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart"> <summary> <para>3D Surface Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:surface3DChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Wireframe <c:wireframe></description></item> <item><description>VaryColors <c:varyColors></description></item> <item><description>SurfaceChartSeries <c:ser></description></item> <item><description>BandFormats <c:bandFmts></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.#ctor"> <summary> Initializes a new instance of the Surface3DChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Surface3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Surface3DChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.#ctor(System.String)"> <summary> Initializes a new instance of the Surface3DChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.Wireframe"> <summary> <para> Wireframe.</para> <para>Represents the element tag in schema: c:wireframe </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Surface3DChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart"> <summary> <para>Bubble Charts.</para> <para>When the object is serialized out as xml, its qualified name is c:bubbleChart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VaryColors <c:varyColors></description></item> <item><description>BubbleChartSeries <c:ser></description></item> <item><description>DataLabels <c:dLbls></description></item> <item><description>BubbleScale <c:bubbleScale></description></item> <item><description>ShowNegativeBubbles <c:showNegBubbles></description></item> <item><description>SizeRepresents <c:sizeRepresents></description></item> <item><description>AxisId <c:axId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.#ctor"> <summary> Initializes a new instance of the BubbleChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BubbleChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BubbleChart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.#ctor(System.String)"> <summary> Initializes a new instance of the BubbleChart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleChart.VaryColors"> <summary> <para> VaryColors.</para> <para>Represents the element tag in schema: c:varyColors </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis"> <summary> <para>Value Axis.</para> <para>When the object is serialized out as xml, its qualified name is c:valAx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AxisId <c:axId></description></item> <item><description>Scaling <c:scaling></description></item> <item><description>Delete <c:delete></description></item> <item><description>AxisPosition <c:axPos></description></item> <item><description>MajorGridlines <c:majorGridlines></description></item> <item><description>MinorGridlines <c:minorGridlines></description></item> <item><description>Title <c:title></description></item> <item><description>NumberingFormat <c:numFmt></description></item> <item><description>MajorTickMark <c:majorTickMark></description></item> <item><description>MinorTickMark <c:minorTickMark></description></item> <item><description>TickLabelPosition <c:tickLblPos></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>CrossingAxis <c:crossAx></description></item> <item><description>Crosses <c:crosses></description></item> <item><description>CrossesAt <c:crossesAt></description></item> <item><description>CrossBetween <c:crossBetween></description></item> <item><description>MajorUnit <c:majorUnit></description></item> <item><description>MinorUnit <c:minorUnit></description></item> <item><description>DisplayUnits <c:dispUnits></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.#ctor"> <summary> Initializes a new instance of the ValueAxis class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ValueAxis class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ValueAxis class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.#ctor(System.String)"> <summary> Initializes a new instance of the ValueAxis class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.AxisId"> <summary> <para> Axis ID.</para> <para>Represents the element tag in schema: c:axId </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.Scaling"> <summary> <para> Scaling.</para> <para>Represents the element tag in schema: c:scaling </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.Delete"> <summary> <para> Delete.</para> <para>Represents the element tag in schema: c:delete </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.AxisPosition"> <summary> <para> Axis Position.</para> <para>Represents the element tag in schema: c:axPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.MajorGridlines"> <summary> <para> Major Gridlines.</para> <para>Represents the element tag in schema: c:majorGridlines </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.MinorGridlines"> <summary> <para> Minor Gridlines.</para> <para>Represents the element tag in schema: c:minorGridlines </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.Title"> <summary> <para> Title.</para> <para>Represents the element tag in schema: c:title </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.NumberingFormat"> <summary> <para> Number Format.</para> <para>Represents the element tag in schema: c:numFmt </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.MajorTickMark"> <summary> <para> Major Tick Mark.</para> <para>Represents the element tag in schema: c:majorTickMark </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.MinorTickMark"> <summary> <para> Minor Tick Mark.</para> <para>Represents the element tag in schema: c:minorTickMark </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.TickLabelPosition"> <summary> <para> Tick Label Position.</para> <para>Represents the element tag in schema: c:tickLblPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.TextProperties"> <summary> <para> TextProperties.</para> <para>Represents the element tag in schema: c:txPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ValueAxis.CrossingAxis"> <summary> <para> Crossing Axis ID.</para> <para>Represents the element tag in schema: c:crossAx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis"> <summary> <para>Category Axis Data.</para> <para>When the object is serialized out as xml, its qualified name is c:catAx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AxisId <c:axId></description></item> <item><description>Scaling <c:scaling></description></item> <item><description>Delete <c:delete></description></item> <item><description>AxisPosition <c:axPos></description></item> <item><description>MajorGridlines <c:majorGridlines></description></item> <item><description>MinorGridlines <c:minorGridlines></description></item> <item><description>Title <c:title></description></item> <item><description>NumberingFormat <c:numFmt></description></item> <item><description>MajorTickMark <c:majorTickMark></description></item> <item><description>MinorTickMark <c:minorTickMark></description></item> <item><description>TickLabelPosition <c:tickLblPos></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>CrossingAxis <c:crossAx></description></item> <item><description>Crosses <c:crosses></description></item> <item><description>CrossesAt <c:crossesAt></description></item> <item><description>AutoLabeled <c:auto></description></item> <item><description>LabelAlignment <c:lblAlgn></description></item> <item><description>LabelOffset <c:lblOffset></description></item> <item><description>TickLabelSkip <c:tickLblSkip></description></item> <item><description>TickMarkSkip <c:tickMarkSkip></description></item> <item><description>NoMultiLevelLabels <c:noMultiLvlLbl></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.#ctor"> <summary> Initializes a new instance of the CategoryAxis class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CategoryAxis class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CategoryAxis class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.#ctor(System.String)"> <summary> Initializes a new instance of the CategoryAxis class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.AxisId"> <summary> <para> Axis ID.</para> <para>Represents the element tag in schema: c:axId </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.Scaling"> <summary> <para> Scaling.</para> <para>Represents the element tag in schema: c:scaling </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.Delete"> <summary> <para> Delete.</para> <para>Represents the element tag in schema: c:delete </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.AxisPosition"> <summary> <para> Axis Position.</para> <para>Represents the element tag in schema: c:axPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.MajorGridlines"> <summary> <para> Major Gridlines.</para> <para>Represents the element tag in schema: c:majorGridlines </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.MinorGridlines"> <summary> <para> Minor Gridlines.</para> <para>Represents the element tag in schema: c:minorGridlines </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.Title"> <summary> <para> Title.</para> <para>Represents the element tag in schema: c:title </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.NumberingFormat"> <summary> <para> Number Format.</para> <para>Represents the element tag in schema: c:numFmt </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.MajorTickMark"> <summary> <para> Major Tick Mark.</para> <para>Represents the element tag in schema: c:majorTickMark </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.MinorTickMark"> <summary> <para> Minor Tick Mark.</para> <para>Represents the element tag in schema: c:minorTickMark </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.TickLabelPosition"> <summary> <para> Tick Label Position.</para> <para>Represents the element tag in schema: c:tickLblPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.TextProperties"> <summary> <para> TextProperties.</para> <para>Represents the element tag in schema: c:txPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.CategoryAxis.CrossingAxis"> <summary> <para> Crossing Axis ID.</para> <para>Represents the element tag in schema: c:crossAx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DateAxis"> <summary> <para>Date Axis.</para> <para>When the object is serialized out as xml, its qualified name is c:dateAx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AxisId <c:axId></description></item> <item><description>Scaling <c:scaling></description></item> <item><description>Delete <c:delete></description></item> <item><description>AxisPosition <c:axPos></description></item> <item><description>MajorGridlines <c:majorGridlines></description></item> <item><description>MinorGridlines <c:minorGridlines></description></item> <item><description>Title <c:title></description></item> <item><description>NumberingFormat <c:numFmt></description></item> <item><description>MajorTickMark <c:majorTickMark></description></item> <item><description>MinorTickMark <c:minorTickMark></description></item> <item><description>TickLabelPosition <c:tickLblPos></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>CrossingAxis <c:crossAx></description></item> <item><description>Crosses <c:crosses></description></item> <item><description>CrossesAt <c:crossesAt></description></item> <item><description>AutoLabeled <c:auto></description></item> <item><description>LabelOffset <c:lblOffset></description></item> <item><description>BaseTimeUnit <c:baseTimeUnit></description></item> <item><description>MajorUnit <c:majorUnit></description></item> <item><description>MajorTimeUnit <c:majorTimeUnit></description></item> <item><description>MinorUnit <c:minorUnit></description></item> <item><description>MinorTimeUnit <c:minorTimeUnit></description></item> <item><description>NoMultiLevelLabels <c:noMultiLvlLbl></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.#ctor"> <summary> Initializes a new instance of the DateAxis class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DateAxis class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DateAxis class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.#ctor(System.String)"> <summary> Initializes a new instance of the DateAxis class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.AxisId"> <summary> <para> Axis ID.</para> <para>Represents the element tag in schema: c:axId </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.Scaling"> <summary> <para> Scaling.</para> <para>Represents the element tag in schema: c:scaling </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.Delete"> <summary> <para> Delete.</para> <para>Represents the element tag in schema: c:delete </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.AxisPosition"> <summary> <para> Axis Position.</para> <para>Represents the element tag in schema: c:axPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.MajorGridlines"> <summary> <para> Major Gridlines.</para> <para>Represents the element tag in schema: c:majorGridlines </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.MinorGridlines"> <summary> <para> Minor Gridlines.</para> <para>Represents the element tag in schema: c:minorGridlines </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.Title"> <summary> <para> Title.</para> <para>Represents the element tag in schema: c:title </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.NumberingFormat"> <summary> <para> Number Format.</para> <para>Represents the element tag in schema: c:numFmt </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.MajorTickMark"> <summary> <para> Major Tick Mark.</para> <para>Represents the element tag in schema: c:majorTickMark </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.MinorTickMark"> <summary> <para> Minor Tick Mark.</para> <para>Represents the element tag in schema: c:minorTickMark </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.TickLabelPosition"> <summary> <para> Tick Label Position.</para> <para>Represents the element tag in schema: c:tickLblPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.TextProperties"> <summary> <para> TextProperties.</para> <para>Represents the element tag in schema: c:txPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DateAxis.CrossingAxis"> <summary> <para> Crossing Axis ID.</para> <para>Represents the element tag in schema: c:crossAx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis"> <summary> <para>Series Axis.</para> <para>When the object is serialized out as xml, its qualified name is c:serAx.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AxisId <c:axId></description></item> <item><description>Scaling <c:scaling></description></item> <item><description>Delete <c:delete></description></item> <item><description>AxisPosition <c:axPos></description></item> <item><description>MajorGridlines <c:majorGridlines></description></item> <item><description>MinorGridlines <c:minorGridlines></description></item> <item><description>Title <c:title></description></item> <item><description>NumberingFormat <c:numFmt></description></item> <item><description>MajorTickMark <c:majorTickMark></description></item> <item><description>MinorTickMark <c:minorTickMark></description></item> <item><description>TickLabelPosition <c:tickLblPos></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>CrossingAxis <c:crossAx></description></item> <item><description>Crosses <c:crosses></description></item> <item><description>CrossesAt <c:crossesAt></description></item> <item><description>TickLabelSkip <c:tickLblSkip></description></item> <item><description>TickMarkSkip <c:tickMarkSkip></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.#ctor"> <summary> Initializes a new instance of the SeriesAxis class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SeriesAxis class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SeriesAxis class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.#ctor(System.String)"> <summary> Initializes a new instance of the SeriesAxis class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.AxisId"> <summary> <para> Axis ID.</para> <para>Represents the element tag in schema: c:axId </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.Scaling"> <summary> <para> Scaling.</para> <para>Represents the element tag in schema: c:scaling </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.Delete"> <summary> <para> Delete.</para> <para>Represents the element tag in schema: c:delete </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.AxisPosition"> <summary> <para> Axis Position.</para> <para>Represents the element tag in schema: c:axPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.MajorGridlines"> <summary> <para> Major Gridlines.</para> <para>Represents the element tag in schema: c:majorGridlines </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.MinorGridlines"> <summary> <para> Minor Gridlines.</para> <para>Represents the element tag in schema: c:minorGridlines </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.Title"> <summary> <para> Title.</para> <para>Represents the element tag in schema: c:title </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.NumberingFormat"> <summary> <para> Number Format.</para> <para>Represents the element tag in schema: c:numFmt </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.MajorTickMark"> <summary> <para> Major Tick Mark.</para> <para>Represents the element tag in schema: c:majorTickMark </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.MinorTickMark"> <summary> <para> Minor Tick Mark.</para> <para>Represents the element tag in schema: c:minorTickMark </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.TickLabelPosition"> <summary> <para> Tick Label Position.</para> <para>Represents the element tag in schema: c:tickLblPos </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.TextProperties"> <summary> <para> TextProperties.</para> <para>Represents the element tag in schema: c:txPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.SeriesAxis.CrossingAxis"> <summary> <para> Crossing Axis ID.</para> <para>Represents the element tag in schema: c:crossAx </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DataTable"> <summary> <para>Data Table.</para> <para>When the object is serialized out as xml, its qualified name is c:dTable.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShowHorizontalBorder <c:showHorzBorder></description></item> <item><description>ShowVerticalBorder <c:showVertBorder></description></item> <item><description>ShowOutlineBorder <c:showOutline></description></item> <item><description>ShowKeys <c:showKeys></description></item> <item><description>ChartShapeProperties <c:spPr></description></item> <item><description>TextProperties <c:txPr></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataTable.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataTable.#ctor"> <summary> Initializes a new instance of the DataTable class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataTable.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataTable.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataTable.#ctor(System.String)"> <summary> Initializes a new instance of the DataTable class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.DataTable.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.ShowHorizontalBorder"> <summary> <para> Show Horizontal Border.</para> <para>Represents the element tag in schema: c:showHorzBorder </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.ShowVerticalBorder"> <summary> <para> Show Vertical Border.</para> <para>Represents the element tag in schema: c:showVertBorder </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.ShowOutlineBorder"> <summary> <para> Show Outline Border.</para> <para>Represents the element tag in schema: c:showOutline </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.ShowKeys"> <summary> <para> Show Legend Keys.</para> <para>Represents the element tag in schema: c:showKeys </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.ChartShapeProperties"> <summary> <para> ChartShapeProperties.</para> <para>Represents the element tag in schema: c:spPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.TextProperties"> <summary> <para> Text Properties.</para> <para>Represents the element tag in schema: c:txPr </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.DataTable.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.HoleSize"> <summary> <para>Hole Size.</para> <para>When the object is serialized out as xml, its qualified name is c:holeSize.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HoleSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HoleSize.#ctor"> <summary> Initializes a new instance of the HoleSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.HoleSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HoleSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HoleSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.HoleSize.Val"> <summary> <para> Hole Size Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Thickness"> <summary> <para>Thickness.</para> <para>When the object is serialized out as xml, its qualified name is c:thickness.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Thickness.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Thickness.#ctor"> <summary> Initializes a new instance of the Thickness class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Thickness.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Thickness.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Thickness.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Thickness.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BaseTimeUnit"> <summary> <para>Base Time Unit.</para> <para>When the object is serialized out as xml, its qualified name is c:baseTimeUnit.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TimeUnitType"> <summary> Defines the TimeUnitType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.TimeUnitType.#ctor"> <summary> Initializes a new instance of the TimeUnitType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.TimeUnitType.Val"> <summary> <para> Time Unit Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BaseTimeUnit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BaseTimeUnit.#ctor"> <summary> Initializes a new instance of the BaseTimeUnit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BaseTimeUnit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BaseTimeUnit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BaseTimeUnit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MajorTimeUnit"> <summary> <para>Major Time Unit.</para> <para>When the object is serialized out as xml, its qualified name is c:majorTimeUnit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorTimeUnit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorTimeUnit.#ctor"> <summary> Initializes a new instance of the MajorTimeUnit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MajorTimeUnit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MajorTimeUnit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MajorTimeUnit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MinorTimeUnit"> <summary> <para>Minor Time Unit.</para> <para>When the object is serialized out as xml, its qualified name is c:minorTimeUnit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorTimeUnit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorTimeUnit.#ctor"> <summary> Initializes a new instance of the MinorTimeUnit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.MinorTimeUnit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinorTimeUnit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.MinorTimeUnit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension"> <summary> <para>Defines the ChartSpaceExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is c:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions <c14:pivotOptions></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions <c14:sketchOptions></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.#ctor"> <summary> Initializes a new instance of the ChartSpaceExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ChartSpaceExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ChartSpaceExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.#ctor(System.String)"> <summary> Initializes a new instance of the ChartSpaceExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension"> <summary> <para>Defines the BubbleSerExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is c:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat <c14:invertSolidFillFmt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.#ctor"> <summary> Initializes a new instance of the BubbleSerExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BubbleSerExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BubbleSerExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.#ctor(System.String)"> <summary> Initializes a new instance of the BubbleSerExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension"> <summary> <para>Defines the BarSerExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is c:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat <c14:invertSolidFillFmt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.#ctor"> <summary> Initializes a new instance of the BarSerExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BarSerExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BarSerExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.#ctor(System.String)"> <summary> Initializes a new instance of the BarSerExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.EditingLanguage"> <summary> <para>Editing Language.</para> <para>When the object is serialized out as xml, its qualified name is c:lang.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EditingLanguage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EditingLanguage.#ctor"> <summary> Initializes a new instance of the EditingLanguage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.EditingLanguage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.EditingLanguage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.EditingLanguage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.EditingLanguage.Val"> <summary> <para> Language Code.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Style"> <summary> <para>Defines the Style Class.</para> <para>When the object is serialized out as xml, its qualified name is c:style.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Style.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Style.#ctor"> <summary> Initializes a new instance of the Style class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Style.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Style.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Style.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Style.Val"> <summary> <para> Style Type.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride"> <summary> <para>Color Map Override.</para> <para>When the object is serialized out as xml, its qualified name is c:clrMapOvr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.#ctor"> <summary> Initializes a new instance of the ColorMapOverride class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorMapOverride class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorMapOverride class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.#ctor(System.String)"> <summary> Initializes a new instance of the ColorMapOverride class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Background1"> <summary> <para> Background 1.</para> <para>Represents the attribte in schema: bg1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Text1"> <summary> <para> Text 1.</para> <para>Represents the attribte in schema: tx1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Background2"> <summary> <para> Background 2.</para> <para>Represents the attribte in schema: bg2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Text2"> <summary> <para> Text 2.</para> <para>Represents the attribte in schema: tx2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Accent1"> <summary> <para> Accent 1.</para> <para>Represents the attribte in schema: accent1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Accent2"> <summary> <para> Accent 2.</para> <para>Represents the attribte in schema: accent2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Accent3"> <summary> <para> Accent 3.</para> <para>Represents the attribte in schema: accent3 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Accent4"> <summary> <para> Accent 4.</para> <para>Represents the attribte in schema: accent4 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Accent5"> <summary> <para> Accent 5.</para> <para>Represents the attribte in schema: accent5 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Accent6"> <summary> <para> Accent 6.</para> <para>Represents the attribte in schema: accent6 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.Hyperlink"> <summary> <para> Hyperlink.</para> <para>Represents the attribte in schema: hlink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.FollowedHyperlink"> <summary> <para> Followed Hyperlink.</para> <para>Represents the attribte in schema: folHlink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ColorMapOverride.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PivotSource"> <summary> <para>Pivot Source.</para> <para>When the object is serialized out as xml, its qualified name is c:pivotSource.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotTableName <c:name></description></item> <item><description>FormatId <c:fmtId></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.#ctor"> <summary> Initializes a new instance of the PivotSource class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotSource class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotSource class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.#ctor(System.String)"> <summary> Initializes a new instance of the PivotSource class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.PivotTableName"> <summary> <para> Pivot Name.</para> <para>Represents the element tag in schema: c:name </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.FormatId"> <summary> <para> Format ID.</para> <para>Represents the element tag in schema: c:fmtId </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PivotSource.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Protection"> <summary> <para>Protection.</para> <para>When the object is serialized out as xml, its qualified name is c:protection.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartObject <c:chartObject></description></item> <item><description>Data <c:data></description></item> <item><description>Formatting <c:formatting></description></item> <item><description>Selection <c:selection></description></item> <item><description>UserInterface <c:userInterface></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Protection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Protection.#ctor"> <summary> Initializes a new instance of the Protection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Protection.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Protection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Protection.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Protection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Protection.#ctor(System.String)"> <summary> Initializes a new instance of the Protection class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Protection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Protection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Protection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Protection.ChartObject"> <summary> <para> Chart Object.</para> <para>Represents the element tag in schema: c:chartObject </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Protection.Data"> <summary> <para> Data Cannot Be Changed.</para> <para>Represents the element tag in schema: c:data </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Protection.Formatting"> <summary> <para> Formatting.</para> <para>Represents the element tag in schema: c:formatting </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Protection.Selection"> <summary> <para> Selection.</para> <para>Represents the element tag in schema: c:selection </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Protection.UserInterface"> <summary> <para> User Interface.</para> <para>Represents the element tag in schema: c:userInterface </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.Chart"> <summary> <para>Chart.</para> <para>When the object is serialized out as xml, its qualified name is c:chart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Title <c:title></description></item> <item><description>AutoTitleDeleted <c:autoTitleDeleted></description></item> <item><description>PivotFormats <c:pivotFmts></description></item> <item><description>View3D <c:view3D></description></item> <item><description>Floor <c:floor></description></item> <item><description>SideWall <c:sideWall></description></item> <item><description>BackWall <c:backWall></description></item> <item><description>PlotArea <c:plotArea></description></item> <item><description>Legend <c:legend></description></item> <item><description>PlotVisibleOnly <c:plotVisOnly></description></item> <item><description>DisplayBlanksAs <c:dispBlanksAs></description></item> <item><description>ShowDataLabelsOverMaximum <c:showDLblsOverMax></description></item> <item><description>ExtensionList <c:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Chart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Chart.#ctor"> <summary> Initializes a new instance of the Chart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Chart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Chart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Chart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Chart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Chart.#ctor(System.String)"> <summary> Initializes a new instance of the Chart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.Chart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.Title"> <summary> <para> Title.</para> <para>Represents the element tag in schema: c:title </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.AutoTitleDeleted"> <summary> <para> Auto Title Is Deleted.</para> <para>Represents the element tag in schema: c:autoTitleDeleted </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.PivotFormats"> <summary> <para> Pivot Formats.</para> <para>Represents the element tag in schema: c:pivotFmts </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.View3D"> <summary> <para> View In 3D.</para> <para>Represents the element tag in schema: c:view3D </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.Floor"> <summary> <para> Floor.</para> <para>Represents the element tag in schema: c:floor </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.SideWall"> <summary> <para> Side Wall.</para> <para>Represents the element tag in schema: c:sideWall </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.BackWall"> <summary> <para> Back Wall.</para> <para>Represents the element tag in schema: c:backWall </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.PlotArea"> <summary> <para> Plot Area.</para> <para>Represents the element tag in schema: c:plotArea </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.Legend"> <summary> <para> Legend.</para> <para>Represents the element tag in schema: c:legend </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.PlotVisibleOnly"> <summary> <para> Plot Visible Only.</para> <para>Represents the element tag in schema: c:plotVisOnly </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.DisplayBlanksAs"> <summary> <para> Display Blanks As.</para> <para>Represents the element tag in schema: c:dispBlanksAs </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.ShowDataLabelsOverMaximum"> <summary> <para> Show Data Labels over Maximum.</para> <para>Represents the element tag in schema: c:showDLblsOverMax </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.Chart.ExtensionList"> <summary> <para> Chart Extensibility.</para> <para>Represents the element tag in schema: c:extLst </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ExternalData"> <summary> <para>External Data Relationship.</para> <para>When the object is serialized out as xml, its qualified name is c:externalData.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AutoUpdate <c:autoUpdate></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.#ctor"> <summary> Initializes a new instance of the ExternalData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExternalData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExternalData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.#ctor(System.String)"> <summary> Initializes a new instance of the ExternalData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.Id"> <summary> <para> Relationship Reference.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ExternalData.AutoUpdate"> <summary> <para> Update Automatically.</para> <para>Represents the element tag in schema: c:autoUpdate </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings"> <summary> <para>Print Settings.</para> <para>When the object is serialized out as xml, its qualified name is c:printSettings.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HeaderFooter <c:headerFooter></description></item> <item><description>PageMargins <c:pageMargins></description></item> <item><description>PageSetup <c:pageSetup></description></item> <item><description>LegacyDrawingHeaderFooter <c:legacyDrawingHF></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.#ctor"> <summary> Initializes a new instance of the PrintSettings class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PrintSettings class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PrintSettings class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.#ctor(System.String)"> <summary> Initializes a new instance of the PrintSettings class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.HeaderFooter"> <summary> <para> Header and Footer.</para> <para>Represents the element tag in schema: c:headerFooter </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.PageMargins"> <summary> <para> Page Margins.</para> <para>Represents the element tag in schema: c:pageMargins </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.PageSetup"> <summary> <para> Page Setup.</para> <para>Represents the element tag in schema: c:pageSetup </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.PrintSettings.LegacyDrawingHeaderFooter"> <summary> <para> Legacy Drawing for Headers and Footers.</para> <para>Represents the element tag in schema: c:legacyDrawingHF </para> </summary> <remark> xmlns:c = http://schemas.openxmlformats.org/drawingml/2006/chart </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList"> <summary> <para>Chart Extensibility.</para> <para>When the object is serialized out as xml, its qualified name is c:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartSpaceExtension <c:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList.#ctor"> <summary> Initializes a new instance of the ChartSpaceExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ChartSpaceExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ChartSpaceExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ChartSpaceExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.ChartSpaceExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList"> <summary> <para>Chart Extensibility.</para> <para>When the object is serialized out as xml, its qualified name is c:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BubbleSerExtension <c:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList.#ctor"> <summary> Initializes a new instance of the BubbleSerExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BubbleSerExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BubbleSerExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the BubbleSerExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BubbleSerExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList"> <summary> <para>Chart Extensibility.</para> <para>When the object is serialized out as xml, its qualified name is c:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BarSerExtension <c:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList.#ctor"> <summary> Initializes a new instance of the BarSerExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BarSerExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BarSerExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the BarSerExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Charts.BarSerExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LayoutTargetValues"> <summary> Layout Target </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LayoutTargetValues.Inner"> <summary> Inner. <para>When the item is serialized out as xml, its value is "inner".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LayoutTargetValues.Outer"> <summary> Outer. <para>When the item is serialized out as xml, its value is "outer".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LayoutModeValues"> <summary> Layout Mode </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LayoutModeValues.Edge"> <summary> Edge. <para>When the item is serialized out as xml, its value is "edge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LayoutModeValues.Factor"> <summary> Factor. <para>When the item is serialized out as xml, its value is "factor".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresentsValues"> <summary> Size Represents </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresentsValues.Area"> <summary> Bubble Size Represents Area. <para>When the item is serialized out as xml, its value is "area".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.SizeRepresentsValues.Width"> <summary> Bubble Size Represents Width. <para>When the item is serialized out as xml, its value is "w".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignmentValues"> <summary> Label Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignmentValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignmentValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LabelAlignmentValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues"> <summary> Data Label Position </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.BestFit"> <summary> Best Fit. <para>When the item is serialized out as xml, its value is "bestFit".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.InsideBase"> <summary> Inside Base. <para>When the item is serialized out as xml, its value is "inBase".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.InsideEnd"> <summary> Inside End. <para>When the item is serialized out as xml, its value is "inEnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.OutsideEnd"> <summary> Outside End. <para>When the item is serialized out as xml, its value is "outEnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DataLabelPositionValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TrendlineValues"> <summary> Trendline Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TrendlineValues.Exponential"> <summary> Exponential. <para>When the item is serialized out as xml, its value is "exp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TrendlineValues.Linear"> <summary> Linear. <para>When the item is serialized out as xml, its value is "linear".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TrendlineValues.Logarithmic"> <summary> Logarithmic. <para>When the item is serialized out as xml, its value is "log".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TrendlineValues.MovingAverage"> <summary> Moving Average. <para>When the item is serialized out as xml, its value is "movingAvg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TrendlineValues.Polynomial"> <summary> Polynomial. <para>When the item is serialized out as xml, its value is "poly".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TrendlineValues.Power"> <summary> Power. <para>When the item is serialized out as xml, its value is "power".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarDirectionValues"> <summary> Error Bar Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarDirectionValues.X"> <summary> X. <para>When the item is serialized out as xml, its value is "x".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarDirectionValues.Y"> <summary> Y. <para>When the item is serialized out as xml, its value is "y".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValues"> <summary> Error Bar Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValues.Both"> <summary> Both. <para>When the item is serialized out as xml, its value is "both".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValues.Minus"> <summary> Minus. <para>When the item is serialized out as xml, its value is "minus".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorBarValues.Plus"> <summary> Plus. <para>When the item is serialized out as xml, its value is "plus".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ErrorValues"> <summary> Error Value Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorValues.Custom"> <summary> Custom Error Bars. <para>When the item is serialized out as xml, its value is "cust".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorValues.FixedValue"> <summary> Fixed Value. <para>When the item is serialized out as xml, its value is "fixedVal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorValues.Percentage"> <summary> Percentage. <para>When the item is serialized out as xml, its value is "percentage".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorValues.StandardDeviation"> <summary> Standard Deviation. <para>When the item is serialized out as xml, its value is "stdDev".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ErrorValues.StandardError"> <summary> Standard Error. <para>When the item is serialized out as xml, its value is "stdErr".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.GroupingValues"> <summary> Grouping </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.GroupingValues.PercentStacked"> <summary> 100% Stacked. <para>When the item is serialized out as xml, its value is "percentStacked".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.GroupingValues.Standard"> <summary> Standard. <para>When the item is serialized out as xml, its value is "standard".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.GroupingValues.Stacked"> <summary> Stacked. <para>When the item is serialized out as xml, its value is "stacked".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.RadarStyleValues"> <summary> Radar Style </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.RadarStyleValues.Standard"> <summary> Standard. <para>When the item is serialized out as xml, its value is "standard".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.RadarStyleValues.Marker"> <summary> Marker. <para>When the item is serialized out as xml, its value is "marker".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.RadarStyleValues.Filled"> <summary> Filled. <para>When the item is serialized out as xml, its value is "filled".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BarGroupingValues"> <summary> Bar Grouping </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BarGroupingValues.PercentStacked"> <summary> 100% Stacked. <para>When the item is serialized out as xml, its value is "percentStacked".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BarGroupingValues.Clustered"> <summary> Clustered. <para>When the item is serialized out as xml, its value is "clustered".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BarGroupingValues.Standard"> <summary> Standard. <para>When the item is serialized out as xml, its value is "standard".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BarGroupingValues.Stacked"> <summary> Stacked. <para>When the item is serialized out as xml, its value is "stacked".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BarDirectionValues"> <summary> Bar Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BarDirectionValues.Bar"> <summary> Bar. <para>When the item is serialized out as xml, its value is "bar".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BarDirectionValues.Column"> <summary> Column. <para>When the item is serialized out as xml, its value is "col".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ShapeValues"> <summary> Shape </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ShapeValues.Cone"> <summary> Cone. <para>When the item is serialized out as xml, its value is "cone".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ShapeValues.ConeToMax"> <summary> Cone to Max. <para>When the item is serialized out as xml, its value is "coneToMax".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ShapeValues.Box"> <summary> Box. <para>When the item is serialized out as xml, its value is "box".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ShapeValues.Cylinder"> <summary> Cylinder. <para>When the item is serialized out as xml, its value is "cylinder".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ShapeValues.Pyramid"> <summary> Pyramid. <para>When the item is serialized out as xml, its value is "pyramid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ShapeValues.PyramidToMaximum"> <summary> Pyramid to Maximum. <para>When the item is serialized out as xml, its value is "pyramidToMax".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.OfPieValues"> <summary> Pie of Pie or Bar of Pie Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.OfPieValues.Pie"> <summary> Pie. <para>When the item is serialized out as xml, its value is "pie".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.OfPieValues.Bar"> <summary> Bar. <para>When the item is serialized out as xml, its value is "bar".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.AxisPositionValues"> <summary> Axis Position </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.AxisPositionValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.AxisPositionValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.AxisPositionValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.AxisPositionValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CrossesValues"> <summary> Crosses </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.CrossesValues.AutoZero"> <summary> Axis Crosses at Zero. <para>When the item is serialized out as xml, its value is "autoZero".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.CrossesValues.Maximum"> <summary> Maximum. <para>When the item is serialized out as xml, its value is "max".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.CrossesValues.Minimum"> <summary> Minimum. <para>When the item is serialized out as xml, its value is "min".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.CrossBetweenValues"> <summary> Cross Between </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.CrossBetweenValues.Between"> <summary> Between. <para>When the item is serialized out as xml, its value is "between".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.CrossBetweenValues.MidpointCategory"> <summary> Midpoint of Category. <para>When the item is serialized out as xml, its value is "midCat".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TickMarkValues"> <summary> Tick Mark </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TickMarkValues.Cross"> <summary> Cross. <para>When the item is serialized out as xml, its value is "cross".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TickMarkValues.Inside"> <summary> Inside. <para>When the item is serialized out as xml, its value is "in".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TickMarkValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TickMarkValues.Outside"> <summary> Outside. <para>When the item is serialized out as xml, its value is "out".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPositionValues"> <summary> Tick Label Position </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPositionValues.High"> <summary> High. <para>When the item is serialized out as xml, its value is "high".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPositionValues.Low"> <summary> Low. <para>When the item is serialized out as xml, its value is "low".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPositionValues.NextTo"> <summary> Next To. <para>When the item is serialized out as xml, its value is "nextTo".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TickLabelPositionValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.TimeUnitValues"> <summary> Time Unit </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TimeUnitValues.Days"> <summary> Days. <para>When the item is serialized out as xml, its value is "days".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TimeUnitValues.Months"> <summary> Months. <para>When the item is serialized out as xml, its value is "months".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.TimeUnitValues.Years"> <summary> Years. <para>When the item is serialized out as xml, its value is "years".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues"> <summary> Built-In Unit </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.Hundreds"> <summary> Hundreds. <para>When the item is serialized out as xml, its value is "hundreds".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.Thousands"> <summary> Thousands. <para>When the item is serialized out as xml, its value is "thousands".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.TenThousands"> <summary> Ten Thousands. <para>When the item is serialized out as xml, its value is "tenThousands".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.HundredThousands"> <summary> Hundred Thousands. <para>When the item is serialized out as xml, its value is "hundredThousands".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.Millions"> <summary> Millions. <para>When the item is serialized out as xml, its value is "millions".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.TenMillions"> <summary> Ten Millions. <para>When the item is serialized out as xml, its value is "tenMillions".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.HundredMillions"> <summary> Hundred Millions. <para>When the item is serialized out as xml, its value is "hundredMillions".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.Billions"> <summary> Billions. <para>When the item is serialized out as xml, its value is "billions".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.BuiltInUnitValues.Trillions"> <summary> Trillions. <para>When the item is serialized out as xml, its value is "trillions".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PictureFormatValues"> <summary> Picture Format </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.PictureFormatValues.Stretch"> <summary> Stretch. <para>When the item is serialized out as xml, its value is "stretch".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.PictureFormatValues.Stack"> <summary> Stack. <para>When the item is serialized out as xml, its value is "stack".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.PictureFormatValues.StackScale"> <summary> Stack and Scale. <para>When the item is serialized out as xml, its value is "stackScale".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.OrientationValues"> <summary> Orientation </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.OrientationValues.MaxMin"> <summary> Maximum to Minimum. <para>When the item is serialized out as xml, its value is "maxMin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.OrientationValues.MinMax"> <summary> Minimum to Maximum. <para>When the item is serialized out as xml, its value is "minMax".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.LegendPositionValues"> <summary> Legend Position </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LegendPositionValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LegendPositionValues.TopRight"> <summary> Top Right. <para>When the item is serialized out as xml, its value is "tr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LegendPositionValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LegendPositionValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.LegendPositionValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAsValues"> <summary> Display Blanks As </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAsValues.Span"> <summary> Span. <para>When the item is serialized out as xml, its value is "span".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAsValues.Gap"> <summary> Gap. <para>When the item is serialized out as xml, its value is "gap".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.DisplayBlanksAsValues.Zero"> <summary> Zero. <para>When the item is serialized out as xml, its value is "zero".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.PageSetupOrientationValues"> <summary> Printed Page Orientation </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.PageSetupOrientationValues.Default"> <summary> Default Page Orientation. <para>When the item is serialized out as xml, its value is "default".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.PageSetupOrientationValues.Portrait"> <summary> Portrait Page. <para>When the item is serialized out as xml, its value is "portrait".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.PageSetupOrientationValues.Landscape"> <summary> Landscape Page. <para>When the item is serialized out as xml, its value is "landscape".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyleValues"> <summary> Scatter Style </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyleValues.Line"> <summary> Line. <para>When the item is serialized out as xml, its value is "line".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyleValues.LineMarker"> <summary> Line with Markers. <para>When the item is serialized out as xml, its value is "lineMarker".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyleValues.Marker"> <summary> Marker. <para>When the item is serialized out as xml, its value is "marker".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyleValues.Smooth"> <summary> Smooth. <para>When the item is serialized out as xml, its value is "smooth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.ScatterStyleValues.SmoothMarker"> <summary> Smooth with Markers. <para>When the item is serialized out as xml, its value is "smoothMarker".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues"> <summary> Marker Style </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Auto"> <summary> auto. <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Circle"> <summary> Circle. <para>When the item is serialized out as xml, its value is "circle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Dash"> <summary> Dash. <para>When the item is serialized out as xml, its value is "dash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Diamond"> <summary> Diamond. <para>When the item is serialized out as xml, its value is "diamond".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Dot"> <summary> Dot. <para>When the item is serialized out as xml, its value is "dot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Picture"> <summary> Picture. <para>When the item is serialized out as xml, its value is "picture".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Plus"> <summary> Plus. <para>When the item is serialized out as xml, its value is "plus".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Square"> <summary> Square. <para>When the item is serialized out as xml, its value is "square".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Star"> <summary> Star. <para>When the item is serialized out as xml, its value is "star".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.Triangle"> <summary> Triangle. <para>When the item is serialized out as xml, its value is "triangle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.MarkerStyleValues.X"> <summary> X. <para>When the item is serialized out as xml, its value is "x".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Charts.SplitValues"> <summary> Split Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.SplitValues.Custom"> <summary> Custom Split. <para>When the item is serialized out as xml, its value is "cust".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.SplitValues.Percent"> <summary> Split by Percentage. <para>When the item is serialized out as xml, its value is "percent".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.SplitValues.Position"> <summary> Split by Position. <para>When the item is serialized out as xml, its value is "pos".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Charts.SplitValues.Value"> <summary> Split by Value. <para>When the item is serialized out as xml, its value is "val".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize"> <summary> <para>Relative Anchor Shape Size.</para> <para>When the object is serialized out as xml, its qualified name is cdr:relSizeAnchor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FromAnchor <cdr:from></description></item> <item><description>ToAnchor <cdr:to></description></item> <item><description>Shape <cdr:sp></description></item> <item><description>GroupShape <cdr:grpSp></description></item> <item><description>GraphicFrame <cdr:graphicFrame></description></item> <item><description>ConnectionShape <cdr:cxnSp></description></item> <item><description>Picture <cdr:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart <cdr14:contentPart></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.#ctor"> <summary> Initializes a new instance of the RelativeAnchorSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RelativeAnchorSize class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RelativeAnchorSize class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.#ctor(System.String)"> <summary> Initializes a new instance of the RelativeAnchorSize class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.FromAnchor"> <summary> <para> Starting Anchor Point.</para> <para>Represents the element tag in schema: cdr:from </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.RelativeAnchorSize.ToAnchor"> <summary> <para> Ending Anchor Point.</para> <para>Represents the element tag in schema: cdr:to </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize"> <summary> <para>Absolute Anchor Shape Size.</para> <para>When the object is serialized out as xml, its qualified name is cdr:absSizeAnchor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FromAnchor <cdr:from></description></item> <item><description>Extent <cdr:ext></description></item> <item><description>Shape <cdr:sp></description></item> <item><description>GroupShape <cdr:grpSp></description></item> <item><description>GraphicFrame <cdr:graphicFrame></description></item> <item><description>ConnectionShape <cdr:cxnSp></description></item> <item><description>Picture <cdr:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart <cdr14:contentPart></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.#ctor"> <summary> Initializes a new instance of the AbsoluteAnchorSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AbsoluteAnchorSize class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AbsoluteAnchorSize class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.#ctor(System.String)"> <summary> Initializes a new instance of the AbsoluteAnchorSize class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.FromAnchor"> <summary> <para> FromAnchor.</para> <para>Represents the element tag in schema: cdr:from </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.AbsoluteAnchorSize.Extent"> <summary> <para> Shape Extent.</para> <para>Represents the element tag in schema: cdr:ext </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape"> <summary> <para>Shape Definition.</para> <para>When the object is serialized out as xml, its qualified name is cdr:sp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualShapeProperties <cdr:nvSpPr></description></item> <item><description>ShapeProperties <cdr:spPr></description></item> <item><description>Style <cdr:style></description></item> <item><description>TextBody <cdr:txBody></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.#ctor(System.String)"> <summary> Initializes a new instance of the Shape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.Macro"> <summary> <para> Reference to Custom Function.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.TextLink"> <summary> <para> Text Link.</para> <para>Represents the attribte in schema: textlink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.LockText"> <summary> <para> Lock Text.</para> <para>Represents the attribte in schema: fLocksText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.Published"> <summary> <para> Publish to Server.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.NonVisualShapeProperties"> <summary> <para> Non-Visual Shape Properties.</para> <para>Represents the element tag in schema: cdr:nvSpPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.ShapeProperties"> <summary> <para> Shape Properties.</para> <para>Represents the element tag in schema: cdr:spPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.Style"> <summary> <para> Shape Style.</para> <para>Represents the element tag in schema: cdr:style </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Shape.TextBody"> <summary> <para> Shape Text Body.</para> <para>Represents the element tag in schema: cdr:txBody </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape"> <summary> <para>Group Shape.</para> <para>When the object is serialized out as xml, its qualified name is cdr:grpSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGroupShapeProperties <cdr:nvGrpSpPr></description></item> <item><description>GroupShapeProperties <cdr:grpSpPr></description></item> <item><description>Shape <cdr:sp></description></item> <item><description>GroupShape <cdr:grpSp></description></item> <item><description>GraphicFrame <cdr:graphicFrame></description></item> <item><description>ConnectionShape <cdr:cxnSp></description></item> <item><description>Picture <cdr:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart <cdr14:contentPart></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.#ctor"> <summary> Initializes a new instance of the GroupShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.NonVisualGroupShapeProperties"> <summary> <para> Non-Visual Group Shape Properties.</para> <para>Represents the element tag in schema: cdr:nvGrpSpPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShape.GroupShapeProperties"> <summary> <para> Group Shape Properties.</para> <para>Represents the element tag in schema: cdr:grpSpPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame"> <summary> <para>Graphic Frame.</para> <para>When the object is serialized out as xml, its qualified name is cdr:graphicFrame.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGraphicFrameProperties <cdr:nvGraphicFramePr></description></item> <item><description>Transform <cdr:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Graphic <a:graphic></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.#ctor"> <summary> Initializes a new instance of the GraphicFrame class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.#ctor(System.String)"> <summary> Initializes a new instance of the GraphicFrame class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.Macro"> <summary> <para> Reference to Custom Function.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.Published"> <summary> <para> Publish To Server.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.NonVisualGraphicFrameProperties"> <summary> <para> Non-Visual Graphic Frame Properties.</para> <para>Represents the element tag in schema: cdr:nvGraphicFramePr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.Transform"> <summary> <para> Graphic Frame Transform.</para> <para>Represents the element tag in schema: cdr:xfrm </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GraphicFrame.Graphic"> <summary> <para> Graphical Object.</para> <para>Represents the element tag in schema: a:graphic </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape"> <summary> <para>Connection Shape.</para> <para>When the object is serialized out as xml, its qualified name is cdr:cxnSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualConnectorShapeDrawingProperties <cdr:nvCxnSpPr></description></item> <item><description>ShapeProperties <cdr:spPr></description></item> <item><description>Style <cdr:style></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.#ctor"> <summary> Initializes a new instance of the ConnectionShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConnectionShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConnectionShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.#ctor(System.String)"> <summary> Initializes a new instance of the ConnectionShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.Macro"> <summary> <para> Reference to Custom Function.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.Published"> <summary> <para> Publish to Server.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.NonVisualConnectorShapeDrawingProperties"> <summary> <para> Connector Non Visual Properties.</para> <para>Represents the element tag in schema: cdr:nvCxnSpPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.ShapeProperties"> <summary> <para> Shape Properties.</para> <para>Represents the element tag in schema: cdr:spPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ConnectionShape.Style"> <summary> <para> Connection Shape Style.</para> <para>Represents the element tag in schema: cdr:style </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture"> <summary> <para>Defines the Picture Class.</para> <para>When the object is serialized out as xml, its qualified name is cdr:pic.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualPictureProperties <cdr:nvPicPr></description></item> <item><description>BlipFill <cdr:blipFill></description></item> <item><description>ShapeProperties <cdr:spPr></description></item> <item><description>Style <cdr:style></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.#ctor"> <summary> Initializes a new instance of the Picture class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.#ctor(System.String)"> <summary> Initializes a new instance of the Picture class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.Macro"> <summary> <para> Reference to Custom Function.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.Published"> <summary> <para> Publish to Server.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.NonVisualPictureProperties"> <summary> <para> Non-Visual Picture Properties.</para> <para>Represents the element tag in schema: cdr:nvPicPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.BlipFill"> <summary> <para> Picture Fill.</para> <para>Represents the element tag in schema: cdr:blipFill </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.ShapeProperties"> <summary> <para> ShapeProperties.</para> <para>Represents the element tag in schema: cdr:spPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Picture.Style"> <summary> <para> Style.</para> <para>Represents the element tag in schema: cdr:style </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties"> <summary> <para>Chart Non Visual Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.Title"> <summary> <para> title, this property is only available in Office2010.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties"> <summary> <para>Non-Visual Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:cNvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ShapeLocks <a:spLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.TextBox"> <summary> <para> Text Box.</para> <para>Represents the attribte in schema: txBox </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.ShapeLocks"> <summary> <para> Shape Locks.</para> <para>Represents the element tag in schema: a:spLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties"> <summary> <para>Non-Visual Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:nvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <cdr:cNvPr></description></item> <item><description>NonVisualShapeDrawingProperties <cdr:cNvSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.NonVisualDrawingProperties"> <summary> <para> Chart Non Visual Properties.</para> <para>Represents the element tag in schema: cdr:cNvPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualShapeProperties.NonVisualShapeDrawingProperties"> <summary> <para> Non-Visual Shape Drawing Properties.</para> <para>Represents the element tag in schema: cdr:cNvSpPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties"> <summary> <para>Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style"> <summary> <para>Shape Style.</para> <para>When the object is serialized out as xml, its qualified name is cdr:style.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.LineReference <a:lnRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FillReference <a:fillRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectReference <a:effectRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FontReference <a:fontRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.#ctor"> <summary> Initializes a new instance of the Style class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Style class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Style class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.#ctor(System.String)"> <summary> Initializes a new instance of the Style class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.LineReference"> <summary> <para> LineReference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.FillReference"> <summary> <para> FillReference.</para> <para>Represents the element tag in schema: a:fillRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.EffectReference"> <summary> <para> EffectReference.</para> <para>Represents the element tag in schema: a:effectRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Style.FontReference"> <summary> <para> Font Reference.</para> <para>Represents the element tag in schema: a:fontRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody"> <summary> <para>Shape Text Body.</para> <para>When the object is serialized out as xml, its qualified name is cdr:txBody.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BodyProperties <a:bodyPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ListStyle <a:lstStyle></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Paragraph <a:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.#ctor"> <summary> Initializes a new instance of the TextBody class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.#ctor(System.String)"> <summary> Initializes a new instance of the TextBody class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.BodyProperties"> <summary> <para> Body Properties.</para> <para>Represents the element tag in schema: a:bodyPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.TextBody.ListStyle"> <summary> <para> Text List Styles.</para> <para>Represents the element tag in schema: a:lstStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties"> <summary> <para>Non-Visual Connection Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:cNvCxnSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks <a:cxnSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.StartConnection <a:stCxn></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EndConnection <a:endCxn></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.ConnectionShapeLocks"> <summary> <para> Connection Shape Locks.</para> <para>Represents the element tag in schema: a:cxnSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.StartConnection"> <summary> <para> Connection Start.</para> <para>Represents the element tag in schema: a:stCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.EndConnection"> <summary> <para> Connection End.</para> <para>Represents the element tag in schema: a:endCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectionShapeProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties"> <summary> <para>Connector Non Visual Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:nvCxnSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <cdr:cNvPr></description></item> <item><description>NonVisualConnectionShapeProperties <cdr:cNvCxnSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.NonVisualDrawingProperties"> <summary> <para> Chart Non Visual Properties.</para> <para>Represents the element tag in schema: cdr:cNvPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualConnectorShapeDrawingProperties.NonVisualConnectionShapeProperties"> <summary> <para> Non-Visual Connection Shape Drawing Properties.</para> <para>Represents the element tag in schema: cdr:cNvCxnSpPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties"> <summary> <para>Non-Visual Picture Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:cNvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.PictureLocks <a:picLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.PreferRelativeResize"> <summary> <para> Relative Resize Preferred.</para> <para>Represents the attribte in schema: preferRelativeResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.PictureLocks"> <summary> <para> Picture Locks.</para> <para>Represents the element tag in schema: a:picLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureDrawingProperties.NonVisualPicturePropertiesExtensionList"> <summary> <para> NonVisualPicturePropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties"> <summary> <para>Non-Visual Picture Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:nvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <cdr:cNvPr></description></item> <item><description>NonVisualPictureDrawingProperties <cdr:cNvPicPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: cdr:cNvPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualPictureProperties.NonVisualPictureDrawingProperties"> <summary> <para> Non-Visual Picture Drawing Properties.</para> <para>Represents the element tag in schema: cdr:cNvPicPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill"> <summary> <para>Picture Fill.</para> <para>When the object is serialized out as xml, its qualified name is cdr:blipFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Blip <a:blip></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SourceRectangle <a:srcRect></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Tile <a:tile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Stretch <a:stretch></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.#ctor"> <summary> Initializes a new instance of the BlipFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.#ctor(System.String)"> <summary> Initializes a new instance of the BlipFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.Dpi"> <summary> <para> DPI Setting.</para> <para>Represents the attribte in schema: dpi </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.RotateWithShape"> <summary> <para> Rotate With Shape.</para> <para>Represents the attribte in schema: rotWithShape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.Blip"> <summary> <para> Blip.</para> <para>Represents the element tag in schema: a:blip </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.BlipFill.SourceRectangle"> <summary> <para> Source Rectangle.</para> <para>Represents the element tag in schema: a:srcRect </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties"> <summary> <para>Non-Visual Graphic Frame Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:cNvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GraphicFrameLocks <a:graphicFrameLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.GraphicFrameLocks"> <summary> <para> Graphic Frame Locks.</para> <para>Represents the element tag in schema: a:graphicFrameLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties"> <summary> <para>Non-Visual Graphic Frame Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:nvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <cdr:cNvPr></description></item> <item><description>NonVisualGraphicFrameDrawingProperties <cdr:cNvGraphicFramePr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.NonVisualDrawingProperties"> <summary> <para> Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: cdr:cNvPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGraphicFrameProperties.NonVisualGraphicFrameDrawingProperties"> <summary> <para> Non-Visual Graphic Frame Drawing Properties.</para> <para>Represents the element tag in schema: cdr:cNvGraphicFramePr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform"> <summary> <para>Graphic Frame Transform.</para> <para>When the object is serialized out as xml, its qualified name is cdr:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.#ctor"> <summary> Initializes a new instance of the Transform class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.#ctor(System.String)"> <summary> Initializes a new instance of the Transform class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Transform.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties"> <summary> <para>Non-Visual Group Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:cNvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GroupShapeLocks <a:grpSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.GroupShapeLocks"> <summary> <para> Group Shape Locks.</para> <para>Represents the element tag in schema: a:grpSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.XPosition"> <summary> <para>Relative X Coordinate.</para> <para>When the object is serialized out as xml, its qualified name is cdr:x.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.XPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.XPosition.#ctor"> <summary> Initializes a new instance of the XPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.XPosition.#ctor(System.String)"> <summary> Initializes a new instance of the XPosition class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.XPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.XPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.XPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.YPosition"> <summary> <para>Relative Y Coordinate.</para> <para>When the object is serialized out as xml, its qualified name is cdr:y.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.YPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.YPosition.#ctor"> <summary> Initializes a new instance of the YPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.YPosition.#ctor(System.String)"> <summary> Initializes a new instance of the YPosition class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.YPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.YPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.YPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor"> <summary> <para>Starting Anchor Point.</para> <para>When the object is serialized out as xml, its qualified name is cdr:from.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>XPosition <cdr:x></description></item> <item><description>YPosition <cdr:y></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.MarkerType"> <summary> Defines the MarkerType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>XPosition <cdr:x></description></item> <item><description>YPosition <cdr:y></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.MarkerType.#ctor"> <summary> Initializes a new instance of the MarkerType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.MarkerType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MarkerType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.MarkerType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MarkerType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.MarkerType.#ctor(System.String)"> <summary> Initializes a new instance of the MarkerType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.MarkerType.XPosition"> <summary> <para> Relative X Coordinate.</para> <para>Represents the element tag in schema: cdr:x </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.MarkerType.YPosition"> <summary> <para> Relative Y Coordinate.</para> <para>Represents the element tag in schema: cdr:y </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor.#ctor"> <summary> Initializes a new instance of the FromAnchor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FromAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FromAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor.#ctor(System.String)"> <summary> Initializes a new instance of the FromAnchor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.FromAnchor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor"> <summary> <para>Ending Anchor Point.</para> <para>When the object is serialized out as xml, its qualified name is cdr:to.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>XPosition <cdr:x></description></item> <item><description>YPosition <cdr:y></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor.#ctor"> <summary> Initializes a new instance of the ToAnchor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ToAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ToAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor.#ctor(System.String)"> <summary> Initializes a new instance of the ToAnchor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.ToAnchor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.Extent"> <summary> <para>Shape Extent.</para> <para>When the object is serialized out as xml, its qualified name is cdr:ext.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Extent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Extent.#ctor"> <summary> Initializes a new instance of the Extent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.Extent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Extent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Extent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Extent.Cx"> <summary> <para> Extent Length.</para> <para>Represents the attribte in schema: cx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.Extent.Cy"> <summary> <para> Extent Width.</para> <para>Represents the attribte in schema: cy </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties"> <summary> <para>Non-Visual Group Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:nvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <cdr:cNvPr></description></item> <item><description>NonVisualGroupShapeDrawingProperties <cdr:cNvGrpSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.NonVisualDrawingProperties"> <summary> <para> Chart Non Visual Properties.</para> <para>Represents the element tag in schema: cdr:cNvPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.NonVisualGroupShapeProperties.NonVisualGroupShapeDrawingProperties"> <summary> <para> Non-Visual Group Shape Drawing Properties.</para> <para>Represents the element tag in schema: cdr:cNvGrpSpPr </para> </summary> <remark> xmlns:cdr = http://schemas.openxmlformats.org/drawingml/2006/chartDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties"> <summary> <para>Group Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is cdr:grpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.TransformGroup <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.#ctor"> <summary> Initializes a new instance of the GroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChartDrawing.GroupShapeProperties.TransformGroup"> <summary> <para> 2D Transform for Grouped Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LegacyCompatibility.LegacyDrawing"> <summary> <para>Legacy Drawing Object.</para> <para>When the object is serialized out as xml, its qualified name is comp:legacyDrawing.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LegacyCompatibility.LegacyDrawing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LegacyCompatibility.LegacyDrawing.#ctor"> <summary> Initializes a new instance of the LegacyDrawing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LegacyCompatibility.LegacyDrawing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LegacyCompatibility.LegacyDrawing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LegacyCompatibility.LegacyDrawing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LegacyCompatibility.LegacyDrawing.ShapeId"> <summary> <para> Shape ID.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition"> <summary> <para>Color Transform Definitions. It is the root element of DiagramColorsPart.</para> <para>When the object is serialized out as xml, its qualified name is dgm:colorsDef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColorDefinitionTitle <dgm:title></description></item> <item><description>ColorTransformDescription <dgm:desc></description></item> <item><description>ColorTransformCategories <dgm:catLst></description></item> <item><description>ColorTransformStyleLabel <dgm:styleLbl></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.#ctor(DocumentFormat.OpenXml.Packaging.DiagramColorsPart)"> <summary> ColorsDefinition constructor </summary> <param name="ownerPart">The owner part of the ColorsDefinition</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.Load(DocumentFormat.OpenXml.Packaging.DiagramColorsPart)"> <summary> Loads the DOM from the DiagramColorsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorsDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorsDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.#ctor(System.String)"> <summary> Initializes a new instance of the ColorsDefinition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.#ctor"> <summary> Initializes a new instance of the ColorsDefinition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.Save(DocumentFormat.OpenXml.Packaging.DiagramColorsPart)"> <summary> Saves the DOM into the DiagramColorsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.UniqueId"> <summary> <para> Unique ID.</para> <para>Represents the attribte in schema: uniqueId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.MinVersion"> <summary> <para> Minimum Version.</para> <para>Represents the attribte in schema: minVer </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition.DiagramColorsPart"> <summary> Gets the DiagramColorsPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader"> <summary> <para>Color Transform Header.</para> <para>When the object is serialized out as xml, its qualified name is dgm:colorsDefHdr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColorDefinitionTitle <dgm:title></description></item> <item><description>ColorTransformDescription <dgm:desc></description></item> <item><description>ColorTransformCategories <dgm:catLst></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.#ctor"> <summary> Initializes a new instance of the ColorsDefinitionHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorsDefinitionHeader class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorsDefinitionHeader class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.#ctor(System.String)"> <summary> Initializes a new instance of the ColorsDefinitionHeader class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.UniqueId"> <summary> <para> Unique ID.</para> <para>Represents the attribte in schema: uniqueId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.MinVersion"> <summary> <para> Minimum Version.</para> <para>Represents the attribte in schema: minVer </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader.ResourceId"> <summary> <para> Resource ID.</para> <para>Represents the attribte in schema: resId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList"> <summary> <para>Color Transform Header List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:colorsDefHdrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColorsDefinitionHeader <dgm:colorsDefHdr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList.#ctor"> <summary> Initializes a new instance of the ColorsDefinitionHeaderList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorsDefinitionHeaderList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorsDefinitionHeaderList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList.#ctor(System.String)"> <summary> Initializes a new instance of the ColorsDefinitionHeaderList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot"> <summary> <para>Data Model. It is the root element of DiagramDataPart.</para> <para>When the object is serialized out as xml, its qualified name is dgm:dataModel.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PointList <dgm:ptLst></description></item> <item><description>ConnectionList <dgm:cxnLst></description></item> <item><description>Background <dgm:bg></description></item> <item><description>Whole <dgm:whole></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.#ctor(DocumentFormat.OpenXml.Packaging.DiagramDataPart)"> <summary> DataModelRoot constructor </summary> <param name="ownerPart">The owner part of the DataModelRoot</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.Load(DocumentFormat.OpenXml.Packaging.DiagramDataPart)"> <summary> Loads the DOM from the DiagramDataPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataModelRoot class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataModelRoot class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.#ctor(System.String)"> <summary> Initializes a new instance of the DataModelRoot class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.#ctor"> <summary> Initializes a new instance of the DataModelRoot class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.Save(DocumentFormat.OpenXml.Packaging.DiagramDataPart)"> <summary> Saves the DOM into the DiagramDataPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.DiagramDataPart"> <summary> Gets the DiagramDataPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.PointList"> <summary> <para> Point List.</para> <para>Represents the element tag in schema: dgm:ptLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.ConnectionList"> <summary> <para> Connection List.</para> <para>Represents the element tag in schema: dgm:cxnLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.Background"> <summary> <para> Background Formatting.</para> <para>Represents the element tag in schema: dgm:bg </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.Whole"> <summary> <para> Whole E2O Formatting.</para> <para>Represents the element tag in schema: dgm:whole </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition"> <summary> <para>Layout Definition. It is the root element of DiagramLayoutDefinitionPart.</para> <para>When the object is serialized out as xml, its qualified name is dgm:layoutDef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Title <dgm:title></description></item> <item><description>Description <dgm:desc></description></item> <item><description>CategoryList <dgm:catLst></description></item> <item><description>SampleData <dgm:sampData></description></item> <item><description>StyleData <dgm:styleData></description></item> <item><description>ColorData <dgm:clrData></description></item> <item><description>LayoutNode <dgm:layoutNode></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.#ctor(DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart)"> <summary> LayoutDefinition constructor </summary> <param name="ownerPart">The owner part of the LayoutDefinition</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.Load(DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart)"> <summary> Loads the DOM from the DiagramLayoutDefinitionPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LayoutDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LayoutDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.#ctor(System.String)"> <summary> Initializes a new instance of the LayoutDefinition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.#ctor"> <summary> Initializes a new instance of the LayoutDefinition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.Save(DocumentFormat.OpenXml.Packaging.DiagramLayoutDefinitionPart)"> <summary> Saves the DOM into the DiagramLayoutDefinitionPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.UniqueId"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: uniqueId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.MinVersion"> <summary> <para> Minimum Version.</para> <para>Represents the attribte in schema: minVer </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.DefaultStyle"> <summary> <para> Default Style.</para> <para>Represents the attribte in schema: defStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition.DiagramLayoutDefinitionPart"> <summary> Gets the DiagramLayoutDefinitionPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader"> <summary> <para>Layout Definition Header.</para> <para>When the object is serialized out as xml, its qualified name is dgm:layoutDefHdr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Title <dgm:title></description></item> <item><description>Description <dgm:desc></description></item> <item><description>CategoryList <dgm:catLst></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.#ctor"> <summary> Initializes a new instance of the LayoutDefinitionHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LayoutDefinitionHeader class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LayoutDefinitionHeader class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.#ctor(System.String)"> <summary> Initializes a new instance of the LayoutDefinitionHeader class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.UniqueId"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: uniqueId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.MinVersion"> <summary> <para> Minimum Version.</para> <para>Represents the attribte in schema: minVer </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.DefaultStyle"> <summary> <para> Default Style.</para> <para>Represents the attribte in schema: defStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader.ResourceId"> <summary> <para> Resource Identifier.</para> <para>Represents the attribte in schema: resId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList"> <summary> <para>Diagram Layout Header List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:layoutDefHdrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LayoutDefinitionHeader <dgm:layoutDefHdr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList.#ctor"> <summary> Initializes a new instance of the LayoutDefinitionHeaderList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LayoutDefinitionHeaderList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LayoutDefinitionHeaderList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList.#ctor(System.String)"> <summary> Initializes a new instance of the LayoutDefinitionHeaderList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds"> <summary> <para>Explicit Relationships to Diagram Parts.</para> <para>When the object is serialized out as xml, its qualified name is dgm:relIds.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.#ctor"> <summary> Initializes a new instance of the RelationshipIds class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.DataPart"> <summary> <para> Explicit Relationship to Diagram Data Part.</para> <para>Represents the attribte in schema: r:dm </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.LayoutPart"> <summary> <para> Explicit Relationship to Diagram Layout Definition Part.</para> <para>Represents the attribte in schema: r:lo </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.StylePart"> <summary> <para> Explicit Relationship to Style Definition Part.</para> <para>Represents the attribte in schema: r:qs </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds.ColorPart"> <summary> <para> Explicit Relationship to Diagram Colors Part.</para> <para>Represents the attribte in schema: r:cs </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition"> <summary> <para>Style Definition. It is the root element of DiagramStylePart.</para> <para>When the object is serialized out as xml, its qualified name is dgm:styleDef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StyleDefinitionTitle <dgm:title></description></item> <item><description>StyleLabelDescription <dgm:desc></description></item> <item><description>StyleDisplayCategories <dgm:catLst></description></item> <item><description>Scene3D <dgm:scene3d></description></item> <item><description>StyleLabel <dgm:styleLbl></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.#ctor(DocumentFormat.OpenXml.Packaging.DiagramStylePart)"> <summary> StyleDefinition constructor </summary> <param name="ownerPart">The owner part of the StyleDefinition</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.Load(DocumentFormat.OpenXml.Packaging.DiagramStylePart)"> <summary> Loads the DOM from the DiagramStylePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StyleDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StyleDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.#ctor(System.String)"> <summary> Initializes a new instance of the StyleDefinition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.#ctor"> <summary> Initializes a new instance of the StyleDefinition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.Save(DocumentFormat.OpenXml.Packaging.DiagramStylePart)"> <summary> Saves the DOM into the DiagramStylePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.UniqueId"> <summary> <para> Unique Style ID.</para> <para>Represents the attribte in schema: uniqueId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.MinVersion"> <summary> <para> Minimum Version.</para> <para>Represents the attribte in schema: minVer </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition.DiagramStylePart"> <summary> Gets the DiagramStylePart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader"> <summary> <para>Style Definition Header.</para> <para>When the object is serialized out as xml, its qualified name is dgm:styleDefHdr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StyleDefinitionTitle <dgm:title></description></item> <item><description>StyleLabelDescription <dgm:desc></description></item> <item><description>StyleDisplayCategories <dgm:catLst></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.#ctor"> <summary> Initializes a new instance of the StyleDefinitionHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StyleDefinitionHeader class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StyleDefinitionHeader class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.#ctor(System.String)"> <summary> Initializes a new instance of the StyleDefinitionHeader class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.UniqueId"> <summary> <para> Unique Style ID.</para> <para>Represents the attribte in schema: uniqueId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.MinVersion"> <summary> <para> Minimum Version.</para> <para>Represents the attribte in schema: minVer </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader.ResourceId"> <summary> <para> Resource ID.</para> <para>Represents the attribte in schema: resId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList"> <summary> <para>List of Style Definition Headers.</para> <para>When the object is serialized out as xml, its qualified name is dgm:styleDefHdrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StyleDefinitionHeader <dgm:styleDefHdr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList.#ctor"> <summary> Initializes a new instance of the StyleDefinitionHeaderList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StyleDefinitionHeaderList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StyleDefinitionHeaderList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList.#ctor(System.String)"> <summary> Initializes a new instance of the StyleDefinitionHeaderList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategory"> <summary> <para>Color Transform Category.</para> <para>When the object is serialized out as xml, its qualified name is dgm:cat.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategory.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategory.#ctor"> <summary> Initializes a new instance of the ColorTransformCategory class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategory.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategory.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategory.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategory.Type"> <summary> <para> Category Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategory.Priority"> <summary> <para> Priority.</para> <para>Represents the attribte in schema: pri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList"> <summary> <para>Fill Color List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:fillClrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsType"> <summary> Defines the ColorsType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsType.#ctor"> <summary> Initializes a new instance of the ColorsType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorsType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsType.#ctor(System.String)"> <summary> Initializes a new instance of the ColorsType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsType.Method"> <summary> <para> Color Application Method Type.</para> <para>Represents the attribte in schema: meth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorsType.HueDirection"> <summary> <para> Hue Direction.</para> <para>Represents the attribte in schema: hueDir </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList.#ctor"> <summary> Initializes a new instance of the FillColorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FillColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FillColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList.#ctor(System.String)"> <summary> Initializes a new instance of the FillColorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.FillColorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList"> <summary> <para>Line Color List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:linClrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList.#ctor"> <summary> Initializes a new instance of the LineColorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LineColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LineColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList.#ctor(System.String)"> <summary> Initializes a new instance of the LineColorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LineColorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList"> <summary> <para>Effect Color List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:effectClrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList.#ctor"> <summary> Initializes a new instance of the EffectColorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList.#ctor(System.String)"> <summary> Initializes a new instance of the EffectColorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.EffectColorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList"> <summary> <para>Text Line Color List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:txLinClrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList.#ctor"> <summary> Initializes a new instance of the TextLineColorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextLineColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextLineColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList.#ctor(System.String)"> <summary> Initializes a new instance of the TextLineColorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextLineColorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList"> <summary> <para>Text Fill Color List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:txFillClrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList.#ctor"> <summary> Initializes a new instance of the TextFillColorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextFillColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextFillColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList.#ctor(System.String)"> <summary> Initializes a new instance of the TextFillColorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextFillColorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList"> <summary> <para>Text Effect Color List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:txEffectClrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList.#ctor"> <summary> Initializes a new instance of the TextEffectColorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextEffectColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextEffectColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList.#ctor(System.String)"> <summary> Initializes a new instance of the TextEffectColorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextEffectColorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList"> <summary> <para>Defines the ExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is dgm:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList.#ctor"> <summary> Initializes a new instance of the ExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorDefinitionTitle"> <summary> <para>Title.</para> <para>When the object is serialized out as xml, its qualified name is dgm:title.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorDefinitionTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorDefinitionTitle.#ctor"> <summary> Initializes a new instance of the ColorDefinitionTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorDefinitionTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorDefinitionTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorDefinitionTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorDefinitionTitle.Language"> <summary> <para> Language.</para> <para>Represents the attribte in schema: lang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorDefinitionTitle.Val"> <summary> <para> Description Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformDescription"> <summary> <para>Description.</para> <para>When the object is serialized out as xml, its qualified name is dgm:desc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformDescription.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformDescription.#ctor"> <summary> Initializes a new instance of the ColorTransformDescription class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformDescription.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformDescription.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformDescription.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformDescription.Language"> <summary> <para> Language.</para> <para>Represents the attribte in schema: lang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformDescription.Val"> <summary> <para> Description Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories"> <summary> <para>Color Transform Category List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:catLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColorTransformCategory <dgm:cat></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories.#ctor"> <summary> Initializes a new instance of the ColorTransformCategories class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorTransformCategories class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorTransformCategories class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories.#ctor(System.String)"> <summary> Initializes a new instance of the ColorTransformCategories class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformCategories.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel"> <summary> <para>Style Label.</para> <para>When the object is serialized out as xml, its qualified name is dgm:styleLbl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FillColorList <dgm:fillClrLst></description></item> <item><description>LineColorList <dgm:linClrLst></description></item> <item><description>EffectColorList <dgm:effectClrLst></description></item> <item><description>TextLineColorList <dgm:txLinClrLst></description></item> <item><description>TextFillColorList <dgm:txFillClrLst></description></item> <item><description>TextEffectColorList <dgm:txEffectClrLst></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.#ctor"> <summary> Initializes a new instance of the ColorTransformStyleLabel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorTransformStyleLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorTransformStyleLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.#ctor(System.String)"> <summary> Initializes a new instance of the ColorTransformStyleLabel class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.FillColorList"> <summary> <para> Fill Color List.</para> <para>Represents the element tag in schema: dgm:fillClrLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.LineColorList"> <summary> <para> Line Color List.</para> <para>Represents the element tag in schema: dgm:linClrLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.EffectColorList"> <summary> <para> Effect Color List.</para> <para>Represents the element tag in schema: dgm:effectClrLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.TextLineColorList"> <summary> <para> Text Line Color List.</para> <para>Represents the element tag in schema: dgm:txLinClrLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.TextFillColorList"> <summary> <para> Text Fill Color List.</para> <para>Represents the element tag in schema: dgm:txFillClrLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.TextEffectColorList"> <summary> <para> Text Effect Color List.</para> <para>Represents the element tag in schema: dgm:txEffectClrLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorTransformStyleLabel.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Point"> <summary> <para>Point.</para> <para>When the object is serialized out as xml, its qualified name is dgm:pt.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PropertySet <dgm:prSet></description></item> <item><description>ShapeProperties <dgm:spPr></description></item> <item><description>TextBody <dgm:t></description></item> <item><description>PtExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Point.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Point.#ctor"> <summary> Initializes a new instance of the Point class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Point.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Point class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Point.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Point class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Point.#ctor(System.String)"> <summary> Initializes a new instance of the Point class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Point.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.ModelId"> <summary> <para> Model Identifier.</para> <para>Represents the attribte in schema: modelId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.Type"> <summary> <para> Point Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.ConnectionId"> <summary> <para> Connection Identifier.</para> <para>Represents the attribte in schema: cxnId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.PropertySet"> <summary> <para> Property Set.</para> <para>Represents the element tag in schema: dgm:prSet </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.ShapeProperties"> <summary> <para> Shape Properties.</para> <para>Represents the element tag in schema: dgm:spPr </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.TextBody"> <summary> <para> Text Body.</para> <para>Represents the element tag in schema: dgm:t </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Point.PtExtensionList"> <summary> <para> PtExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Connection"> <summary> <para>Connection.</para> <para>When the object is serialized out as xml, its qualified name is dgm:cxn.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.#ctor"> <summary> Initializes a new instance of the Connection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Connection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Connection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.#ctor(System.String)"> <summary> Initializes a new instance of the Connection class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.ModelId"> <summary> <para> Model Identifier.</para> <para>Represents the attribte in schema: modelId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.Type"> <summary> <para> Point Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.SourceId"> <summary> <para> Source Identifier.</para> <para>Represents the attribte in schema: srcId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.DestinationId"> <summary> <para> Destination Identifier.</para> <para>Represents the attribte in schema: destId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.SourcePosition"> <summary> <para> Source Position.</para> <para>Represents the attribte in schema: srcOrd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.DestinationPosition"> <summary> <para> Destination Position.</para> <para>Represents the attribte in schema: destOrd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.ParentTransitionId"> <summary> <para> Parent Transition Identifier.</para> <para>Represents the attribte in schema: parTransId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.SiblingTransitionId"> <summary> <para> Sibling Transition Identifier.</para> <para>Represents the attribte in schema: sibTransId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.PresentationId"> <summary> <para> Presentation Identifier.</para> <para>Represents the attribte in schema: presId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Connection.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PointList"> <summary> <para>Point List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:ptLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Point <dgm:pt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PointList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PointList.#ctor"> <summary> Initializes a new instance of the PointList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PointList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PointList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PointList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PointList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PointList.#ctor(System.String)"> <summary> Initializes a new instance of the PointList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PointList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PointList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PointList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList"> <summary> <para>Connection List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:cxnLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Connection <dgm:cxn></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList.#ctor"> <summary> Initializes a new instance of the ConnectionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConnectionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConnectionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList.#ctor(System.String)"> <summary> Initializes a new instance of the ConnectionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Background"> <summary> <para>Background Formatting.</para> <para>When the object is serialized out as xml, its qualified name is dgm:bg.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Background.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Background.#ctor"> <summary> Initializes a new instance of the Background class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Background.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Background class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Background.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Background class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Background.#ctor(System.String)"> <summary> Initializes a new instance of the Background class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Background.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Background.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Background.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Whole"> <summary> <para>Whole E2O Formatting.</para> <para>When the object is serialized out as xml, its qualified name is dgm:whole.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.#ctor"> <summary> Initializes a new instance of the Whole class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Whole class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Whole class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.#ctor(System.String)"> <summary> Initializes a new instance of the Whole class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Whole.Outline"> <summary> <para> Outline.</para> <para>Represents the element tag in schema: a:ln </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint"> <summary> <para>Constraint.</para> <para>When the object is serialized out as xml, its qualified name is dgm:constr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.#ctor"> <summary> Initializes a new instance of the Constraint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Constraint class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Constraint class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.#ctor(System.String)"> <summary> Initializes a new instance of the Constraint class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.Type"> <summary> <para> Constraint Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.For"> <summary> <para> For.</para> <para>Represents the attribte in schema: for </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.ForName"> <summary> <para> For Name.</para> <para>Represents the attribte in schema: forName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.PointType"> <summary> <para> Data Point Type.</para> <para>Represents the attribte in schema: ptType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.ReferenceType"> <summary> <para> Reference Type.</para> <para>Represents the attribte in schema: refType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.ReferenceFor"> <summary> <para> Reference For.</para> <para>Represents the attribte in schema: refFor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.ReferenceForName"> <summary> <para> Reference For Name.</para> <para>Represents the attribte in schema: refForName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.ReferencePointType"> <summary> <para> Reference Point Type.</para> <para>Represents the attribte in schema: refPtType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.Operator"> <summary> <para> Operator.</para> <para>Represents the attribte in schema: op </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.Fact"> <summary> <para> Factor.</para> <para>Represents the attribte in schema: fact </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraint.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Rule"> <summary> <para>Rule.</para> <para>When the object is serialized out as xml, its qualified name is dgm:rule.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.#ctor"> <summary> Initializes a new instance of the Rule class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Rule class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Rule class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.#ctor(System.String)"> <summary> Initializes a new instance of the Rule class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.Type"> <summary> <para> Constraint Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.For"> <summary> <para> For.</para> <para>Represents the attribte in schema: for </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.ForName"> <summary> <para> For Name.</para> <para>Represents the attribte in schema: forName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.PointType"> <summary> <para> Data Point Type.</para> <para>Represents the attribte in schema: ptType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.Fact"> <summary> <para> Factor.</para> <para>Represents the attribte in schema: fact </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.Max"> <summary> <para> Max Value.</para> <para>Represents the attribte in schema: max </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Rule.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Adjust"> <summary> <para>Shape Adjust.</para> <para>When the object is serialized out as xml, its qualified name is dgm:adj.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Adjust.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Adjust.#ctor"> <summary> Initializes a new instance of the Adjust class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Adjust.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Adjust.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Adjust.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Adjust.Index"> <summary> <para> Adjust Handle Index.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Adjust.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList"> <summary> <para>Shape Adjust List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:adjLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Adjust <dgm:adj></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList.#ctor"> <summary> Initializes a new instance of the AdjustList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AdjustList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AdjustList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList.#ctor(System.String)"> <summary> Initializes a new instance of the AdjustList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.AdjustList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Parameter"> <summary> <para>Parameter.</para> <para>When the object is serialized out as xml, its qualified name is dgm:param.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Parameter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Parameter.#ctor"> <summary> Initializes a new instance of the Parameter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Parameter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Parameter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Parameter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Parameter.Type"> <summary> <para> Parameter Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Parameter.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm"> <summary> <para>Algorithm.</para> <para>When the object is serialized out as xml, its qualified name is dgm:alg.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Parameter <dgm:param></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.#ctor"> <summary> Initializes a new instance of the Algorithm class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Algorithm class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Algorithm class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.#ctor(System.String)"> <summary> Initializes a new instance of the Algorithm class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.Type"> <summary> <para> Algorithm Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Algorithm.Revision"> <summary> <para> Revision Number.</para> <para>Represents the attribte in schema: rev </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Shape"> <summary> <para>Shape.</para> <para>When the object is serialized out as xml, its qualified name is dgm:shape.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AdjustList <dgm:adjLst></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.#ctor(System.String)"> <summary> Initializes a new instance of the Shape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.Type"> <summary> <para> Shape Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.Blip"> <summary> <para> Relationship to Image Part.</para> <para>Represents the attribte in schema: r:blip </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.ZOrderOffset"> <summary> <para> Z-Order Offset.</para> <para>Represents the attribte in schema: zOrderOff </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.HideGeometry"> <summary> <para> Hide Geometry.</para> <para>Represents the attribte in schema: hideGeom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.LockedText"> <summary> <para> Prevent Text Editing.</para> <para>Represents the attribte in schema: lkTxEntry </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.BlipPlaceholder"> <summary> <para> Image Placeholder.</para> <para>Represents the attribte in schema: blipPhldr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.AdjustList"> <summary> <para> Shape Adjust List.</para> <para>Represents the element tag in schema: dgm:adjLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf"> <summary> <para>Presentation Of.</para> <para>When the object is serialized out as xml, its qualified name is dgm:presOf.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.#ctor"> <summary> Initializes a new instance of the PresentationOf class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresentationOf class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresentationOf class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.#ctor(System.String)"> <summary> Initializes a new instance of the PresentationOf class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.Axis"> <summary> <para> Axis.</para> <para>Represents the attribte in schema: axis </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.PointType"> <summary> <para> Data Point Type.</para> <para>Represents the attribte in schema: ptType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.HideLastTrans"> <summary> <para> Hide Last Transition.</para> <para>Represents the attribte in schema: hideLastTrans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.Start"> <summary> <para> Start.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.Count"> <summary> <para> Count.</para> <para>Represents the attribte in schema: cnt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.Step"> <summary> <para> Step.</para> <para>Represents the attribte in schema: step </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationOf.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints"> <summary> <para>Constraint List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:constrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Constraint <dgm:constr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints.#ctor"> <summary> Initializes a new instance of the Constraints class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Constraints class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Constraints class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints.#ctor(System.String)"> <summary> Initializes a new instance of the Constraints class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Constraints.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList"> <summary> <para>Rule List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:ruleLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Rule <dgm:rule></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList.#ctor"> <summary> Initializes a new instance of the RuleList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RuleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RuleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList.#ctor(System.String)"> <summary> Initializes a new instance of the RuleList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.RuleList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList"> <summary> <para>Variable List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:varLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OrganizationChart <dgm:orgChart></description></item> <item><description>MaxNumberOfChildren <dgm:chMax></description></item> <item><description>PreferredNumberOfChildren <dgm:chPref></description></item> <item><description>BulletEnabled <dgm:bulletEnabled></description></item> <item><description>Direction <dgm:dir></description></item> <item><description>HierarchyBranch <dgm:hierBranch></description></item> <item><description>AnimateOneByOne <dgm:animOne></description></item> <item><description>AnimationLevel <dgm:animLvl></description></item> <item><description>ResizeHandles <dgm:resizeHandles></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType"> <summary> Defines the LayoutVariablePropertySetType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OrganizationChart <dgm:orgChart></description></item> <item><description>MaxNumberOfChildren <dgm:chMax></description></item> <item><description>PreferredNumberOfChildren <dgm:chPref></description></item> <item><description>BulletEnabled <dgm:bulletEnabled></description></item> <item><description>Direction <dgm:dir></description></item> <item><description>HierarchyBranch <dgm:hierBranch></description></item> <item><description>AnimateOneByOne <dgm:animOne></description></item> <item><description>AnimationLevel <dgm:animLvl></description></item> <item><description>ResizeHandles <dgm:resizeHandles></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.#ctor"> <summary> Initializes a new instance of the LayoutVariablePropertySetType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LayoutVariablePropertySetType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LayoutVariablePropertySetType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.#ctor(System.String)"> <summary> Initializes a new instance of the LayoutVariablePropertySetType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.OrganizationChart"> <summary> <para> Show Organization Chart User Interface.</para> <para>Represents the element tag in schema: dgm:orgChart </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.MaxNumberOfChildren"> <summary> <para> Maximum Children.</para> <para>Represents the element tag in schema: dgm:chMax </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.PreferredNumberOfChildren"> <summary> <para> Preferred Number of Children.</para> <para>Represents the element tag in schema: dgm:chPref </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.BulletEnabled"> <summary> <para> Show Insert Bullet.</para> <para>Represents the element tag in schema: dgm:bulletEnabled </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.Direction"> <summary> <para> Diagram Direction.</para> <para>Represents the element tag in schema: dgm:dir </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.HierarchyBranch"> <summary> <para> Organization Chart Branch Style.</para> <para>Represents the element tag in schema: dgm:hierBranch </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.AnimateOneByOne"> <summary> <para> One by One Animation String.</para> <para>Represents the element tag in schema: dgm:animOne </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.AnimationLevel"> <summary> <para> Level Animation.</para> <para>Represents the element tag in schema: dgm:animLvl </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutVariablePropertySetType.ResizeHandles"> <summary> <para> Shape Resize Style.</para> <para>Represents the element tag in schema: dgm:resizeHandles </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList.#ctor"> <summary> Initializes a new instance of the VariableList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VariableList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VariableList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList.#ctor(System.String)"> <summary> Initializes a new instance of the VariableList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.VariableList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables"> <summary> <para>Presentation Layout Variables.</para> <para>When the object is serialized out as xml, its qualified name is dgm:presLayoutVars.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OrganizationChart <dgm:orgChart></description></item> <item><description>MaxNumberOfChildren <dgm:chMax></description></item> <item><description>PreferredNumberOfChildren <dgm:chPref></description></item> <item><description>BulletEnabled <dgm:bulletEnabled></description></item> <item><description>Direction <dgm:dir></description></item> <item><description>HierarchyBranch <dgm:hierBranch></description></item> <item><description>AnimateOneByOne <dgm:animOne></description></item> <item><description>AnimationLevel <dgm:animLvl></description></item> <item><description>ResizeHandles <dgm:resizeHandles></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables.#ctor"> <summary> Initializes a new instance of the PresentationLayoutVariables class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresentationLayoutVariables class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresentationLayoutVariables class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables.#ctor(System.String)"> <summary> Initializes a new instance of the PresentationLayoutVariables class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PresentationLayoutVariables.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach"> <summary> <para>For Each.</para> <para>When the object is serialized out as xml, its qualified name is dgm:forEach.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Algorithm <dgm:alg></description></item> <item><description>Shape <dgm:shape></description></item> <item><description>PresentationOf <dgm:presOf></description></item> <item><description>Constraints <dgm:constrLst></description></item> <item><description>RuleList <dgm:ruleLst></description></item> <item><description>ForEach <dgm:forEach></description></item> <item><description>LayoutNode <dgm:layoutNode></description></item> <item><description>Choose <dgm:choose></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.#ctor"> <summary> Initializes a new instance of the ForEach class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ForEach class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ForEach class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.#ctor(System.String)"> <summary> Initializes a new instance of the ForEach class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.Reference"> <summary> <para> Reference.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.Axis"> <summary> <para> Axis.</para> <para>Represents the attribte in schema: axis </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.PointType"> <summary> <para> Data Point Type.</para> <para>Represents the attribte in schema: ptType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.HideLastTrans"> <summary> <para> Hide Last Transition.</para> <para>Represents the attribte in schema: hideLastTrans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.Start"> <summary> <para> Start.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.Count"> <summary> <para> Count.</para> <para>Represents the attribte in schema: cnt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ForEach.Step"> <summary> <para> Step.</para> <para>Represents the attribte in schema: step </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode"> <summary> <para>Layout Node.</para> <para>When the object is serialized out as xml, its qualified name is dgm:layoutNode.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Algorithm <dgm:alg></description></item> <item><description>Shape <dgm:shape></description></item> <item><description>PresentationOf <dgm:presOf></description></item> <item><description>Constraints <dgm:constrLst></description></item> <item><description>RuleList <dgm:ruleLst></description></item> <item><description>VariableList <dgm:varLst></description></item> <item><description>ForEach <dgm:forEach></description></item> <item><description>LayoutNode <dgm:layoutNode></description></item> <item><description>Choose <dgm:choose></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.#ctor"> <summary> Initializes a new instance of the LayoutNode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LayoutNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LayoutNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.#ctor(System.String)"> <summary> Initializes a new instance of the LayoutNode class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.StyleLabel"> <summary> <para> Style Label.</para> <para>Represents the attribte in schema: styleLbl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.ChildOrder"> <summary> <para> Child Order.</para> <para>Represents the attribte in schema: chOrder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.LayoutNode.MoveWith"> <summary> <para> Move With.</para> <para>Represents the attribte in schema: moveWith </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Choose"> <summary> <para>Choose Element.</para> <para>When the object is serialized out as xml, its qualified name is dgm:choose.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DiagramChooseIf <dgm:if></description></item> <item><description>DiagramChooseElse <dgm:else></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.#ctor"> <summary> Initializes a new instance of the Choose class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Choose class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Choose class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.#ctor(System.String)"> <summary> Initializes a new instance of the Choose class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Choose.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf"> <summary> <para>If.</para> <para>When the object is serialized out as xml, its qualified name is dgm:if.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Algorithm <dgm:alg></description></item> <item><description>Shape <dgm:shape></description></item> <item><description>PresentationOf <dgm:presOf></description></item> <item><description>Constraints <dgm:constrLst></description></item> <item><description>RuleList <dgm:ruleLst></description></item> <item><description>ForEach <dgm:forEach></description></item> <item><description>LayoutNode <dgm:layoutNode></description></item> <item><description>Choose <dgm:choose></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.#ctor"> <summary> Initializes a new instance of the DiagramChooseIf class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DiagramChooseIf class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DiagramChooseIf class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.#ctor(System.String)"> <summary> Initializes a new instance of the DiagramChooseIf class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Axis"> <summary> <para> Axis.</para> <para>Represents the attribte in schema: axis </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.PointType"> <summary> <para> Data Point Type.</para> <para>Represents the attribte in schema: ptType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.HideLastTrans"> <summary> <para> Hide Last Transition.</para> <para>Represents the attribte in schema: hideLastTrans </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Start"> <summary> <para> Start.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Count"> <summary> <para> Count.</para> <para>Represents the attribte in schema: cnt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Step"> <summary> <para> Step.</para> <para>Represents the attribte in schema: step </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Function"> <summary> <para> Function.</para> <para>Represents the attribte in schema: func </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Argument"> <summary> <para> Argument.</para> <para>Represents the attribte in schema: arg </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Operator"> <summary> <para> Operator.</para> <para>Represents the attribte in schema: op </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseIf.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse"> <summary> <para>Else.</para> <para>When the object is serialized out as xml, its qualified name is dgm:else.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Algorithm <dgm:alg></description></item> <item><description>Shape <dgm:shape></description></item> <item><description>PresentationOf <dgm:presOf></description></item> <item><description>Constraints <dgm:constrLst></description></item> <item><description>RuleList <dgm:ruleLst></description></item> <item><description>ForEach <dgm:forEach></description></item> <item><description>LayoutNode <dgm:layoutNode></description></item> <item><description>Choose <dgm:choose></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.#ctor"> <summary> Initializes a new instance of the DiagramChooseElse class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DiagramChooseElse class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DiagramChooseElse class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.#ctor(System.String)"> <summary> Initializes a new instance of the DiagramChooseElse class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DiagramChooseElse.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel"> <summary> <para>Data Model.</para> <para>When the object is serialized out as xml, its qualified name is dgm:dataModel.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PointList <dgm:ptLst></description></item> <item><description>ConnectionList <dgm:cxnLst></description></item> <item><description>Background <dgm:bg></description></item> <item><description>Whole <dgm:whole></description></item> <item><description>DataModelExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.#ctor"> <summary> Initializes a new instance of the DataModel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataModel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataModel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.#ctor(System.String)"> <summary> Initializes a new instance of the DataModel class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.PointList"> <summary> <para> Point List.</para> <para>Represents the element tag in schema: dgm:ptLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.ConnectionList"> <summary> <para> Connection List.</para> <para>Represents the element tag in schema: dgm:cxnLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.Background"> <summary> <para> Background Formatting.</para> <para>Represents the element tag in schema: dgm:bg </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.Whole"> <summary> <para> Whole E2O Formatting.</para> <para>Represents the element tag in schema: dgm:whole </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModel.DataModelExtensionList"> <summary> <para> DataModelExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Category"> <summary> <para>Category.</para> <para>When the object is serialized out as xml, its qualified name is dgm:cat.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Category.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Category.#ctor"> <summary> Initializes a new instance of the Category class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Category.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Category.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Category.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Category.Type"> <summary> <para> Category Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Category.Priority"> <summary> <para> Priority.</para> <para>Represents the attribte in schema: pri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Title"> <summary> <para>Title.</para> <para>When the object is serialized out as xml, its qualified name is dgm:title.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Title.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Title.#ctor"> <summary> Initializes a new instance of the Title class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Title.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Title.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Title.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Title.Language"> <summary> <para> Language.</para> <para>Represents the attribte in schema: lang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Title.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Description"> <summary> <para>Description.</para> <para>When the object is serialized out as xml, its qualified name is dgm:desc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Description.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Description.#ctor"> <summary> Initializes a new instance of the Description class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Description.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Description.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Description.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Description.Language"> <summary> <para> Language.</para> <para>Represents the attribte in schema: lang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Description.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList"> <summary> <para>Category List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:catLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Category <dgm:cat></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList.#ctor"> <summary> Initializes a new instance of the CategoryList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CategoryList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CategoryList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList.#ctor(System.String)"> <summary> Initializes a new instance of the CategoryList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.CategoryList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData"> <summary> <para>Sample Data.</para> <para>When the object is serialized out as xml, its qualified name is dgm:sampData.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataModel <dgm:dataModel></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.SampleDataType"> <summary> Defines the SampleDataType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataModel <dgm:dataModel></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleDataType.#ctor"> <summary> Initializes a new instance of the SampleDataType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleDataType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SampleDataType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleDataType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SampleDataType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleDataType.#ctor(System.String)"> <summary> Initializes a new instance of the SampleDataType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.SampleDataType.UseDefault"> <summary> <para> Use Default.</para> <para>Represents the attribte in schema: useDef </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.SampleDataType.DataModel"> <summary> <para> Data Model.</para> <para>Represents the element tag in schema: dgm:dataModel </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData.#ctor"> <summary> Initializes a new instance of the SampleData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SampleData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SampleData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData.#ctor(System.String)"> <summary> Initializes a new instance of the SampleData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.SampleData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData"> <summary> <para>Style Data.</para> <para>When the object is serialized out as xml, its qualified name is dgm:styleData.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataModel <dgm:dataModel></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData.#ctor"> <summary> Initializes a new instance of the StyleData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StyleData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StyleData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData.#ctor(System.String)"> <summary> Initializes a new instance of the StyleData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData"> <summary> <para>Color Transform Sample Data.</para> <para>When the object is serialized out as xml, its qualified name is dgm:clrData.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataModel <dgm:dataModel></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData.#ctor"> <summary> Initializes a new instance of the ColorData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData.#ctor(System.String)"> <summary> Initializes a new instance of the ColorData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ColorData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Style"> <summary> <para>Shape Style.</para> <para>When the object is serialized out as xml, its qualified name is dgm:style.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.LineReference <a:lnRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FillReference <a:fillRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectReference <a:effectRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FontReference <a:fontRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Style.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Style.#ctor"> <summary> Initializes a new instance of the Style class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Style.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Style class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Style.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Style class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Style.#ctor(System.String)"> <summary> Initializes a new instance of the Style class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Style.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Style.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Style.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Style.LineReference"> <summary> <para> LineReference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Style.FillReference"> <summary> <para> FillReference.</para> <para>Represents the element tag in schema: a:fillRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Style.EffectReference"> <summary> <para> EffectReference.</para> <para>Represents the element tag in schema: a:effectRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Style.FontReference"> <summary> <para> Font Reference.</para> <para>Represents the element tag in schema: a:fontRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.OrganizationChart"> <summary> <para>Show Organization Chart User Interface.</para> <para>When the object is serialized out as xml, its qualified name is dgm:orgChart.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.OrganizationChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.OrganizationChart.#ctor"> <summary> Initializes a new instance of the OrganizationChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.OrganizationChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.OrganizationChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.OrganizationChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.OrganizationChart.Val"> <summary> <para> Show Organization Chart User Interface Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.MaxNumberOfChildren"> <summary> <para>Maximum Children.</para> <para>When the object is serialized out as xml, its qualified name is dgm:chMax.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.MaxNumberOfChildren.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.MaxNumberOfChildren.#ctor"> <summary> Initializes a new instance of the MaxNumberOfChildren class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.MaxNumberOfChildren.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.MaxNumberOfChildren.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.MaxNumberOfChildren.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.MaxNumberOfChildren.Val"> <summary> <para> Maximum Children Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PreferredNumberOfChildren"> <summary> <para>Preferred Number of Children.</para> <para>When the object is serialized out as xml, its qualified name is dgm:chPref.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PreferredNumberOfChildren.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PreferredNumberOfChildren.#ctor"> <summary> Initializes a new instance of the PreferredNumberOfChildren class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PreferredNumberOfChildren.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PreferredNumberOfChildren.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PreferredNumberOfChildren.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PreferredNumberOfChildren.Val"> <summary> <para> Preferred Number of CHildren Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.BulletEnabled"> <summary> <para>Show Insert Bullet.</para> <para>When the object is serialized out as xml, its qualified name is dgm:bulletEnabled.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.BulletEnabled.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.BulletEnabled.#ctor"> <summary> Initializes a new instance of the BulletEnabled class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.BulletEnabled.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.BulletEnabled.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.BulletEnabled.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.BulletEnabled.Val"> <summary> <para> Show Insert Bullet Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Direction"> <summary> <para>Diagram Direction.</para> <para>When the object is serialized out as xml, its qualified name is dgm:dir.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Direction.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Direction.#ctor"> <summary> Initializes a new instance of the Direction class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Direction.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Direction.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Direction.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Direction.Val"> <summary> <para> Diagram Direction Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranch"> <summary> <para>Organization Chart Branch Style.</para> <para>When the object is serialized out as xml, its qualified name is dgm:hierBranch.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranch.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranch.#ctor"> <summary> Initializes a new instance of the HierarchyBranch class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranch.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranch.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranch.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranch.Val"> <summary> <para> Organization Chart Branch Style Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOne"> <summary> <para>One by One Animation String.</para> <para>When the object is serialized out as xml, its qualified name is dgm:animOne.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOne.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOne.#ctor"> <summary> Initializes a new instance of the AnimateOneByOne class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOne.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOne.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOne.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOne.Val"> <summary> <para> One By One Animation Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevel"> <summary> <para>Level Animation.</para> <para>When the object is serialized out as xml, its qualified name is dgm:animLvl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevel.#ctor"> <summary> Initializes a new instance of the AnimationLevel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevel.Val"> <summary> <para> Level Animation Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandles"> <summary> <para>Shape Resize Style.</para> <para>When the object is serialized out as xml, its qualified name is dgm:resizeHandles.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandles.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandles.#ctor"> <summary> Initializes a new instance of the ResizeHandles class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandles.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandles.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandles.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandles.Val"> <summary> <para> Shape Resize Style Type.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategory"> <summary> <para>Category.</para> <para>When the object is serialized out as xml, its qualified name is dgm:cat.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategory.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategory.#ctor"> <summary> Initializes a new instance of the StyleDisplayCategory class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategory.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategory.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategory.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategory.Type"> <summary> <para> Category Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategory.Priority"> <summary> <para> Priority.</para> <para>Represents the attribte in schema: pri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D"> <summary> <para>3-D Scene.</para> <para>When the object is serialized out as xml, its qualified name is dgm:scene3d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Camera <a:camera></description></item> <item><description>DocumentFormat.OpenXml.Drawing.LightRig <a:lightRig></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Backdrop <a:backdrop></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.#ctor"> <summary> Initializes a new instance of the Scene3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Scene3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Scene3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.#ctor(System.String)"> <summary> Initializes a new instance of the Scene3D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.Camera"> <summary> <para> Camera.</para> <para>Represents the element tag in schema: a:camera </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.LightRig"> <summary> <para> Light Rig.</para> <para>Represents the element tag in schema: a:lightRig </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.Backdrop"> <summary> <para> Backdrop Plane.</para> <para>Represents the element tag in schema: a:backdrop </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Scene3D.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D"> <summary> <para>3-D Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is dgm:sp3d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BevelTop <a:bevelT></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BevelBottom <a:bevelB></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtrusionColor <a:extrusionClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ContourColor <a:contourClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.#ctor"> <summary> Initializes a new instance of the Shape3D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape3D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.#ctor(System.String)"> <summary> Initializes a new instance of the Shape3D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.Z"> <summary> <para> Shape Depth.</para> <para>Represents the attribte in schema: z </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.ExtrusionHeight"> <summary> <para> Extrusion Height.</para> <para>Represents the attribte in schema: extrusionH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.ContourWidth"> <summary> <para> Contour Width.</para> <para>Represents the attribte in schema: contourW </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.PresetMaterial"> <summary> <para> Preset Material Type.</para> <para>Represents the attribte in schema: prstMaterial </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.BevelTop"> <summary> <para> Top Bevel.</para> <para>Represents the element tag in schema: a:bevelT </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.BevelBottom"> <summary> <para> Bottom Bevel.</para> <para>Represents the element tag in schema: a:bevelB </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.ExtrusionColor"> <summary> <para> Extrusion Color.</para> <para>Represents the element tag in schema: a:extrusionClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.ContourColor"> <summary> <para> Contour Color.</para> <para>Represents the element tag in schema: a:contourClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.Shape3D.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties"> <summary> <para>Text Properties.</para> <para>When the object is serialized out as xml, its qualified name is dgm:txPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FlatText <a:flatTx></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.#ctor"> <summary> Initializes a new instance of the TextProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.#ctor(System.String)"> <summary> Initializes a new instance of the TextProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.Shape3DType"> <summary> <para> Apply 3D shape properties.</para> <para>Represents the element tag in schema: a:sp3d </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextProperties.FlatText"> <summary> <para> No text in 3D scene.</para> <para>Represents the element tag in schema: a:flatTx </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionTitle"> <summary> <para>Title.</para> <para>When the object is serialized out as xml, its qualified name is dgm:title.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionTitle.#ctor"> <summary> Initializes a new instance of the StyleDefinitionTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionTitle.Language"> <summary> <para> Natural Language.</para> <para>Represents the attribte in schema: lang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionTitle.Val"> <summary> <para> Description Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabelDescription"> <summary> <para>Style Label Description.</para> <para>When the object is serialized out as xml, its qualified name is dgm:desc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabelDescription.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabelDescription.#ctor"> <summary> Initializes a new instance of the StyleLabelDescription class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabelDescription.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabelDescription.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabelDescription.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabelDescription.Language"> <summary> <para> Natural Language.</para> <para>Represents the attribte in schema: lang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabelDescription.Val"> <summary> <para> Description Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories"> <summary> <para>Category List.</para> <para>When the object is serialized out as xml, its qualified name is dgm:catLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StyleDisplayCategory <dgm:cat></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories.#ctor"> <summary> Initializes a new instance of the StyleDisplayCategories class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StyleDisplayCategories class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StyleDisplayCategories class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories.#ctor(System.String)"> <summary> Initializes a new instance of the StyleDisplayCategories class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleDisplayCategories.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel"> <summary> <para>Style Label.</para> <para>When the object is serialized out as xml, its qualified name is dgm:styleLbl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Scene3D <dgm:scene3d></description></item> <item><description>Shape3D <dgm:sp3d></description></item> <item><description>TextProperties <dgm:txPr></description></item> <item><description>Style <dgm:style></description></item> <item><description>ExtensionList <dgm:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.#ctor"> <summary> Initializes a new instance of the StyleLabel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StyleLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StyleLabel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.#ctor(System.String)"> <summary> Initializes a new instance of the StyleLabel class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.Name"> <summary> <para> Style Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.Scene3D"> <summary> <para> 3-D Scene.</para> <para>Represents the element tag in schema: dgm:scene3d </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.Shape3D"> <summary> <para> 3-D Shape Properties.</para> <para>Represents the element tag in schema: dgm:sp3d </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.TextProperties"> <summary> <para> Text Properties.</para> <para>Represents the element tag in schema: dgm:txPr </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.Style"> <summary> <para> Shape Style.</para> <para>Represents the element tag in schema: dgm:style </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.StyleLabel.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: dgm:extLst </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList"> <summary> <para>Defines the DataModelExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is dgm:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.DataModelExtension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList.#ctor"> <summary> Initializes a new instance of the DataModelExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataModelExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataModelExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the DataModelExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.DataModelExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet"> <summary> <para>Property Set.</para> <para>When the object is serialized out as xml, its qualified name is dgm:prSet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PresentationLayoutVariables <dgm:presLayoutVars></description></item> <item><description>Style <dgm:style></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.#ctor"> <summary> Initializes a new instance of the PropertySet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PropertySet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PropertySet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.#ctor(System.String)"> <summary> Initializes a new instance of the PropertySet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.PresentationElementId"> <summary> <para> Presentation Element Identifier.</para> <para>Represents the attribte in schema: presAssocID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.PresentationName"> <summary> <para> Presentation Name.</para> <para>Represents the attribte in schema: presName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.PresentationStyleLabel"> <summary> <para> Presentation Style Label.</para> <para>Represents the attribte in schema: presStyleLbl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.PresentationStyleIndex"> <summary> <para> Presentation Style Index.</para> <para>Represents the attribte in schema: presStyleIdx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.PresentationStyleCount"> <summary> <para> Presentation Style Count.</para> <para>Represents the attribte in schema: presStyleCnt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.LayoutTypeId"> <summary> <para> Current Diagram Type.</para> <para>Represents the attribte in schema: loTypeId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.LayoutCategoryId"> <summary> <para> Current Diagram Category.</para> <para>Represents the attribte in schema: loCatId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.QuickStyleTypeId"> <summary> <para> Current Style Type.</para> <para>Represents the attribte in schema: qsTypeId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.QuickStyleCategoryId"> <summary> <para> Current Style Category.</para> <para>Represents the attribte in schema: qsCatId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.ColorType"> <summary> <para> Color Transform Type Identifier.</para> <para>Represents the attribte in schema: csTypeId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.ColorCategoryId"> <summary> <para> Color Transform Category.</para> <para>Represents the attribte in schema: csCatId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.Coherent3D"> <summary> <para> Coherent 3D Behavior.</para> <para>Represents the attribte in schema: coherent3DOff </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.PlaceholderText"> <summary> <para> Placeholder Text.</para> <para>Represents the attribte in schema: phldrT </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.Placeholder"> <summary> <para> Placeholder.</para> <para>Represents the attribte in schema: phldr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.Rotation"> <summary> <para> Custom Rotation.</para> <para>Represents the attribte in schema: custAng </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.VerticalFlip"> <summary> <para> Custom Vertical Flip.</para> <para>Represents the attribte in schema: custFlipVert </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.HorizontalFlip"> <summary> <para> Custom Horizontal Flip.</para> <para>Represents the attribte in schema: custFlipHor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.FixedWidthOverride"> <summary> <para> Fixed Width Override.</para> <para>Represents the attribte in schema: custSzX </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.FixedHeightOverride"> <summary> <para> Fixed Height Override.</para> <para>Represents the attribte in schema: custSzY </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.WidthScale"> <summary> <para> Width Scale.</para> <para>Represents the attribte in schema: custScaleX </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.HightScale"> <summary> <para> Height Scale.</para> <para>Represents the attribte in schema: custScaleY </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.TextChanged"> <summary> <para> Text Changed.</para> <para>Represents the attribte in schema: custT </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.FactorWidth"> <summary> <para> Custom Factor Width.</para> <para>Represents the attribte in schema: custLinFactX </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.FactorHeight"> <summary> <para> Custom Factor Height.</para> <para>Represents the attribte in schema: custLinFactY </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.NeighborOffsetWidth"> <summary> <para> Neighbor Offset Width.</para> <para>Represents the attribte in schema: custLinFactNeighborX </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.NeighborOffsetHeight"> <summary> <para> Neighbor Offset Height.</para> <para>Represents the attribte in schema: custLinFactNeighborY </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.RadiusScale"> <summary> <para> Radius Scale.</para> <para>Represents the attribte in schema: custRadScaleRad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.IncludeAngleScale"> <summary> <para> Include Angle Scale.</para> <para>Represents the attribte in schema: custRadScaleInc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.PresentationLayoutVariables"> <summary> <para> Presentation Layout Variables.</para> <para>Represents the element tag in schema: dgm:presLayoutVars </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PropertySet.Style"> <summary> <para> Shape Style.</para> <para>Represents the element tag in schema: dgm:style </para> </summary> <remark> xmlns:dgm = http://schemas.openxmlformats.org/drawingml/2006/diagram </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties"> <summary> <para>Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is dgm:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody"> <summary> <para>Text Body.</para> <para>When the object is serialized out as xml, its qualified name is dgm:t.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BodyProperties <a:bodyPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ListStyle <a:lstStyle></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Paragraph <a:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.#ctor"> <summary> Initializes a new instance of the TextBody class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.#ctor(System.String)"> <summary> Initializes a new instance of the TextBody class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.BodyProperties"> <summary> <para> Body Properties.</para> <para>Represents the element tag in schema: a:bodyPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.TextBody.ListStyle"> <summary> <para> Text List Styles.</para> <para>Represents the element tag in schema: a:lstStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList"> <summary> <para>Defines the PtExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is dgm:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.PtExtension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList.#ctor"> <summary> Initializes a new instance of the PtExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PtExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the PtExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagrams.PtExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ColorApplicationMethodValues"> <summary> Color Application Method Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ColorApplicationMethodValues.Span"> <summary> Span. <para>When the item is serialized out as xml, its value is "span".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ColorApplicationMethodValues.Cycle"> <summary> Cycle. <para>When the item is serialized out as xml, its value is "cycle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ColorApplicationMethodValues.Repeat"> <summary> Repeat. <para>When the item is serialized out as xml, its value is "repeat".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.HueDirectionValues"> <summary> Hue Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HueDirectionValues.Clockwise"> <summary> Clockwise Hue Direction. <para>When the item is serialized out as xml, its value is "cw".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HueDirectionValues.Counterclockwise"> <summary> Counterclockwise Hue Direction. <para>When the item is serialized out as xml, its value is "ccw".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PointValues"> <summary> Point Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PointValues.Node"> <summary> Node. <para>When the item is serialized out as xml, its value is "node".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PointValues.Assistant"> <summary> Assistant Element. <para>When the item is serialized out as xml, its value is "asst".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PointValues.Document"> <summary> Document. <para>When the item is serialized out as xml, its value is "doc".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PointValues.Presentation"> <summary> Presentation. <para>When the item is serialized out as xml, its value is "pres".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PointValues.ParentTransition"> <summary> Parent Transition. <para>When the item is serialized out as xml, its value is "parTrans".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PointValues.SiblingTransition"> <summary> Sibling Transition. <para>When the item is serialized out as xml, its value is "sibTrans".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionValues"> <summary> Connection Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionValues.ParentOf"> <summary> Parent Of. <para>When the item is serialized out as xml, its value is "parOf".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionValues.PresentationOf"> <summary> Presentation Of. <para>When the item is serialized out as xml, its value is "presOf".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionValues.PresentationParentOf"> <summary> Presentation Parent Of. <para>When the item is serialized out as xml, its value is "presParOf".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectionValues.UnknownRelationship"> <summary> Unknown Relationship. <para>When the item is serialized out as xml, its value is "unknownRelationship".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.DirectionValues"> <summary> Diagram Direction Definition </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.DirectionValues.Normal"> <summary> Normal Direction. <para>When the item is serialized out as xml, its value is "norm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.DirectionValues.Reversed"> <summary> Reversed Direction. <para>When the item is serialized out as xml, its value is "rev".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranchStyleValues"> <summary> Hierarchy Branch Style Definition </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranchStyleValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranchStyleValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranchStyleValues.Hanging"> <summary> Hanging. <para>When the item is serialized out as xml, its value is "hang".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranchStyleValues.Standard"> <summary> Standard. <para>When the item is serialized out as xml, its value is "std".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyBranchStyleValues.Initial"> <summary> Initial. <para>When the item is serialized out as xml, its value is "init".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOneValues"> <summary> One by One Animation Value Definition </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOneValues.None"> <summary> Disable One-by-One. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOneValues.One"> <summary> One By One. <para>When the item is serialized out as xml, its value is "one".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AnimateOneByOneValues.Branch"> <summary> By Branch One By One. <para>When the item is serialized out as xml, its value is "branch".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevelStringValues"> <summary> Animation Level String Definition </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevelStringValues.None"> <summary> Disable Level At Once. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevelStringValues.Level"> <summary> By Level Animation. <para>When the item is serialized out as xml, its value is "lvl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AnimationLevelStringValues.Center"> <summary> From Center Animation. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandlesStringValues"> <summary> Resize Handle </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandlesStringValues.Exact"> <summary> Exact. <para>When the item is serialized out as xml, its value is "exact".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ResizeHandlesStringValues.Relative"> <summary> Relative. <para>When the item is serialized out as xml, its value is "rel".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues"> <summary> Algorithm Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.Composite"> <summary> Composite. <para>When the item is serialized out as xml, its value is "composite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.Connector"> <summary> Connector Algorithm. <para>When the item is serialized out as xml, its value is "conn".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.Cycle"> <summary> Cycle Algorithm. <para>When the item is serialized out as xml, its value is "cycle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.HierarchyChild"> <summary> Hierarchy Child Algorithm. <para>When the item is serialized out as xml, its value is "hierChild".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.HierarchyRoot"> <summary> Hierarchy Root Algorithm. <para>When the item is serialized out as xml, its value is "hierRoot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.Pyramid"> <summary> Pyramid Algorithm. <para>When the item is serialized out as xml, its value is "pyra".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.Linear"> <summary> Linear Algorithm. <para>When the item is serialized out as xml, its value is "lin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.Space"> <summary> Space Algorithm. <para>When the item is serialized out as xml, its value is "sp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.Text"> <summary> Text Algorithm. <para>When the item is serialized out as xml, its value is "tx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AlgorithmValues.Snake"> <summary> Snake Algorithm. <para>When the item is serialized out as xml, its value is "snake".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues"> <summary> Axis Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.Self"> <summary> Self. <para>When the item is serialized out as xml, its value is "self".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.Child"> <summary> Child. <para>When the item is serialized out as xml, its value is "ch".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.Descendant"> <summary> Descendant. <para>When the item is serialized out as xml, its value is "des".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.DescendantOrSelf"> <summary> Descendant or Self. <para>When the item is serialized out as xml, its value is "desOrSelf".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.Parent"> <summary> Parent. <para>When the item is serialized out as xml, its value is "par".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.Ancestor"> <summary> Ancestor. <para>When the item is serialized out as xml, its value is "ancst".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.AncestorOrSelf"> <summary> Ancestor or Self. <para>When the item is serialized out as xml, its value is "ancstOrSelf".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.FollowSibling"> <summary> Follow Sibling. <para>When the item is serialized out as xml, its value is "followSib".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.PrecedingSibling"> <summary> Preceding Sibling. <para>When the item is serialized out as xml, its value is "precedSib".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.Follow"> <summary> Follow. <para>When the item is serialized out as xml, its value is "follow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.Preceding"> <summary> Preceding. <para>When the item is serialized out as xml, its value is "preced".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.Root"> <summary> Root. <para>When the item is serialized out as xml, its value is "root".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AxisValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.BoolOperatorValues"> <summary> Boolean Constraint </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BoolOperatorValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BoolOperatorValues.Equal"> <summary> Equal. <para>When the item is serialized out as xml, its value is "equ".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BoolOperatorValues.GreaterThanOrEqualTo"> <summary> Greater Than or Equal to. <para>When the item is serialized out as xml, its value is "gte".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BoolOperatorValues.LessThanOrEqualTo"> <summary> Less Than or Equal to. <para>When the item is serialized out as xml, its value is "lte".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ChildOrderValues"> <summary> Child Order </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ChildOrderValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ChildOrderValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues"> <summary> Constraint Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.None"> <summary> Unknown. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.AlignmentOffset"> <summary> Alignment Offset. <para>When the item is serialized out as xml, its value is "alignOff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.BeginningMargin"> <summary> Beginning Margin. <para>When the item is serialized out as xml, its value is "begMarg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.BendingDistance"> <summary> Bending Distance. <para>When the item is serialized out as xml, its value is "bendDist".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.BeginningPadding"> <summary> Beginning Padding. <para>When the item is serialized out as xml, its value is "begPad".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.BottomMargin"> <summary> Bottom Margin. <para>When the item is serialized out as xml, its value is "bMarg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.BottomOffset"> <summary> Bottom Offset. <para>When the item is serialized out as xml, its value is "bOff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.CenterHeight"> <summary> Center Height. <para>When the item is serialized out as xml, its value is "ctrX".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.CenterXOffset"> <summary> Center X Offset. <para>When the item is serialized out as xml, its value is "ctrXOff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.CenterWidth"> <summary> Center Width. <para>When the item is serialized out as xml, its value is "ctrY".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.CenterYOffset"> <summary> Center Y Offset. <para>When the item is serialized out as xml, its value is "ctrYOff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.ConnectionDistance"> <summary> Connection Distance. <para>When the item is serialized out as xml, its value is "connDist".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.Diameter"> <summary> Diameter. <para>When the item is serialized out as xml, its value is "diam".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.EndMargin"> <summary> End Margin. <para>When the item is serialized out as xml, its value is "endMarg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.EndPadding"> <summary> End Padding. <para>When the item is serialized out as xml, its value is "endPad".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.Height"> <summary> Height. <para>When the item is serialized out as xml, its value is "h".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.ArrowheadHeight"> <summary> Arrowhead Height. <para>When the item is serialized out as xml, its value is "hArH".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.HeightOffset"> <summary> Height Offset. <para>When the item is serialized out as xml, its value is "hOff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.LeftMargin"> <summary> Left Margin. <para>When the item is serialized out as xml, its value is "lMarg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.LeftOffset"> <summary> Left Offset. <para>When the item is serialized out as xml, its value is "lOff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.RightMargin"> <summary> Right Margin. <para>When the item is serialized out as xml, its value is "rMarg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.RightOffset"> <summary> Right Offset. <para>When the item is serialized out as xml, its value is "rOff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.PrimaryFontSize"> <summary> Primary Font Size. <para>When the item is serialized out as xml, its value is "primFontSz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.PyramidAccentRatio"> <summary> Pyramid Accent Ratio. <para>When the item is serialized out as xml, its value is "pyraAcctRatio".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.SecondaryFontSize"> <summary> Secondary Font Size. <para>When the item is serialized out as xml, its value is "secFontSz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.SiblingSpacing"> <summary> Sibling Spacing. <para>When the item is serialized out as xml, its value is "sibSp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.SecondarySiblingSpacing"> <summary> Secondary Sibling Spacing. <para>When the item is serialized out as xml, its value is "secSibSp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.Spacing"> <summary> Spacing. <para>When the item is serialized out as xml, its value is "sp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.StemThickness"> <summary> Stem Thickness. <para>When the item is serialized out as xml, its value is "stemThick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.TopMargin"> <summary> Top Margin. <para>When the item is serialized out as xml, its value is "tMarg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.TopOffset"> <summary> Top Offset. <para>When the item is serialized out as xml, its value is "tOff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedA"> <summary> User Defined A. <para>When the item is serialized out as xml, its value is "userA".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedB"> <summary> User Defined B. <para>When the item is serialized out as xml, its value is "userB".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedC"> <summary> User Defined C. <para>When the item is serialized out as xml, its value is "userC".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedD"> <summary> User Defined D. <para>When the item is serialized out as xml, its value is "userD".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedE"> <summary> User Defined E. <para>When the item is serialized out as xml, its value is "userE".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedF"> <summary> User Defined F. <para>When the item is serialized out as xml, its value is "userF".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedG"> <summary> User Defined G. <para>When the item is serialized out as xml, its value is "userG".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedH"> <summary> User Defined H. <para>When the item is serialized out as xml, its value is "userH".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedI"> <summary> User Defined I. <para>When the item is serialized out as xml, its value is "userI".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedJ"> <summary> User Defined J. <para>When the item is serialized out as xml, its value is "userJ".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedK"> <summary> User Defined K. <para>When the item is serialized out as xml, its value is "userK".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedL"> <summary> User Defined L. <para>When the item is serialized out as xml, its value is "userL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedM"> <summary> User Defined M. <para>When the item is serialized out as xml, its value is "userM".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedN"> <summary> User Defined N. <para>When the item is serialized out as xml, its value is "userN".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedO"> <summary> User Defined O. <para>When the item is serialized out as xml, its value is "userO".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedP"> <summary> User Defined P. <para>When the item is serialized out as xml, its value is "userP".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedQ"> <summary> User Defined Q. <para>When the item is serialized out as xml, its value is "userQ".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedR"> <summary> User Defined R. <para>When the item is serialized out as xml, its value is "userR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedS"> <summary> User Defined S. <para>When the item is serialized out as xml, its value is "userS".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedT"> <summary> User Defined T. <para>When the item is serialized out as xml, its value is "userT".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedU"> <summary> User Defined U. <para>When the item is serialized out as xml, its value is "userU".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedV"> <summary> User Defined V. <para>When the item is serialized out as xml, its value is "userV".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedW"> <summary> User Defined W. <para>When the item is serialized out as xml, its value is "userW".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedX"> <summary> User Defined X. <para>When the item is serialized out as xml, its value is "userX".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedY"> <summary> User Defined Y. <para>When the item is serialized out as xml, its value is "userY".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.UserDefinedZ"> <summary> User Defined Z. <para>When the item is serialized out as xml, its value is "userZ".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.Width"> <summary> Width. <para>When the item is serialized out as xml, its value is "w".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.ArrowheadWidth"> <summary> Arrowhead Width. <para>When the item is serialized out as xml, its value is "wArH".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintValues.WidthOffset"> <summary> Width Offset. <para>When the item is serialized out as xml, its value is "wOff".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintRelationshipValues"> <summary> Constraint Relationship </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintRelationshipValues.Self"> <summary> Self. <para>When the item is serialized out as xml, its value is "self".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintRelationshipValues.Child"> <summary> Child. <para>When the item is serialized out as xml, its value is "ch".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConstraintRelationshipValues.Descendant"> <summary> Descendant. <para>When the item is serialized out as xml, its value is "des".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues"> <summary> Element Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.All"> <summary> All. <para>When the item is serialized out as xml, its value is "all".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.Document"> <summary> Document. <para>When the item is serialized out as xml, its value is "doc".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.Node"> <summary> Node. <para>When the item is serialized out as xml, its value is "node".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.Normal"> <summary> Normal. <para>When the item is serialized out as xml, its value is "norm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.NonNormal"> <summary> Non Normal. <para>When the item is serialized out as xml, its value is "nonNorm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.Assistant"> <summary> Assistant. <para>When the item is serialized out as xml, its value is "asst".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.NonAssistant"> <summary> Non Assistant. <para>When the item is serialized out as xml, its value is "nonAsst".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.ParentTransition"> <summary> Parent Transition. <para>When the item is serialized out as xml, its value is "parTrans".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.Presentation"> <summary> Presentation. <para>When the item is serialized out as xml, its value is "pres".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ElementValues.SiblingTransition"> <summary> Sibling Transition. <para>When the item is serialized out as xml, its value is "sibTrans".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues"> <summary> Parameter Identifier </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.HorizontalAlignment"> <summary> Horizontal Alignment. <para>When the item is serialized out as xml, its value is "horzAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.VerticalAlignment"> <summary> Vertical Alignment. <para>When the item is serialized out as xml, its value is "vertAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ChildDirection"> <summary> Child Direction. <para>When the item is serialized out as xml, its value is "chDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ChildAlignment"> <summary> Child Alignment. <para>When the item is serialized out as xml, its value is "chAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.SecondaryChildAlignment"> <summary> Secondary Child Alignment. <para>When the item is serialized out as xml, its value is "secChAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.LinearDirection"> <summary> Linear Direction. <para>When the item is serialized out as xml, its value is "linDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.SecondaryLinearDirection"> <summary> Secondary Linear Direction. <para>When the item is serialized out as xml, its value is "secLinDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.StartElement"> <summary> Start Element. <para>When the item is serialized out as xml, its value is "stElem".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.BendPoint"> <summary> Bend Point. <para>When the item is serialized out as xml, its value is "bendPt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ConnectionRoute"> <summary> Connection Route. <para>When the item is serialized out as xml, its value is "connRout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.BeginningArrowheadStyle"> <summary> Beginning Arrowhead Style. <para>When the item is serialized out as xml, its value is "begSty".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.EndStyle"> <summary> End Style. <para>When the item is serialized out as xml, its value is "endSty".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ConnectorDimension"> <summary> Connector Dimension. <para>When the item is serialized out as xml, its value is "dim".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.RotationPath"> <summary> Rotation Path. <para>When the item is serialized out as xml, its value is "rotPath".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.CenterShapeMapping"> <summary> Center Shape Mapping. <para>When the item is serialized out as xml, its value is "ctrShpMap".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.NodeHorizontalAlignment"> <summary> Node Horizontal Alignment. <para>When the item is serialized out as xml, its value is "nodeHorzAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.NodeVerticalAlignment"> <summary> Node Vertical Alignment. <para>When the item is serialized out as xml, its value is "nodeVertAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.FallbackScale"> <summary> Fallback Scale. <para>When the item is serialized out as xml, its value is "fallback".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.TextDirection"> <summary> Text Direction. <para>When the item is serialized out as xml, its value is "txDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.PyramidAccentPosition"> <summary> Pyramid Accent Position. <para>When the item is serialized out as xml, its value is "pyraAcctPos".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.PyramidAccentTextMargin"> <summary> Pyramid Accent Text Margin. <para>When the item is serialized out as xml, its value is "pyraAcctTxMar".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.TextBlockDirection"> <summary> Text Block Direction. <para>When the item is serialized out as xml, its value is "txBlDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.TextAnchorHorizontal"> <summary> Text Anchor Horizontal. <para>When the item is serialized out as xml, its value is "txAnchorHorz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.TextAnchorVertical"> <summary> Text Anchor Vertical. <para>When the item is serialized out as xml, its value is "txAnchorVert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.TextAnchorHorizontalWithChildren"> <summary> Text Anchor Horizontal With Children. <para>When the item is serialized out as xml, its value is "txAnchorHorzCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.TextAnchorVerticalWithChildren"> <summary> Text Anchor Vertical With Children. <para>When the item is serialized out as xml, its value is "txAnchorVertCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ParentTextLeftToRightAlignment"> <summary> Parent Text Left-to-Right Alignment. <para>When the item is serialized out as xml, its value is "parTxLTRAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ParentTextRightToLeftAlignment"> <summary> Parent Text Right-to-Left Alignment. <para>When the item is serialized out as xml, its value is "parTxRTLAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ShapeTextLeftToRightAlignment"> <summary> Shape Text Left-to-Right Alignment. <para>When the item is serialized out as xml, its value is "shpTxLTRAlignCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ShapeTextRightToLeftAlignment"> <summary> Shape Text Right-to-Left Alignment. <para>When the item is serialized out as xml, its value is "shpTxRTLAlignCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.AutoTextRotation"> <summary> Auto Text Rotation. <para>When the item is serialized out as xml, its value is "autoTxRot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.GrowDirection"> <summary> Grow Direction. <para>When the item is serialized out as xml, its value is "grDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.FlowDirection"> <summary> Flow Direction. <para>When the item is serialized out as xml, its value is "flowDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.ContinueDirection"> <summary> Continue Direction. <para>When the item is serialized out as xml, its value is "contDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.Breakpoint"> <summary> Breakpoint. <para>When the item is serialized out as xml, its value is "bkpt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.Offset"> <summary> Offset. <para>When the item is serialized out as xml, its value is "off".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.HierarchyAlignment"> <summary> Hierarchy Alignment. <para>When the item is serialized out as xml, its value is "hierAlign".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.BreakpointFixedValue"> <summary> Breakpoint Fixed Value. <para>When the item is serialized out as xml, its value is "bkPtFixedVal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.StartBulletsAtLevel"> <summary> Start Bullets At Level. <para>When the item is serialized out as xml, its value is "stBulletLvl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.StartAngle"> <summary> Start Angle. <para>When the item is serialized out as xml, its value is "stAng".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.SpanAngle"> <summary> Span Angle. <para>When the item is serialized out as xml, its value is "spanAng".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.AspectRatio"> <summary> Aspect Ratio. <para>When the item is serialized out as xml, its value is "ar".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.LineSpacingParent"> <summary> Line Spacing Parent. <para>When the item is serialized out as xml, its value is "lnSpPar".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.LineSpacingAfterParentParagraph"> <summary> Line Spacing After Parent Paragraph. <para>When the item is serialized out as xml, its value is "lnSpAfParP".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.LineSpacingChildren"> <summary> Line Spacing Children. <para>When the item is serialized out as xml, its value is "lnSpCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.LineSpacingAfterChildrenParagraph"> <summary> Line Spacing After Children Paragraph. <para>When the item is serialized out as xml, its value is "lnSpAfChP".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.RouteShortestDistance"> <summary> Route Shortest Distance. <para>When the item is serialized out as xml, its value is "rtShortDist".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.TextAlignment"> <summary> Text Alignment. <para>When the item is serialized out as xml, its value is "alignTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.PyramidLevelNode"> <summary> Pyramid Level Node. <para>When the item is serialized out as xml, its value is "pyraLvlNode".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.PyramidAccentBackgroundNode"> <summary> Pyramid Accent Background Node. <para>When the item is serialized out as xml, its value is "pyraAcctBkgdNode".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.PyramidAccentTextNode"> <summary> Pyramid Accent Text Node. <para>When the item is serialized out as xml, its value is "pyraAcctTxNode".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.SourceNode"> <summary> Source Node. <para>When the item is serialized out as xml, its value is "srcNode".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.DestinationNode"> <summary> Destination Node. <para>When the item is serialized out as xml, its value is "dstNode".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.BeginningPoints"> <summary> Beginning Points. <para>When the item is serialized out as xml, its value is "begPts".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ParameterIdValues.EndPoints"> <summary> End Points. <para>When the item is serialized out as xml, its value is "endPts".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues"> <summary> Function Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues.Count"> <summary> Count. <para>When the item is serialized out as xml, its value is "cnt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues.Position"> <summary> Position. <para>When the item is serialized out as xml, its value is "pos".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues.ReversePosition"> <summary> Reverse Position. <para>When the item is serialized out as xml, its value is "revPos".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues.PositionEven"> <summary> Position Even. <para>When the item is serialized out as xml, its value is "posEven".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues.PositionOdd"> <summary> Position Odd. <para>When the item is serialized out as xml, its value is "posOdd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues.Variable"> <summary> Variable. <para>When the item is serialized out as xml, its value is "var".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues.Depth"> <summary> Depth. <para>When the item is serialized out as xml, its value is "depth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionValues.MaxDepth"> <summary> Max Depth. <para>When the item is serialized out as xml, its value is "maxDepth".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionOperatorValues"> <summary> Function Operator </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionOperatorValues.Equal"> <summary> Equal. <para>When the item is serialized out as xml, its value is "equ".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionOperatorValues.NotEqualTo"> <summary> Not Equal To. <para>When the item is serialized out as xml, its value is "neq".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionOperatorValues.GreaterThan"> <summary> Greater Than. <para>When the item is serialized out as xml, its value is "gt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionOperatorValues.LessThan"> <summary> Less Than. <para>When the item is serialized out as xml, its value is "lt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionOperatorValues.GreaterThanOrEqualTo"> <summary> Greater Than or Equal to. <para>When the item is serialized out as xml, its value is "gte".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FunctionOperatorValues.LessThanOrEqualTo"> <summary> Less Than or Equal to. <para>When the item is serialized out as xml, its value is "lte".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.HorizontalAlignmentValues"> <summary> Horizontal Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HorizontalAlignmentValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HorizontalAlignmentValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HorizontalAlignmentValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HorizontalAlignmentValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ChildDirectionValues"> <summary> Child Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ChildDirectionValues.Horizontal"> <summary> Horizontal. <para>When the item is serialized out as xml, its value is "horz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ChildDirectionValues.Vertical"> <summary> Vertical. <para>When the item is serialized out as xml, its value is "vert".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ChildAlignmentValues"> <summary> Child Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ChildAlignmentValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ChildAlignmentValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ChildAlignmentValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ChildAlignmentValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryChildAlignmentValues"> <summary> Secondary Child Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryChildAlignmentValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryChildAlignmentValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryChildAlignmentValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryChildAlignmentValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryChildAlignmentValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.LinearDirectionValues"> <summary> Linear Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.LinearDirectionValues.FromLeft"> <summary> From Left. <para>When the item is serialized out as xml, its value is "fromL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.LinearDirectionValues.FromRight"> <summary> From Right. <para>When the item is serialized out as xml, its value is "fromR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.LinearDirectionValues.FromTop"> <summary> From Top. <para>When the item is serialized out as xml, its value is "fromT".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.LinearDirectionValues.FromBottom"> <summary> From Bottom. <para>When the item is serialized out as xml, its value is "fromB".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryLinearDirectionValues"> <summary> Secondary Linear Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryLinearDirectionValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryLinearDirectionValues.FromLeft"> <summary> From Left. <para>When the item is serialized out as xml, its value is "fromL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryLinearDirectionValues.FromRight"> <summary> From Right. <para>When the item is serialized out as xml, its value is "fromR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryLinearDirectionValues.FromTop"> <summary> From Top. <para>When the item is serialized out as xml, its value is "fromT".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.SecondaryLinearDirectionValues.FromBottom"> <summary> From Bottom. <para>When the item is serialized out as xml, its value is "fromB".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.StartingElementValues"> <summary> Starting Element </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.StartingElementValues.Node"> <summary> Node. <para>When the item is serialized out as xml, its value is "node".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.StartingElementValues.Transition"> <summary> Transition. <para>When the item is serialized out as xml, its value is "trans".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.RotationPathValues"> <summary> Rotation Path </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.RotationPathValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.RotationPathValues.AlongPath"> <summary> Along Path. <para>When the item is serialized out as xml, its value is "alongPath".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.CenterShapeMappingValues"> <summary> Center Shape Mapping </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.CenterShapeMappingValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.CenterShapeMappingValues.FirstNode"> <summary> First Node. <para>When the item is serialized out as xml, its value is "fNode".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.BendPointValues"> <summary> Bend Point </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BendPointValues.Beginning"> <summary> Beginning. <para>When the item is serialized out as xml, its value is "beg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BendPointValues.Default"> <summary> Default. <para>When the item is serialized out as xml, its value is "def".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BendPointValues.End"> <summary> End. <para>When the item is serialized out as xml, its value is "end".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorRoutingValues"> <summary> Connector Routing </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorRoutingValues.Straight"> <summary> Straight. <para>When the item is serialized out as xml, its value is "stra".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorRoutingValues.Bending"> <summary> Bending. <para>When the item is serialized out as xml, its value is "bend".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorRoutingValues.Curve"> <summary> Curve. <para>When the item is serialized out as xml, its value is "curve".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorRoutingValues.LongCurve"> <summary> Long Curve. <para>When the item is serialized out as xml, its value is "longCurve".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ArrowheadStyleValues"> <summary> Arrowhead Styles </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ArrowheadStyleValues.Auto"> <summary> Auto. <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ArrowheadStyleValues.Arrow"> <summary> Arrowhead Present. <para>When the item is serialized out as xml, its value is "arr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ArrowheadStyleValues.NoArrow"> <summary> No Arrowhead. <para>When the item is serialized out as xml, its value is "noArr".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorDimensionValues"> <summary> Connector Dimension </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorDimensionValues.OneDimension"> <summary> 1 Dimension. <para>When the item is serialized out as xml, its value is "1D".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorDimensionValues.TwoDimension"> <summary> 2 Dimensions. <para>When the item is serialized out as xml, its value is "2D".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorDimensionValues.Custom"> <summary> Custom. <para>When the item is serialized out as xml, its value is "cust".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues"> <summary> Connector Point </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.Auto"> <summary> Auto. <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.BottomCenter"> <summary> Bottom Center. <para>When the item is serialized out as xml, its value is "bCtr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.MiddleLeft"> <summary> Middle Left. <para>When the item is serialized out as xml, its value is "midL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.MiddleRight"> <summary> Middle Right. <para>When the item is serialized out as xml, its value is "midR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.TopCenter"> <summary> Top Center. <para>When the item is serialized out as xml, its value is "tCtr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.BottomLeft"> <summary> Bottom Left. <para>When the item is serialized out as xml, its value is "bL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.BottomRight"> <summary> Bottom Right. <para>When the item is serialized out as xml, its value is "bR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.TopLeft"> <summary> Top Left. <para>When the item is serialized out as xml, its value is "tL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.TopRight"> <summary> Top Right. <para>When the item is serialized out as xml, its value is "tR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ConnectorPointValues.Radial"> <summary> Radial. <para>When the item is serialized out as xml, its value is "radial".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.NodeHorizontalAlignmentValues"> <summary> Node Horizontal Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.NodeHorizontalAlignmentValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.NodeHorizontalAlignmentValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.NodeHorizontalAlignmentValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.NodeVerticalAlignmentValues"> <summary> Node Vertical Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.NodeVerticalAlignmentValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.NodeVerticalAlignmentValues.Middle"> <summary> Middle. <para>When the item is serialized out as xml, its value is "mid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.NodeVerticalAlignmentValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.FallbackDimensionValues"> <summary> Fallback Dimension </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FallbackDimensionValues.OneDimension"> <summary> 1 Dimension. <para>When the item is serialized out as xml, its value is "1D".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FallbackDimensionValues.TwoDimension"> <summary> 2 Dimensions. <para>When the item is serialized out as xml, its value is "2D".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextDirectionValues"> <summary> Text Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextDirectionValues.FromTop"> <summary> From Top. <para>When the item is serialized out as xml, its value is "fromT".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextDirectionValues.FromBottom"> <summary> From Bottom. <para>When the item is serialized out as xml, its value is "fromB".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PyramidAccentPositionValues"> <summary> Pyramid Accent Position </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PyramidAccentPositionValues.Before"> <summary> Before. <para>When the item is serialized out as xml, its value is "bef".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PyramidAccentPositionValues.After"> <summary> Pyramid Accent After. <para>When the item is serialized out as xml, its value is "aft".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.PyramidAccentTextMarginValues"> <summary> Pyramid Accent Text Margin </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PyramidAccentTextMarginValues.Step"> <summary> Step. <para>When the item is serialized out as xml, its value is "step".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.PyramidAccentTextMarginValues.Stack"> <summary> Stack. <para>When the item is serialized out as xml, its value is "stack".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextBlockDirectionValues"> <summary> Text Block Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextBlockDirectionValues.Horizontal"> <summary> Horizontal. <para>When the item is serialized out as xml, its value is "horz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextBlockDirectionValues.Vertical"> <summary> Vertical Direction. <para>When the item is serialized out as xml, its value is "vert".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextAnchorHorizontalValues"> <summary> Text Anchor Horizontal </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextAnchorHorizontalValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextAnchorHorizontalValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextAnchorVerticalValues"> <summary> Text Anchor Vertical </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextAnchorVerticalValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextAnchorVerticalValues.Middle"> <summary> Middle. <para>When the item is serialized out as xml, its value is "mid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextAnchorVerticalValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.TextAlignmentValues"> <summary> Text Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextAlignmentValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextAlignmentValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.TextAlignmentValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.AutoTextRotationValues"> <summary> Auto Text Rotation </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AutoTextRotationValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AutoTextRotationValues.Upright"> <summary> Upright. <para>When the item is serialized out as xml, its value is "upr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.AutoTextRotationValues.Gravity"> <summary> Gravity. <para>When the item is serialized out as xml, its value is "grav".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.GrowDirectionValues"> <summary> Grow Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.GrowDirectionValues.TopLeft"> <summary> Top Left. <para>When the item is serialized out as xml, its value is "tL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.GrowDirectionValues.TopRight"> <summary> Top Right. <para>When the item is serialized out as xml, its value is "tR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.GrowDirectionValues.BottomLeft"> <summary> Bottom Left. <para>When the item is serialized out as xml, its value is "bL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.GrowDirectionValues.BottomRight"> <summary> Bottom Right. <para>When the item is serialized out as xml, its value is "bR".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.FlowDirectionValues"> <summary> Flow Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FlowDirectionValues.Row"> <summary> Row. <para>When the item is serialized out as xml, its value is "row".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.FlowDirectionValues.Column"> <summary> Column. <para>When the item is serialized out as xml, its value is "col".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.ContinueDirectionValues"> <summary> Continue Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ContinueDirectionValues.ReverseDirection"> <summary> Reverse Direction. <para>When the item is serialized out as xml, its value is "revDir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.ContinueDirectionValues.SameDirection"> <summary> Same Direction. <para>When the item is serialized out as xml, its value is "sameDir".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.BreakpointValues"> <summary> Breakpoint </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BreakpointValues.EndCanvas"> <summary> End of Canvas. <para>When the item is serialized out as xml, its value is "endCnv".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BreakpointValues.Balanced"> <summary> Balanced. <para>When the item is serialized out as xml, its value is "bal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.BreakpointValues.Fixed"> <summary> Fixed. <para>When the item is serialized out as xml, its value is "fixed".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.OffsetValues"> <summary> Offset </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.OffsetValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.OffsetValues.Offset"> <summary> Offset. <para>When the item is serialized out as xml, its value is "off".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues"> <summary> Hierarchy Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.TopLeft"> <summary> Top Left. <para>When the item is serialized out as xml, its value is "tL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.TopRight"> <summary> Top Right. <para>When the item is serialized out as xml, its value is "tR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.TopCenterChildren"> <summary> Top Center Children. <para>When the item is serialized out as xml, its value is "tCtrCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.TopCenterDescendants"> <summary> Top Center Descendants. <para>When the item is serialized out as xml, its value is "tCtrDes".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.BottomLeft"> <summary> Bottom Left. <para>When the item is serialized out as xml, its value is "bL".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.BottomRight"> <summary> Bottom Right. <para>When the item is serialized out as xml, its value is "bR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.BottomCenterChild"> <summary> Bottom Center Child. <para>When the item is serialized out as xml, its value is "bCtrCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.BottomCenterDescendant"> <summary> Bottom Center Descendant. <para>When the item is serialized out as xml, its value is "bCtrDes".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.LeftTop"> <summary> Left Top. <para>When the item is serialized out as xml, its value is "lT".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.LeftBottom"> <summary> Left Bottom. <para>When the item is serialized out as xml, its value is "lB".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.LeftCenterChild"> <summary> Left Center Child. <para>When the item is serialized out as xml, its value is "lCtrCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.LeftCenterDescendant"> <summary> Left Center Descendant. <para>When the item is serialized out as xml, its value is "lCtrDes".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.RightTop"> <summary> Right Top. <para>When the item is serialized out as xml, its value is "rT".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.RightBottom"> <summary> Right Bottom. <para>When the item is serialized out as xml, its value is "rB".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.RightCenterChildren"> <summary> Right Center Children. <para>When the item is serialized out as xml, its value is "rCtrCh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.HierarchyAlignmentValues.RightCenterDescendants"> <summary> Right Center Descendants. <para>When the item is serialized out as xml, its value is "rCtrDes".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues"> <summary> Variable Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.None"> <summary> Unknown. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.OrganizationalChart"> <summary> Organizational Chart Algorithm. <para>When the item is serialized out as xml, its value is "orgChart".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.ChildMax"> <summary> Child Max. <para>When the item is serialized out as xml, its value is "chMax".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.ChildPreference"> <summary> Child Preference. <para>When the item is serialized out as xml, its value is "chPref".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.BulletsEnabled"> <summary> Bullets Enabled. <para>When the item is serialized out as xml, its value is "bulEnabled".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.Direction"> <summary> Direction. <para>When the item is serialized out as xml, its value is "dir".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.HierarchyBranch"> <summary> Hierarchy Branch. <para>When the item is serialized out as xml, its value is "hierBranch".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.AnimateOne"> <summary> Animate One. <para>When the item is serialized out as xml, its value is "animOne".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.AnimationLevel"> <summary> Animation Level. <para>When the item is serialized out as xml, its value is "animLvl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VariableValues.ResizeHandles"> <summary> Resize Handles. <para>When the item is serialized out as xml, its value is "resizeHandles".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.OutputShapeValues"> <summary> Output Shape Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.OutputShapeValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.OutputShapeValues.Connection"> <summary> Connection. <para>When the item is serialized out as xml, its value is "conn".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagrams.VerticalAlignmentValues"> <summary> Vertical Alignment </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VerticalAlignmentValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VerticalAlignmentValues.Middle"> <summary> Middle. <para>When the item is serialized out as xml, its value is "mid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VerticalAlignmentValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VerticalAlignmentValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VerticalAlignmentValues.Top2010"> <summary> top. <para>When the item is serialized out as xml, its value is "top".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VerticalAlignmentValues.Middle2010"> <summary> center. <para>When the item is serialized out as xml, its value is "center".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Diagrams.VerticalAlignmentValues.Bottom2010"> <summary> bottom. <para>When the item is serialized out as xml, its value is "bottom".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas"> <summary> <para>Locked Canvas Container.</para> <para>When the object is serialized out as xml, its qualified name is lc:lockedCanvas.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties <a:nvGrpSpPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties <a:grpSpPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.TextShape <a:txSp></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape <a:sp></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ConnectionShape <a:cxnSp></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Picture <a:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart <a14:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GraphicFrame <a:graphicFrame></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupShape <a:grpSp></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.#ctor"> <summary> Initializes a new instance of the LockedCanvas class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LockedCanvas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LockedCanvas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.#ctor(System.String)"> <summary> Initializes a new instance of the LockedCanvas class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.NonVisualGroupShapeProperties"> <summary> <para> Non-Visual Properties for a Group Shape.</para> <para>Represents the element tag in schema: a:nvGrpSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas.VisualGroupShapeProperties"> <summary> <para> Visual Group Shape Properties.</para> <para>Represents the element tag in schema: a:grpSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AudioFromCD"> <summary> <para>Audio from CD.</para> <para>When the object is serialized out as xml, its qualified name is a:audioCd.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StartTime <a:st></description></item> <item><description>EndTime <a:end></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromCD.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromCD.#ctor"> <summary> Initializes a new instance of the AudioFromCD class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromCD.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AudioFromCD class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromCD.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AudioFromCD class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromCD.#ctor(System.String)"> <summary> Initializes a new instance of the AudioFromCD class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromCD.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromCD.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromCD.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromCD.StartTime"> <summary> <para> Audio Start Time.</para> <para>Represents the element tag in schema: a:st </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromCD.EndTime"> <summary> <para> Audio End Time.</para> <para>Represents the element tag in schema: a:end </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromCD.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.WaveAudioFile"> <summary> <para>Audio from WAV File.</para> <para>When the object is serialized out as xml, its qualified name is a:wavAudioFile.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EmbeddedWavAudioFileType"> <summary> Defines the EmbeddedWavAudioFileType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EmbeddedWavAudioFileType.#ctor"> <summary> Initializes a new instance of the EmbeddedWavAudioFileType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EmbeddedWavAudioFileType.Embed"> <summary> <para> Embedded Audio File Relationship ID.</para> <para>Represents the attribte in schema: r:embed </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EmbeddedWavAudioFileType.Name"> <summary> <para> Sound Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EmbeddedWavAudioFileType.BuiltIn"> <summary> <para> Recognized Built-In Sound.</para> <para>Represents the attribte in schema: builtIn </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WaveAudioFile.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WaveAudioFile.#ctor"> <summary> Initializes a new instance of the WaveAudioFile class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WaveAudioFile.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.WaveAudioFile.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.WaveAudioFile.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HyperlinkSound"> <summary> <para>Hyperlink Sound.</para> <para>When the object is serialized out as xml, its qualified name is a:snd.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkSound.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkSound.#ctor"> <summary> Initializes a new instance of the HyperlinkSound class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkSound.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkSound.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkSound.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AudioFromFile"> <summary> <para>Audio from File.</para> <para>When the object is serialized out as xml, its qualified name is a:audioFile.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromFile.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromFile.#ctor"> <summary> Initializes a new instance of the AudioFromFile class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromFile.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AudioFromFile class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromFile.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AudioFromFile class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromFile.#ctor(System.String)"> <summary> Initializes a new instance of the AudioFromFile class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioFromFile.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromFile.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromFile.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromFile.Link"> <summary> <para> Linked Relationship ID.</para> <para>Represents the attribte in schema: r:link </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioFromFile.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.VideoFromFile"> <summary> <para>Video from File.</para> <para>When the object is serialized out as xml, its qualified name is a:videoFile.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VideoFromFile.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VideoFromFile.#ctor"> <summary> Initializes a new instance of the VideoFromFile class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VideoFromFile.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VideoFromFile class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VideoFromFile.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VideoFromFile class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VideoFromFile.#ctor(System.String)"> <summary> Initializes a new instance of the VideoFromFile class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VideoFromFile.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.VideoFromFile.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.VideoFromFile.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.VideoFromFile.Link"> <summary> <para> Linked Relationship ID.</para> <para>Represents the attribte in schema: r:link </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.VideoFromFile.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile"> <summary> <para>QuickTime from File.</para> <para>When the object is serialized out as xml, its qualified name is a:quickTimeFile.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.#ctor"> <summary> Initializes a new instance of the QuickTimeFromFile class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QuickTimeFromFile class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QuickTimeFromFile class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.#ctor(System.String)"> <summary> Initializes a new instance of the QuickTimeFromFile class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.Link"> <summary> <para> Linked Relationship ID.</para> <para>Represents the attribte in schema: r:link </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.QuickTimeFromFile.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Tint"> <summary> <para>Tint.</para> <para>When the object is serialized out as xml, its qualified name is a:tint.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PositiveFixedPercentageType"> <summary> Defines the PositiveFixedPercentageType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PositiveFixedPercentageType.#ctor"> <summary> Initializes a new instance of the PositiveFixedPercentageType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PositiveFixedPercentageType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Tint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Tint.#ctor"> <summary> Initializes a new instance of the Tint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Tint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Shade"> <summary> <para>Shade.</para> <para>When the object is serialized out as xml, its qualified name is a:shade.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shade.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shade.#ctor"> <summary> Initializes a new instance of the Shade class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shade.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shade.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shade.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Alpha"> <summary> <para>Alpha.</para> <para>When the object is serialized out as xml, its qualified name is a:alpha.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Alpha.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Alpha.#ctor"> <summary> Initializes a new instance of the Alpha class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Alpha.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Alpha.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Alpha.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Complement"> <summary> <para>Complement.</para> <para>When the object is serialized out as xml, its qualified name is a:comp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Complement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Complement.#ctor"> <summary> Initializes a new instance of the Complement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Complement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Complement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Complement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Inverse"> <summary> <para>Inverse.</para> <para>When the object is serialized out as xml, its qualified name is a:inv.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Inverse.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Inverse.#ctor"> <summary> Initializes a new instance of the Inverse class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Inverse.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Inverse.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Inverse.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Gray"> <summary> <para>Gray.</para> <para>When the object is serialized out as xml, its qualified name is a:gray.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Gray.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Gray.#ctor"> <summary> Initializes a new instance of the Gray class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Gray.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Gray.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Gray.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaOffset"> <summary> <para>Alpha Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaOffset.#ctor"> <summary> Initializes a new instance of the AlphaOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaOffset.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaModulation"> <summary> <para>Alpha Modulation.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaMod.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PositivePercentageType"> <summary> Defines the PositivePercentageType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PositivePercentageType.#ctor"> <summary> Initializes a new instance of the PositivePercentageType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PositivePercentageType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulation.#ctor"> <summary> Initializes a new instance of the AlphaModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HueModulation"> <summary> <para>Hue Modulate.</para> <para>When the object is serialized out as xml, its qualified name is a:hueMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HueModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HueModulation.#ctor"> <summary> Initializes a new instance of the HueModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HueModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HueModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HueModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Hue"> <summary> <para>Hue.</para> <para>When the object is serialized out as xml, its qualified name is a:hue.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hue.#ctor"> <summary> Initializes a new instance of the Hue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hue.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HueOffset"> <summary> <para>Hue Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:hueOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HueOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HueOffset.#ctor"> <summary> Initializes a new instance of the HueOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HueOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HueOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HueOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HueOffset.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Saturation"> <summary> <para>Saturation.</para> <para>When the object is serialized out as xml, its qualified name is a:sat.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PercentageType"> <summary> Defines the PercentageType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PercentageType.#ctor"> <summary> Initializes a new instance of the PercentageType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PercentageType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Saturation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Saturation.#ctor"> <summary> Initializes a new instance of the Saturation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Saturation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Saturation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Saturation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SaturationOffset"> <summary> <para>Saturation Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:satOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SaturationOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SaturationOffset.#ctor"> <summary> Initializes a new instance of the SaturationOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SaturationOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SaturationOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SaturationOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SaturationModulation"> <summary> <para>Saturation Modulation.</para> <para>When the object is serialized out as xml, its qualified name is a:satMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SaturationModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SaturationModulation.#ctor"> <summary> Initializes a new instance of the SaturationModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SaturationModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SaturationModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SaturationModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Luminance"> <summary> <para>Luminance.</para> <para>When the object is serialized out as xml, its qualified name is a:lum.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Luminance.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Luminance.#ctor"> <summary> Initializes a new instance of the Luminance class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Luminance.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Luminance.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Luminance.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LuminanceOffset"> <summary> <para>Luminance Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:lumOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceOffset.#ctor"> <summary> Initializes a new instance of the LuminanceOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LuminanceOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LuminanceOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LuminanceModulation"> <summary> <para>Luminance Modulation.</para> <para>When the object is serialized out as xml, its qualified name is a:lumMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceModulation.#ctor"> <summary> Initializes a new instance of the LuminanceModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LuminanceModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LuminanceModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Red"> <summary> <para>Red.</para> <para>When the object is serialized out as xml, its qualified name is a:red.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Red.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Red.#ctor"> <summary> Initializes a new instance of the Red class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Red.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Red.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Red.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RedOffset"> <summary> <para>Red Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:redOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RedOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RedOffset.#ctor"> <summary> Initializes a new instance of the RedOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RedOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RedOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RedOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RedModulation"> <summary> <para>Red Modulation.</para> <para>When the object is serialized out as xml, its qualified name is a:redMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RedModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RedModulation.#ctor"> <summary> Initializes a new instance of the RedModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RedModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RedModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RedModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Green"> <summary> <para>Green.</para> <para>When the object is serialized out as xml, its qualified name is a:green.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Green.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Green.#ctor"> <summary> Initializes a new instance of the Green class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Green.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Green.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Green.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GreenOffset"> <summary> <para>Green Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:greenOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GreenOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GreenOffset.#ctor"> <summary> Initializes a new instance of the GreenOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GreenOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GreenOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GreenOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GreenModulation"> <summary> <para>Green Modification.</para> <para>When the object is serialized out as xml, its qualified name is a:greenMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GreenModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GreenModulation.#ctor"> <summary> Initializes a new instance of the GreenModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GreenModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GreenModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GreenModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Blue"> <summary> <para>Blue.</para> <para>When the object is serialized out as xml, its qualified name is a:blue.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blue.#ctor"> <summary> Initializes a new instance of the Blue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BlueOffset"> <summary> <para>Blue Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:blueOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlueOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlueOffset.#ctor"> <summary> Initializes a new instance of the BlueOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlueOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlueOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlueOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BlueModulation"> <summary> <para>Blue Modification.</para> <para>When the object is serialized out as xml, its qualified name is a:blueMod.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlueModulation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlueModulation.#ctor"> <summary> Initializes a new instance of the BlueModulation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlueModulation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlueModulation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlueModulation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Gamma"> <summary> <para>Gamma.</para> <para>When the object is serialized out as xml, its qualified name is a:gamma.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Gamma.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Gamma.#ctor"> <summary> Initializes a new instance of the Gamma class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Gamma.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Gamma.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Gamma.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.InverseGamma"> <summary> <para>Inverse Gamma.</para> <para>When the object is serialized out as xml, its qualified name is a:invGamma.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InverseGamma.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InverseGamma.#ctor"> <summary> Initializes a new instance of the InverseGamma class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InverseGamma.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InverseGamma.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InverseGamma.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Extension"> <summary> <para>Extension.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extension.#ctor"> <summary> Initializes a new instance of the Extension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Extension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Extension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extension.#ctor(System.String)"> <summary> Initializes a new instance of the Extension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Extension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Extension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Extension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage"> <summary> <para>RGB Color Model - Percentage Variant.</para> <para>When the object is serialized out as xml, its qualified name is a:scrgbClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tint <a:tint></description></item> <item><description>Shade <a:shade></description></item> <item><description>Complement <a:comp></description></item> <item><description>Inverse <a:inv></description></item> <item><description>Gray <a:gray></description></item> <item><description>Alpha <a:alpha></description></item> <item><description>AlphaOffset <a:alphaOff></description></item> <item><description>AlphaModulation <a:alphaMod></description></item> <item><description>Hue <a:hue></description></item> <item><description>HueOffset <a:hueOff></description></item> <item><description>HueModulation <a:hueMod></description></item> <item><description>Saturation <a:sat></description></item> <item><description>SaturationOffset <a:satOff></description></item> <item><description>SaturationModulation <a:satMod></description></item> <item><description>Luminance <a:lum></description></item> <item><description>LuminanceOffset <a:lumOff></description></item> <item><description>LuminanceModulation <a:lumMod></description></item> <item><description>Red <a:red></description></item> <item><description>RedOffset <a:redOff></description></item> <item><description>RedModulation <a:redMod></description></item> <item><description>Green <a:green></description></item> <item><description>GreenOffset <a:greenOff></description></item> <item><description>GreenModulation <a:greenMod></description></item> <item><description>Blue <a:blue></description></item> <item><description>BlueOffset <a:blueOff></description></item> <item><description>BlueModulation <a:blueMod></description></item> <item><description>Gamma <a:gamma></description></item> <item><description>InverseGamma <a:invGamma></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.#ctor"> <summary> Initializes a new instance of the RgbColorModelPercentage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RgbColorModelPercentage class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RgbColorModelPercentage class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.#ctor(System.String)"> <summary> Initializes a new instance of the RgbColorModelPercentage class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.RedPortion"> <summary> <para> Red.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.GreenPortion"> <summary> <para> Green.</para> <para>Represents the attribte in schema: g </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage.BluePortion"> <summary> <para> Blue.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RgbColorModelHex"> <summary> <para>RGB Color Model - Hex Variant.</para> <para>When the object is serialized out as xml, its qualified name is a:srgbClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tint <a:tint></description></item> <item><description>Shade <a:shade></description></item> <item><description>Complement <a:comp></description></item> <item><description>Inverse <a:inv></description></item> <item><description>Gray <a:gray></description></item> <item><description>Alpha <a:alpha></description></item> <item><description>AlphaOffset <a:alphaOff></description></item> <item><description>AlphaModulation <a:alphaMod></description></item> <item><description>Hue <a:hue></description></item> <item><description>HueOffset <a:hueOff></description></item> <item><description>HueModulation <a:hueMod></description></item> <item><description>Saturation <a:sat></description></item> <item><description>SaturationOffset <a:satOff></description></item> <item><description>SaturationModulation <a:satMod></description></item> <item><description>Luminance <a:lum></description></item> <item><description>LuminanceOffset <a:lumOff></description></item> <item><description>LuminanceModulation <a:lumMod></description></item> <item><description>Red <a:red></description></item> <item><description>RedOffset <a:redOff></description></item> <item><description>RedModulation <a:redMod></description></item> <item><description>Green <a:green></description></item> <item><description>GreenOffset <a:greenOff></description></item> <item><description>GreenModulation <a:greenMod></description></item> <item><description>Blue <a:blue></description></item> <item><description>BlueOffset <a:blueOff></description></item> <item><description>BlueModulation <a:blueMod></description></item> <item><description>Gamma <a:gamma></description></item> <item><description>InverseGamma <a:invGamma></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.#ctor"> <summary> Initializes a new instance of the RgbColorModelHex class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RgbColorModelHex class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RgbColorModelHex class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.#ctor(System.String)"> <summary> Initializes a new instance of the RgbColorModelHex class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RgbColorModelHex.LegacySpreadsheetColorIndex"> <summary> <para> legacySpreadsheetColorIndex, this property is only available in Office2010.</para> <para>Represents the attribte in schema: a14:legacySpreadsheetColorIndex </para> </summary> <remark> xmlns:a14=http://schemas.microsoft.com/office/drawing/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HslColor"> <summary> <para>Hue, Saturation, Luminance Color Model.</para> <para>When the object is serialized out as xml, its qualified name is a:hslClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tint <a:tint></description></item> <item><description>Shade <a:shade></description></item> <item><description>Complement <a:comp></description></item> <item><description>Inverse <a:inv></description></item> <item><description>Gray <a:gray></description></item> <item><description>Alpha <a:alpha></description></item> <item><description>AlphaOffset <a:alphaOff></description></item> <item><description>AlphaModulation <a:alphaMod></description></item> <item><description>Hue <a:hue></description></item> <item><description>HueOffset <a:hueOff></description></item> <item><description>HueModulation <a:hueMod></description></item> <item><description>Saturation <a:sat></description></item> <item><description>SaturationOffset <a:satOff></description></item> <item><description>SaturationModulation <a:satMod></description></item> <item><description>Luminance <a:lum></description></item> <item><description>LuminanceOffset <a:lumOff></description></item> <item><description>LuminanceModulation <a:lumMod></description></item> <item><description>Red <a:red></description></item> <item><description>RedOffset <a:redOff></description></item> <item><description>RedModulation <a:redMod></description></item> <item><description>Green <a:green></description></item> <item><description>GreenOffset <a:greenOff></description></item> <item><description>GreenModulation <a:greenMod></description></item> <item><description>Blue <a:blue></description></item> <item><description>BlueOffset <a:blueOff></description></item> <item><description>BlueModulation <a:blueMod></description></item> <item><description>Gamma <a:gamma></description></item> <item><description>InverseGamma <a:invGamma></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HslColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HslColor.#ctor"> <summary> Initializes a new instance of the HslColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HslColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HslColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HslColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HslColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HslColor.#ctor(System.String)"> <summary> Initializes a new instance of the HslColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HslColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HslColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HslColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HslColor.HueValue"> <summary> <para> Hue.</para> <para>Represents the attribte in schema: hue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HslColor.SatValue"> <summary> <para> Saturation.</para> <para>Represents the attribte in schema: sat </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HslColor.LumValue"> <summary> <para> Luminance.</para> <para>Represents the attribte in schema: lum </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SystemColor"> <summary> <para>System Color.</para> <para>When the object is serialized out as xml, its qualified name is a:sysClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tint <a:tint></description></item> <item><description>Shade <a:shade></description></item> <item><description>Complement <a:comp></description></item> <item><description>Inverse <a:inv></description></item> <item><description>Gray <a:gray></description></item> <item><description>Alpha <a:alpha></description></item> <item><description>AlphaOffset <a:alphaOff></description></item> <item><description>AlphaModulation <a:alphaMod></description></item> <item><description>Hue <a:hue></description></item> <item><description>HueOffset <a:hueOff></description></item> <item><description>HueModulation <a:hueMod></description></item> <item><description>Saturation <a:sat></description></item> <item><description>SaturationOffset <a:satOff></description></item> <item><description>SaturationModulation <a:satMod></description></item> <item><description>Luminance <a:lum></description></item> <item><description>LuminanceOffset <a:lumOff></description></item> <item><description>LuminanceModulation <a:lumMod></description></item> <item><description>Red <a:red></description></item> <item><description>RedOffset <a:redOff></description></item> <item><description>RedModulation <a:redMod></description></item> <item><description>Green <a:green></description></item> <item><description>GreenOffset <a:greenOff></description></item> <item><description>GreenModulation <a:greenMod></description></item> <item><description>Blue <a:blue></description></item> <item><description>BlueOffset <a:blueOff></description></item> <item><description>BlueModulation <a:blueMod></description></item> <item><description>Gamma <a:gamma></description></item> <item><description>InverseGamma <a:invGamma></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SystemColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SystemColor.#ctor"> <summary> Initializes a new instance of the SystemColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SystemColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SystemColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SystemColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SystemColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SystemColor.#ctor(System.String)"> <summary> Initializes a new instance of the SystemColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SystemColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SystemColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SystemColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SystemColor.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SystemColor.LastColor"> <summary> <para> Last Color.</para> <para>Represents the attribte in schema: lastClr </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SchemeColor"> <summary> <para>Scheme Color.</para> <para>When the object is serialized out as xml, its qualified name is a:schemeClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tint <a:tint></description></item> <item><description>Shade <a:shade></description></item> <item><description>Complement <a:comp></description></item> <item><description>Inverse <a:inv></description></item> <item><description>Gray <a:gray></description></item> <item><description>Alpha <a:alpha></description></item> <item><description>AlphaOffset <a:alphaOff></description></item> <item><description>AlphaModulation <a:alphaMod></description></item> <item><description>Hue <a:hue></description></item> <item><description>HueOffset <a:hueOff></description></item> <item><description>HueModulation <a:hueMod></description></item> <item><description>Saturation <a:sat></description></item> <item><description>SaturationOffset <a:satOff></description></item> <item><description>SaturationModulation <a:satMod></description></item> <item><description>Luminance <a:lum></description></item> <item><description>LuminanceOffset <a:lumOff></description></item> <item><description>LuminanceModulation <a:lumMod></description></item> <item><description>Red <a:red></description></item> <item><description>RedOffset <a:redOff></description></item> <item><description>RedModulation <a:redMod></description></item> <item><description>Green <a:green></description></item> <item><description>GreenOffset <a:greenOff></description></item> <item><description>GreenModulation <a:greenMod></description></item> <item><description>Blue <a:blue></description></item> <item><description>BlueOffset <a:blueOff></description></item> <item><description>BlueModulation <a:blueMod></description></item> <item><description>Gamma <a:gamma></description></item> <item><description>InverseGamma <a:invGamma></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SchemeColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SchemeColor.#ctor"> <summary> Initializes a new instance of the SchemeColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SchemeColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SchemeColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SchemeColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SchemeColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SchemeColor.#ctor(System.String)"> <summary> Initializes a new instance of the SchemeColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SchemeColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SchemeColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SchemeColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SchemeColor.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetColor"> <summary> <para>Preset Color.</para> <para>When the object is serialized out as xml, its qualified name is a:prstClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tint <a:tint></description></item> <item><description>Shade <a:shade></description></item> <item><description>Complement <a:comp></description></item> <item><description>Inverse <a:inv></description></item> <item><description>Gray <a:gray></description></item> <item><description>Alpha <a:alpha></description></item> <item><description>AlphaOffset <a:alphaOff></description></item> <item><description>AlphaModulation <a:alphaMod></description></item> <item><description>Hue <a:hue></description></item> <item><description>HueOffset <a:hueOff></description></item> <item><description>HueModulation <a:hueMod></description></item> <item><description>Saturation <a:sat></description></item> <item><description>SaturationOffset <a:satOff></description></item> <item><description>SaturationModulation <a:satMod></description></item> <item><description>Luminance <a:lum></description></item> <item><description>LuminanceOffset <a:lumOff></description></item> <item><description>LuminanceModulation <a:lumMod></description></item> <item><description>Red <a:red></description></item> <item><description>RedOffset <a:redOff></description></item> <item><description>RedModulation <a:redMod></description></item> <item><description>Green <a:green></description></item> <item><description>GreenOffset <a:greenOff></description></item> <item><description>GreenModulation <a:greenMod></description></item> <item><description>Blue <a:blue></description></item> <item><description>BlueOffset <a:blueOff></description></item> <item><description>BlueModulation <a:blueMod></description></item> <item><description>Gamma <a:gamma></description></item> <item><description>InverseGamma <a:invGamma></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetColor.#ctor"> <summary> Initializes a new instance of the PresetColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresetColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresetColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetColor.#ctor(System.String)"> <summary> Initializes a new instance of the PresetColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetColor.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Shape3DType"> <summary> <para>Apply 3D shape properties.</para> <para>When the object is serialized out as xml, its qualified name is a:sp3d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BevelTop <a:bevelT></description></item> <item><description>BevelBottom <a:bevelB></description></item> <item><description>ExtrusionColor <a:extrusionClr></description></item> <item><description>ContourColor <a:contourClr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape3DType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape3DType.#ctor"> <summary> Initializes a new instance of the Shape3DType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape3DType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape3DType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape3DType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape3DType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape3DType.#ctor(System.String)"> <summary> Initializes a new instance of the Shape3DType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape3DType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.Z"> <summary> <para> Shape Depth.</para> <para>Represents the attribte in schema: z </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.ExtrusionHeight"> <summary> <para> Extrusion Height.</para> <para>Represents the attribte in schema: extrusionH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.ContourWidth"> <summary> <para> Contour Width.</para> <para>Represents the attribte in schema: contourW </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.PresetMaterial"> <summary> <para> Preset Material Type.</para> <para>Represents the attribte in schema: prstMaterial </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.BevelTop"> <summary> <para> Top Bevel.</para> <para>Represents the element tag in schema: a:bevelT </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.BevelBottom"> <summary> <para> Bottom Bevel.</para> <para>Represents the element tag in schema: a:bevelB </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.ExtrusionColor"> <summary> <para> Extrusion Color.</para> <para>Represents the element tag in schema: a:extrusionClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.ContourColor"> <summary> <para> Contour Color.</para> <para>Represents the element tag in schema: a:contourClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape3DType.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FlatText"> <summary> <para>No text in 3D scene.</para> <para>When the object is serialized out as xml, its qualified name is a:flatTx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FlatText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FlatText.#ctor"> <summary> Initializes a new instance of the FlatText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FlatText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FlatText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FlatText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FlatText.Z"> <summary> <para> Z Coordinate.</para> <para>Represents the attribte in schema: z </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LinearGradientFill"> <summary> <para>Linear Gradient Fill.</para> <para>When the object is serialized out as xml, its qualified name is a:lin.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LinearGradientFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LinearGradientFill.#ctor"> <summary> Initializes a new instance of the LinearGradientFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LinearGradientFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LinearGradientFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LinearGradientFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LinearGradientFill.Angle"> <summary> <para> Angle.</para> <para>Represents the attribte in schema: ang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LinearGradientFill.Scaled"> <summary> <para> Scaled.</para> <para>Represents the attribte in schema: scaled </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PathGradientFill"> <summary> <para>Path Gradient.</para> <para>When the object is serialized out as xml, its qualified name is a:path.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FillToRectangle <a:fillToRect></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathGradientFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathGradientFill.#ctor"> <summary> Initializes a new instance of the PathGradientFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathGradientFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PathGradientFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathGradientFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PathGradientFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathGradientFill.#ctor(System.String)"> <summary> Initializes a new instance of the PathGradientFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathGradientFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PathGradientFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PathGradientFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PathGradientFill.Path"> <summary> <para> Gradient Fill Path.</para> <para>Represents the attribte in schema: path </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PathGradientFill.FillToRectangle"> <summary> <para> Fill To Rectangle.</para> <para>Represents the element tag in schema: a:fillToRect </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Tile"> <summary> <para>Tile.</para> <para>When the object is serialized out as xml, its qualified name is a:tile.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Tile.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Tile.#ctor"> <summary> Initializes a new instance of the Tile class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Tile.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tile.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tile.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tile.HorizontalOffset"> <summary> <para> Horizontal Offset.</para> <para>Represents the attribte in schema: tx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tile.VerticalOffset"> <summary> <para> Vertical Offset.</para> <para>Represents the attribte in schema: ty </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tile.HorizontalRatio"> <summary> <para> Horizontal Ratio.</para> <para>Represents the attribte in schema: sx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tile.VerticalRatio"> <summary> <para> Vertical Ratio.</para> <para>Represents the attribte in schema: sy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tile.Flip"> <summary> <para> Tile Flipping.</para> <para>Represents the attribte in schema: flip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Tile.Alignment"> <summary> <para> Alignment.</para> <para>Represents the attribte in schema: algn </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Stretch"> <summary> <para>Stretch.</para> <para>When the object is serialized out as xml, its qualified name is a:stretch.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FillRectangle <a:fillRect></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Stretch.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Stretch.#ctor"> <summary> Initializes a new instance of the Stretch class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Stretch.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Stretch class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Stretch.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Stretch class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Stretch.#ctor(System.String)"> <summary> Initializes a new instance of the Stretch class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Stretch.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Stretch.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Stretch.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Stretch.FillRectangle"> <summary> <para> Fill Rectangle.</para> <para>Represents the element tag in schema: a:fillRect </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NoFill"> <summary> <para>Defines the NoFill Class.</para> <para>When the object is serialized out as xml, its qualified name is a:noFill.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoFill.#ctor"> <summary> Initializes a new instance of the NoFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NoFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NoFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SolidFill"> <summary> <para>Defines the SolidFill Class.</para> <para>When the object is serialized out as xml, its qualified name is a:solidFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SolidFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SolidFill.#ctor"> <summary> Initializes a new instance of the SolidFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SolidFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SolidFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SolidFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SolidFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SolidFill.#ctor(System.String)"> <summary> Initializes a new instance of the SolidFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SolidFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SolidFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SolidFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SolidFill.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SolidFill.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SolidFill.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SolidFill.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SolidFill.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SolidFill.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GradientFill"> <summary> <para>Defines the GradientFill Class.</para> <para>When the object is serialized out as xml, its qualified name is a:gradFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GradientStopList <a:gsLst></description></item> <item><description>LinearGradientFill <a:lin></description></item> <item><description>PathGradientFill <a:path></description></item> <item><description>TileRectangle <a:tileRect></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientFill.#ctor"> <summary> Initializes a new instance of the GradientFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GradientFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GradientFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientFill.#ctor(System.String)"> <summary> Initializes a new instance of the GradientFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientFill.Flip"> <summary> <para> Tile Flip.</para> <para>Represents the attribte in schema: flip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientFill.RotateWithShape"> <summary> <para> Rotate With Shape.</para> <para>Represents the attribte in schema: rotWithShape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientFill.GradientStopList"> <summary> <para> Gradient Stop List.</para> <para>Represents the element tag in schema: a:gsLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BlipFill"> <summary> <para>Defines the BlipFill Class.</para> <para>When the object is serialized out as xml, its qualified name is a:blipFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Blip <a:blip></description></item> <item><description>SourceRectangle <a:srcRect></description></item> <item><description>Tile <a:tile></description></item> <item><description>Stretch <a:stretch></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipFill.#ctor"> <summary> Initializes a new instance of the BlipFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipFill.#ctor(System.String)"> <summary> Initializes a new instance of the BlipFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipFill.Dpi"> <summary> <para> DPI Setting.</para> <para>Represents the attribte in schema: dpi </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipFill.RotateWithShape"> <summary> <para> Rotate With Shape.</para> <para>Represents the attribte in schema: rotWithShape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipFill.Blip"> <summary> <para> Blip.</para> <para>Represents the element tag in schema: a:blip </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipFill.SourceRectangle"> <summary> <para> Source Rectangle.</para> <para>Represents the element tag in schema: a:srcRect </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PatternFill"> <summary> <para>Pattern Fill.</para> <para>When the object is serialized out as xml, its qualified name is a:pattFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ForegroundColor <a:fgClr></description></item> <item><description>BackgroundColor <a:bgClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PatternFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PatternFill.#ctor"> <summary> Initializes a new instance of the PatternFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PatternFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PatternFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PatternFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PatternFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PatternFill.#ctor(System.String)"> <summary> Initializes a new instance of the PatternFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PatternFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PatternFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PatternFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PatternFill.Preset"> <summary> <para> Preset Pattern.</para> <para>Represents the attribte in schema: prst </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PatternFill.ForegroundColor"> <summary> <para> Foreground color.</para> <para>Represents the element tag in schema: a:fgClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PatternFill.BackgroundColor"> <summary> <para> Background color.</para> <para>Represents the element tag in schema: a:bgClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GroupFill"> <summary> <para>Group Fill.</para> <para>When the object is serialized out as xml, its qualified name is a:grpFill.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupFill.#ctor"> <summary> Initializes a new instance of the GroupFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectContainer"> <summary> <para>Effect Container.</para> <para>When the object is serialized out as xml, its qualified name is a:cont.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectContainer <a:cont></description></item> <item><description>Effect <a:effect></description></item> <item><description>AlphaBiLevel <a:alphaBiLevel></description></item> <item><description>AlphaCeiling <a:alphaCeiling></description></item> <item><description>AlphaFloor <a:alphaFloor></description></item> <item><description>AlphaInverse <a:alphaInv></description></item> <item><description>AlphaModulationEffect <a:alphaMod></description></item> <item><description>AlphaModulationFixed <a:alphaModFix></description></item> <item><description>AlphaOutset <a:alphaOutset></description></item> <item><description>AlphaReplace <a:alphaRepl></description></item> <item><description>BiLevel <a:biLevel></description></item> <item><description>Blend <a:blend></description></item> <item><description>Blur <a:blur></description></item> <item><description>ColorChange <a:clrChange></description></item> <item><description>ColorReplacement <a:clrRepl></description></item> <item><description>Duotone <a:duotone></description></item> <item><description>Fill <a:fill></description></item> <item><description>FillOverlay <a:fillOverlay></description></item> <item><description>Glow <a:glow></description></item> <item><description>Grayscale <a:grayscl></description></item> <item><description>Hsl <a:hsl></description></item> <item><description>InnerShadow <a:innerShdw></description></item> <item><description>LuminanceEffect <a:lum></description></item> <item><description>OuterShadow <a:outerShdw></description></item> <item><description>PresetShadow <a:prstShdw></description></item> <item><description>Reflection <a:reflection></description></item> <item><description>RelativeOffset <a:relOff></description></item> <item><description>SoftEdge <a:softEdge></description></item> <item><description>TintEffect <a:tint></description></item> <item><description>TransformEffect <a:xfrm></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectContainerType"> <summary> Defines the EffectContainerType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectContainer <a:cont></description></item> <item><description>Effect <a:effect></description></item> <item><description>AlphaBiLevel <a:alphaBiLevel></description></item> <item><description>AlphaCeiling <a:alphaCeiling></description></item> <item><description>AlphaFloor <a:alphaFloor></description></item> <item><description>AlphaInverse <a:alphaInv></description></item> <item><description>AlphaModulationEffect <a:alphaMod></description></item> <item><description>AlphaModulationFixed <a:alphaModFix></description></item> <item><description>AlphaOutset <a:alphaOutset></description></item> <item><description>AlphaReplace <a:alphaRepl></description></item> <item><description>BiLevel <a:biLevel></description></item> <item><description>Blend <a:blend></description></item> <item><description>Blur <a:blur></description></item> <item><description>ColorChange <a:clrChange></description></item> <item><description>ColorReplacement <a:clrRepl></description></item> <item><description>Duotone <a:duotone></description></item> <item><description>Fill <a:fill></description></item> <item><description>FillOverlay <a:fillOverlay></description></item> <item><description>Glow <a:glow></description></item> <item><description>Grayscale <a:grayscl></description></item> <item><description>Hsl <a:hsl></description></item> <item><description>InnerShadow <a:innerShdw></description></item> <item><description>LuminanceEffect <a:lum></description></item> <item><description>OuterShadow <a:outerShdw></description></item> <item><description>PresetShadow <a:prstShdw></description></item> <item><description>Reflection <a:reflection></description></item> <item><description>RelativeOffset <a:relOff></description></item> <item><description>SoftEdge <a:softEdge></description></item> <item><description>TintEffect <a:tint></description></item> <item><description>TransformEffect <a:xfrm></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainerType.#ctor"> <summary> Initializes a new instance of the EffectContainerType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainerType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectContainerType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainerType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectContainerType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainerType.#ctor(System.String)"> <summary> Initializes a new instance of the EffectContainerType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectContainerType.Type"> <summary> <para> Effect Container Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectContainerType.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainer.#ctor"> <summary> Initializes a new instance of the EffectContainer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectContainer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectContainer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainer.#ctor(System.String)"> <summary> Initializes a new instance of the EffectContainer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectContainer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectContainer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectContainer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectDag"> <summary> <para>Effect Container.</para> <para>When the object is serialized out as xml, its qualified name is a:effectDag.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectContainer <a:cont></description></item> <item><description>Effect <a:effect></description></item> <item><description>AlphaBiLevel <a:alphaBiLevel></description></item> <item><description>AlphaCeiling <a:alphaCeiling></description></item> <item><description>AlphaFloor <a:alphaFloor></description></item> <item><description>AlphaInverse <a:alphaInv></description></item> <item><description>AlphaModulationEffect <a:alphaMod></description></item> <item><description>AlphaModulationFixed <a:alphaModFix></description></item> <item><description>AlphaOutset <a:alphaOutset></description></item> <item><description>AlphaReplace <a:alphaRepl></description></item> <item><description>BiLevel <a:biLevel></description></item> <item><description>Blend <a:blend></description></item> <item><description>Blur <a:blur></description></item> <item><description>ColorChange <a:clrChange></description></item> <item><description>ColorReplacement <a:clrRepl></description></item> <item><description>Duotone <a:duotone></description></item> <item><description>Fill <a:fill></description></item> <item><description>FillOverlay <a:fillOverlay></description></item> <item><description>Glow <a:glow></description></item> <item><description>Grayscale <a:grayscl></description></item> <item><description>Hsl <a:hsl></description></item> <item><description>InnerShadow <a:innerShdw></description></item> <item><description>LuminanceEffect <a:lum></description></item> <item><description>OuterShadow <a:outerShdw></description></item> <item><description>PresetShadow <a:prstShdw></description></item> <item><description>Reflection <a:reflection></description></item> <item><description>RelativeOffset <a:relOff></description></item> <item><description>SoftEdge <a:softEdge></description></item> <item><description>TintEffect <a:tint></description></item> <item><description>TransformEffect <a:xfrm></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectDag.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectDag.#ctor"> <summary> Initializes a new instance of the EffectDag class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectDag.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectDag class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectDag.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectDag class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectDag.#ctor(System.String)"> <summary> Initializes a new instance of the EffectDag class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectDag.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectDag.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectDag.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Effect"> <summary> <para>Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:effect.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Effect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Effect.#ctor"> <summary> Initializes a new instance of the Effect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Effect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Effect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Effect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Effect.Reference"> <summary> <para> Reference.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaBiLevel"> <summary> <para>Defines the AlphaBiLevel Class.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaBiLevel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaBiLevel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaBiLevel.#ctor"> <summary> Initializes a new instance of the AlphaBiLevel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaBiLevel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaBiLevel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaBiLevel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaBiLevel.Threshold"> <summary> <para> Threshold.</para> <para>Represents the attribte in schema: thresh </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaCeiling"> <summary> <para>Alpha Ceiling Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaCeiling.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaCeiling.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaCeiling.#ctor"> <summary> Initializes a new instance of the AlphaCeiling class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaCeiling.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaCeiling.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaCeiling.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaFloor"> <summary> <para>Alpha Floor Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaFloor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaFloor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaFloor.#ctor"> <summary> Initializes a new instance of the AlphaFloor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaFloor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaFloor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaFloor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaInverse"> <summary> <para>Alpha Inverse Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaInv.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaInverse.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaInverse.#ctor"> <summary> Initializes a new instance of the AlphaInverse class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaInverse.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AlphaInverse class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaInverse.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AlphaInverse class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaInverse.#ctor(System.String)"> <summary> Initializes a new instance of the AlphaInverse class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaInverse.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaInverse.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaInverse.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaInverse.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaInverse.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaInverse.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaInverse.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaInverse.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaInverse.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect"> <summary> <para>Alpha Modulate Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaMod.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectContainer <a:cont></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.#ctor"> <summary> Initializes a new instance of the AlphaModulationEffect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AlphaModulationEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AlphaModulationEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.#ctor(System.String)"> <summary> Initializes a new instance of the AlphaModulationEffect class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaModulationEffect.EffectContainer"> <summary> <para> EffectContainer.</para> <para>Represents the element tag in schema: a:cont </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaModulationFixed"> <summary> <para>Defines the AlphaModulationFixed Class.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaModFix.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationFixed.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationFixed.#ctor"> <summary> Initializes a new instance of the AlphaModulationFixed class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaModulationFixed.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaModulationFixed.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaModulationFixed.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaModulationFixed.Amount"> <summary> <para> Amount.</para> <para>Represents the attribte in schema: amt </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaOutset"> <summary> <para>Alpha Inset/Outset Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaOutset.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaOutset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaOutset.#ctor"> <summary> Initializes a new instance of the AlphaOutset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaOutset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaOutset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaOutset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaOutset.Radius"> <summary> <para> Radius.</para> <para>Represents the attribte in schema: rad </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AlphaReplace"> <summary> <para>Alpha Replace Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:alphaRepl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaReplace.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaReplace.#ctor"> <summary> Initializes a new instance of the AlphaReplace class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AlphaReplace.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaReplace.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaReplace.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AlphaReplace.Alpha"> <summary> <para> Alpha.</para> <para>Represents the attribte in schema: a </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BiLevel"> <summary> <para>Defines the BiLevel Class.</para> <para>When the object is serialized out as xml, its qualified name is a:biLevel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BiLevel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BiLevel.#ctor"> <summary> Initializes a new instance of the BiLevel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BiLevel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BiLevel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BiLevel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BiLevel.Threshold"> <summary> <para> Threshold.</para> <para>Represents the attribte in schema: thresh </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Blend"> <summary> <para>Blend Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:blend.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectContainer <a:cont></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blend.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blend.#ctor"> <summary> Initializes a new instance of the Blend class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blend.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Blend class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blend.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Blend class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blend.#ctor(System.String)"> <summary> Initializes a new instance of the Blend class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blend.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blend.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blend.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blend.BlendMode"> <summary> <para> Blend Mode.</para> <para>Represents the attribte in schema: blend </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blend.EffectContainer"> <summary> <para> Effect to blend.</para> <para>Represents the element tag in schema: a:cont </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Blur"> <summary> <para>Defines the Blur Class.</para> <para>When the object is serialized out as xml, its qualified name is a:blur.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blur.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blur.#ctor"> <summary> Initializes a new instance of the Blur class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blur.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blur.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blur.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blur.Radius"> <summary> <para> Radius.</para> <para>Represents the attribte in schema: rad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blur.Grow"> <summary> <para> Grow Bounds.</para> <para>Represents the attribte in schema: grow </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorChange"> <summary> <para>Color Change Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:clrChange.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColorFrom <a:clrFrom></description></item> <item><description>ColorTo <a:clrTo></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorChange.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorChange.#ctor"> <summary> Initializes a new instance of the ColorChange class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorChange.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorChange class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorChange.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorChange class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorChange.#ctor(System.String)"> <summary> Initializes a new instance of the ColorChange class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorChange.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorChange.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorChange.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorChange.UseAlpha"> <summary> <para> Consider Alpha Values.</para> <para>Represents the attribte in schema: useA </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorChange.ColorFrom"> <summary> <para> Change Color From.</para> <para>Represents the element tag in schema: a:clrFrom </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorChange.ColorTo"> <summary> <para> Change Color To.</para> <para>Represents the element tag in schema: a:clrTo </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorReplacement"> <summary> <para>Defines the ColorReplacement Class.</para> <para>When the object is serialized out as xml, its qualified name is a:clrRepl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorReplacement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorReplacement.#ctor"> <summary> Initializes a new instance of the ColorReplacement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorReplacement.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorReplacement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorReplacement.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorReplacement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorReplacement.#ctor(System.String)"> <summary> Initializes a new instance of the ColorReplacement class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorReplacement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorReplacement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorReplacement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorReplacement.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorReplacement.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorReplacement.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorReplacement.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorReplacement.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorReplacement.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Duotone"> <summary> <para>Duotone Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:duotone.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Duotone.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Duotone.#ctor"> <summary> Initializes a new instance of the Duotone class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Duotone.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Duotone class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Duotone.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Duotone class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Duotone.#ctor(System.String)"> <summary> Initializes a new instance of the Duotone class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Duotone.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Duotone.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Duotone.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Fill"> <summary> <para>Fill.</para> <para>When the object is serialized out as xml, its qualified name is a:fill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fill.#ctor"> <summary> Initializes a new instance of the Fill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Fill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Fill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fill.#ctor(System.String)"> <summary> Initializes a new instance of the Fill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fill.NoFill"> <summary> <para> NoFill.</para> <para>Represents the element tag in schema: a:noFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fill.SolidFill"> <summary> <para> SolidFill.</para> <para>Represents the element tag in schema: a:solidFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fill.GradientFill"> <summary> <para> GradientFill.</para> <para>Represents the element tag in schema: a:gradFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fill.BlipFill"> <summary> <para> BlipFill.</para> <para>Represents the element tag in schema: a:blipFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fill.PatternFill"> <summary> <para> Pattern Fill.</para> <para>Represents the element tag in schema: a:pattFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fill.GroupFill"> <summary> <para> Group Fill.</para> <para>Represents the element tag in schema: a:grpFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FillOverlay"> <summary> <para>Fill Overlay Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:fillOverlay.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillOverlay.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillOverlay.#ctor"> <summary> Initializes a new instance of the FillOverlay class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillOverlay.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FillOverlay class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillOverlay.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FillOverlay class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillOverlay.#ctor(System.String)"> <summary> Initializes a new instance of the FillOverlay class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillOverlay.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.Blend"> <summary> <para> Blend.</para> <para>Represents the attribte in schema: blend </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.NoFill"> <summary> <para> NoFill.</para> <para>Represents the element tag in schema: a:noFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.SolidFill"> <summary> <para> SolidFill.</para> <para>Represents the element tag in schema: a:solidFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.GradientFill"> <summary> <para> GradientFill.</para> <para>Represents the element tag in schema: a:gradFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.BlipFill"> <summary> <para> BlipFill.</para> <para>Represents the element tag in schema: a:blipFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.PatternFill"> <summary> <para> Pattern Fill.</para> <para>Represents the element tag in schema: a:pattFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillOverlay.GroupFill"> <summary> <para> Group Fill.</para> <para>Represents the element tag in schema: a:grpFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Glow"> <summary> <para>Glow Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:glow.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Glow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Glow.#ctor"> <summary> Initializes a new instance of the Glow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Glow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Glow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Glow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Glow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Glow.#ctor(System.String)"> <summary> Initializes a new instance of the Glow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Glow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.Radius"> <summary> <para> Radius.</para> <para>Represents the attribte in schema: rad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Glow.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Grayscale"> <summary> <para>Gray Scale Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:grayscl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Grayscale.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Grayscale.#ctor"> <summary> Initializes a new instance of the Grayscale class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Grayscale.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Grayscale.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Grayscale.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Hsl"> <summary> <para>Hue Saturation Luminance Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:hsl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hsl.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hsl.#ctor"> <summary> Initializes a new instance of the Hsl class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hsl.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hsl.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hsl.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hsl.Hue"> <summary> <para> Hue.</para> <para>Represents the attribte in schema: hue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hsl.Saturation"> <summary> <para> Saturation.</para> <para>Represents the attribte in schema: sat </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hsl.Luminance"> <summary> <para> Luminance.</para> <para>Represents the attribte in schema: lum </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.InnerShadow"> <summary> <para>Inner Shadow Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:innerShdw.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InnerShadow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InnerShadow.#ctor"> <summary> Initializes a new instance of the InnerShadow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InnerShadow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the InnerShadow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InnerShadow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the InnerShadow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InnerShadow.#ctor(System.String)"> <summary> Initializes a new instance of the InnerShadow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InnerShadow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.BlurRadius"> <summary> <para> Blur Radius.</para> <para>Represents the attribte in schema: blurRad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.Distance"> <summary> <para> Distance.</para> <para>Represents the attribte in schema: dist </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InnerShadow.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LuminanceEffect"> <summary> <para>Luminance.</para> <para>When the object is serialized out as xml, its qualified name is a:lum.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceEffect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceEffect.#ctor"> <summary> Initializes a new instance of the LuminanceEffect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LuminanceEffect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LuminanceEffect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LuminanceEffect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LuminanceEffect.Brightness"> <summary> <para> Brightness.</para> <para>Represents the attribte in schema: bright </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LuminanceEffect.Contrast"> <summary> <para> Contrast.</para> <para>Represents the attribte in schema: contrast </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.OuterShadow"> <summary> <para>Outer Shadow Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:outerShdw.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OuterShadow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OuterShadow.#ctor"> <summary> Initializes a new instance of the OuterShadow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OuterShadow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OuterShadow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OuterShadow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OuterShadow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OuterShadow.#ctor(System.String)"> <summary> Initializes a new instance of the OuterShadow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OuterShadow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.BlurRadius"> <summary> <para> Blur Radius.</para> <para>Represents the attribte in schema: blurRad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.Distance"> <summary> <para> Shadow Offset Distance.</para> <para>Represents the attribte in schema: dist </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.Direction"> <summary> <para> Shadow Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.HorizontalRatio"> <summary> <para> Horizontal Scaling Factor.</para> <para>Represents the attribte in schema: sx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.VerticalRatio"> <summary> <para> Vertical Scaling Factor.</para> <para>Represents the attribte in schema: sy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.HorizontalSkew"> <summary> <para> Horizontal Skew.</para> <para>Represents the attribte in schema: kx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.VerticalSkew"> <summary> <para> Vertical Skew.</para> <para>Represents the attribte in schema: ky </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.Alignment"> <summary> <para> Shadow Alignment.</para> <para>Represents the attribte in schema: algn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.RotateWithShape"> <summary> <para> Rotate With Shape.</para> <para>Represents the attribte in schema: rotWithShape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OuterShadow.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetShadow"> <summary> <para>Preset Shadow.</para> <para>When the object is serialized out as xml, its qualified name is a:prstShdw.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetShadow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetShadow.#ctor"> <summary> Initializes a new instance of the PresetShadow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetShadow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresetShadow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetShadow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresetShadow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetShadow.#ctor(System.String)"> <summary> Initializes a new instance of the PresetShadow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetShadow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.Preset"> <summary> <para> Preset Shadow.</para> <para>Represents the attribte in schema: prst </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.Distance"> <summary> <para> Distance.</para> <para>Represents the attribte in schema: dist </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetShadow.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Reflection"> <summary> <para>Reflection Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:reflection.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Reflection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Reflection.#ctor"> <summary> Initializes a new instance of the Reflection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Reflection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.BlurRadius"> <summary> <para> Blur Radius.</para> <para>Represents the attribte in schema: blurRad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.StartOpacity"> <summary> <para> Start Opacity.</para> <para>Represents the attribte in schema: stA </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.StartPosition"> <summary> <para> Start Position.</para> <para>Represents the attribte in schema: stPos </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.EndAlpha"> <summary> <para> End Alpha.</para> <para>Represents the attribte in schema: endA </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.EndPosition"> <summary> <para> End Position.</para> <para>Represents the attribte in schema: endPos </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.Distance"> <summary> <para> Distance.</para> <para>Represents the attribte in schema: dist </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.FadeDirection"> <summary> <para> Fade Direction.</para> <para>Represents the attribte in schema: fadeDir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.HorizontalRatio"> <summary> <para> Horizontal Ratio.</para> <para>Represents the attribte in schema: sx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.VerticalRatio"> <summary> <para> Vertical Ratio.</para> <para>Represents the attribte in schema: sy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.HorizontalSkew"> <summary> <para> Horizontal Skew.</para> <para>Represents the attribte in schema: kx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.VerticalSkew"> <summary> <para> Vertical Skew.</para> <para>Represents the attribte in schema: ky </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.Alignment"> <summary> <para> Shadow Alignment.</para> <para>Represents the attribte in schema: algn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Reflection.RotateWithShape"> <summary> <para> Rotate With Shape.</para> <para>Represents the attribte in schema: rotWithShape </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RelativeOffset"> <summary> <para>Relative Offset Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:relOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RelativeOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RelativeOffset.#ctor"> <summary> Initializes a new instance of the RelativeOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RelativeOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RelativeOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RelativeOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RelativeOffset.OffsetX"> <summary> <para> Offset X.</para> <para>Represents the attribte in schema: tx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RelativeOffset.OffsetY"> <summary> <para> Offset Y.</para> <para>Represents the attribte in schema: ty </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SoftEdge"> <summary> <para>Soft Edge Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:softEdge.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoftEdge.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoftEdge.#ctor"> <summary> Initializes a new instance of the SoftEdge class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoftEdge.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SoftEdge.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SoftEdge.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SoftEdge.Radius"> <summary> <para> Radius.</para> <para>Represents the attribte in schema: rad </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TintEffect"> <summary> <para>Defines the TintEffect Class.</para> <para>When the object is serialized out as xml, its qualified name is a:tint.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TintEffect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TintEffect.#ctor"> <summary> Initializes a new instance of the TintEffect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TintEffect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TintEffect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TintEffect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TintEffect.Hue"> <summary> <para> Hue.</para> <para>Represents the attribte in schema: hue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TintEffect.Amount"> <summary> <para> Amount.</para> <para>Represents the attribte in schema: amt </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TransformEffect"> <summary> <para>Transform Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:xfrm.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformEffect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformEffect.#ctor"> <summary> Initializes a new instance of the TransformEffect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformEffect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformEffect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformEffect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformEffect.HorizontalRatio"> <summary> <para> Horizontal Ratio.</para> <para>Represents the attribte in schema: sx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformEffect.VerticalRatio"> <summary> <para> Vertical Ratio.</para> <para>Represents the attribte in schema: sy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformEffect.HorizontalSkew"> <summary> <para> Horizontal Skew.</para> <para>Represents the attribte in schema: kx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformEffect.VerticalSkew"> <summary> <para> Vertical Skew.</para> <para>Represents the attribte in schema: ky </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformEffect.HorizontalShift"> <summary> <para> Horizontal Shift.</para> <para>Represents the attribte in schema: tx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformEffect.VerticalShift"> <summary> <para> Vertical Shift.</para> <para>Represents the attribte in schema: ty </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectList"> <summary> <para>Effect Container.</para> <para>When the object is serialized out as xml, its qualified name is a:effectLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Blur <a:blur></description></item> <item><description>FillOverlay <a:fillOverlay></description></item> <item><description>Glow <a:glow></description></item> <item><description>InnerShadow <a:innerShdw></description></item> <item><description>OuterShadow <a:outerShdw></description></item> <item><description>PresetShadow <a:prstShdw></description></item> <item><description>Reflection <a:reflection></description></item> <item><description>SoftEdge <a:softEdge></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectList.#ctor"> <summary> Initializes a new instance of the EffectList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectList.#ctor(System.String)"> <summary> Initializes a new instance of the EffectList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.Blur"> <summary> <para> Blur Effect.</para> <para>Represents the element tag in schema: a:blur </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.FillOverlay"> <summary> <para> FillOverlay.</para> <para>Represents the element tag in schema: a:fillOverlay </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.Glow"> <summary> <para> Glow.</para> <para>Represents the element tag in schema: a:glow </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.InnerShadow"> <summary> <para> InnerShadow.</para> <para>Represents the element tag in schema: a:innerShdw </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.OuterShadow"> <summary> <para> OuterShadow.</para> <para>Represents the element tag in schema: a:outerShdw </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.PresetShadow"> <summary> <para> PresetShadow.</para> <para>Represents the element tag in schema: a:prstShdw </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.Reflection"> <summary> <para> Reflection.</para> <para>Represents the element tag in schema: a:reflection </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectList.SoftEdge"> <summary> <para> SoftEdge.</para> <para>Represents the element tag in schema: a:softEdge </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.CustomGeometry"> <summary> <para>Custom geometry.</para> <para>When the object is serialized out as xml, its qualified name is a:custGeom.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AdjustValueList <a:avLst></description></item> <item><description>ShapeGuideList <a:gdLst></description></item> <item><description>AdjustHandleList <a:ahLst></description></item> <item><description>ConnectionSiteList <a:cxnLst></description></item> <item><description>Rectangle <a:rect></description></item> <item><description>PathList <a:pathLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomGeometry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomGeometry.#ctor"> <summary> Initializes a new instance of the CustomGeometry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomGeometry.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomGeometry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomGeometry.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomGeometry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomGeometry.#ctor(System.String)"> <summary> Initializes a new instance of the CustomGeometry class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomGeometry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomGeometry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomGeometry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomGeometry.AdjustValueList"> <summary> <para> Adjust Value List.</para> <para>Represents the element tag in schema: a:avLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomGeometry.ShapeGuideList"> <summary> <para> List of Shape Guides.</para> <para>Represents the element tag in schema: a:gdLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomGeometry.AdjustHandleList"> <summary> <para> List of Shape Adjust Handles.</para> <para>Represents the element tag in schema: a:ahLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomGeometry.ConnectionSiteList"> <summary> <para> List of Shape Connection Sites.</para> <para>Represents the element tag in schema: a:cxnLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomGeometry.Rectangle"> <summary> <para> Shape Text Rectangle.</para> <para>Represents the element tag in schema: a:rect </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomGeometry.PathList"> <summary> <para> List of Shape Paths.</para> <para>Represents the element tag in schema: a:pathLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetGeometry"> <summary> <para>Preset geometry.</para> <para>When the object is serialized out as xml, its qualified name is a:prstGeom.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AdjustValueList <a:avLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetGeometry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetGeometry.#ctor"> <summary> Initializes a new instance of the PresetGeometry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetGeometry.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresetGeometry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetGeometry.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresetGeometry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetGeometry.#ctor(System.String)"> <summary> Initializes a new instance of the PresetGeometry class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetGeometry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetGeometry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetGeometry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetGeometry.Preset"> <summary> <para> Preset Shape.</para> <para>Represents the attribte in schema: prst </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetGeometry.AdjustValueList"> <summary> <para> List of Shape Adjust Values.</para> <para>Represents the element tag in schema: a:avLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetTextWrap"> <summary> <para>Preset Text Warp.</para> <para>When the object is serialized out as xml, its qualified name is a:prstTxWarp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AdjustValueList <a:avLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetTextWrap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetTextWrap.#ctor"> <summary> Initializes a new instance of the PresetTextWrap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetTextWrap.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresetTextWrap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetTextWrap.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresetTextWrap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetTextWrap.#ctor(System.String)"> <summary> Initializes a new instance of the PresetTextWrap class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetTextWrap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetTextWrap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetTextWrap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetTextWrap.Preset"> <summary> <para> Preset Warp Shape.</para> <para>Represents the attribte in schema: prst </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetTextWrap.AdjustValueList"> <summary> <para> Adjust Value List.</para> <para>Represents the element tag in schema: a:avLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Round"> <summary> <para>Round Line Join.</para> <para>When the object is serialized out as xml, its qualified name is a:round.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Round.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Round.#ctor"> <summary> Initializes a new instance of the Round class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Round.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Round.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Round.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineJoinBevel"> <summary> <para>Line Join Bevel.</para> <para>When the object is serialized out as xml, its qualified name is a:bevel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineJoinBevel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineJoinBevel.#ctor"> <summary> Initializes a new instance of the LineJoinBevel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineJoinBevel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineJoinBevel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineJoinBevel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Miter"> <summary> <para>Miter Line Join.</para> <para>When the object is serialized out as xml, its qualified name is a:miter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Miter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Miter.#ctor"> <summary> Initializes a new instance of the Miter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Miter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Miter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Miter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Miter.Limit"> <summary> <para> Miter Join Limit.</para> <para>Represents the attribte in schema: lim </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetDash"> <summary> <para>Preset Dash.</para> <para>When the object is serialized out as xml, its qualified name is a:prstDash.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetDash.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetDash.#ctor"> <summary> Initializes a new instance of the PresetDash class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PresetDash.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetDash.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetDash.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PresetDash.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.CustomDash"> <summary> <para>Custom Dash.</para> <para>When the object is serialized out as xml, its qualified name is a:custDash.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DashStop <a:ds></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomDash.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomDash.#ctor"> <summary> Initializes a new instance of the CustomDash class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomDash.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomDash class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomDash.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomDash class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomDash.#ctor(System.String)"> <summary> Initializes a new instance of the CustomDash class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomDash.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomDash.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomDash.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FillProperties"> <summary> <para>Fill.</para> <para>When the object is serialized out as xml, its qualified name is a:fill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillProperties.#ctor"> <summary> Initializes a new instance of the FillProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FillProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FillProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillProperties.#ctor(System.String)"> <summary> Initializes a new instance of the FillProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillProperties.NoFill"> <summary> <para> NoFill.</para> <para>Represents the element tag in schema: a:noFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillProperties.SolidFill"> <summary> <para> SolidFill.</para> <para>Represents the element tag in schema: a:solidFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillProperties.GradientFill"> <summary> <para> GradientFill.</para> <para>Represents the element tag in schema: a:gradFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillProperties.BlipFill"> <summary> <para> BlipFill.</para> <para>Represents the element tag in schema: a:blipFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillProperties.PatternFill"> <summary> <para> Pattern Fill.</para> <para>Represents the element tag in schema: a:pattFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillProperties.GroupFill"> <summary> <para> Group Fill.</para> <para>Represents the element tag in schema: a:grpFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FillReference"> <summary> <para>Fill Reference.</para> <para>When the object is serialized out as xml, its qualified name is a:fillRef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType"> <summary> Defines the StyleMatrixReferenceType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.#ctor"> <summary> Initializes a new instance of the StyleMatrixReferenceType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StyleMatrixReferenceType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StyleMatrixReferenceType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.#ctor(System.String)"> <summary> Initializes a new instance of the StyleMatrixReferenceType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.Index"> <summary> <para> Style Matrix Index.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StyleMatrixReferenceType.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillReference.#ctor"> <summary> Initializes a new instance of the FillReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FillReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FillReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillReference.#ctor(System.String)"> <summary> Initializes a new instance of the FillReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectReference"> <summary> <para>Effect Reference.</para> <para>When the object is serialized out as xml, its qualified name is a:effectRef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectReference.#ctor"> <summary> Initializes a new instance of the EffectReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectReference.#ctor(System.String)"> <summary> Initializes a new instance of the EffectReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineReference"> <summary> <para>Defines the LineReference Class.</para> <para>When the object is serialized out as xml, its qualified name is a:lnRef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineReference.#ctor"> <summary> Initializes a new instance of the LineReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LineReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LineReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineReference.#ctor(System.String)"> <summary> Initializes a new instance of the LineReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectPropertiesType"> <summary> <para>Effect.</para> <para>When the object is serialized out as xml, its qualified name is a:effect.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.#ctor"> <summary> Initializes a new instance of the EffectPropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.#ctor(System.String)"> <summary> Initializes a new instance of the EffectPropertiesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.EffectList"> <summary> <para> Effect Container.</para> <para>Represents the element tag in schema: a:effectLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectPropertiesType.EffectDag"> <summary> <para> Effect Container.</para> <para>Represents the element tag in schema: a:effectDag </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Fonts"> <summary> <para>Font.</para> <para>When the object is serialized out as xml, its qualified name is a:font.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LatinFont <a:latin></description></item> <item><description>EastAsianFont <a:ea></description></item> <item><description>ComplexScriptFont <a:cs></description></item> <item><description>SupplementalFont <a:font></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FontCollectionType"> <summary> Defines the FontCollectionType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LatinFont <a:latin></description></item> <item><description>EastAsianFont <a:ea></description></item> <item><description>ComplexScriptFont <a:cs></description></item> <item><description>SupplementalFont <a:font></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontCollectionType.#ctor"> <summary> Initializes a new instance of the FontCollectionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontCollectionType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FontCollectionType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontCollectionType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FontCollectionType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontCollectionType.#ctor(System.String)"> <summary> Initializes a new instance of the FontCollectionType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontCollectionType.LatinFont"> <summary> <para> Latin Font.</para> <para>Represents the element tag in schema: a:latin </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontCollectionType.EastAsianFont"> <summary> <para> East Asian Font.</para> <para>Represents the element tag in schema: a:ea </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontCollectionType.ComplexScriptFont"> <summary> <para> Complex Script Font.</para> <para>Represents the element tag in schema: a:cs </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fonts.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fonts.#ctor"> <summary> Initializes a new instance of the Fonts class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fonts.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Fonts class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fonts.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Fonts class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fonts.#ctor(System.String)"> <summary> Initializes a new instance of the Fonts class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Fonts.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fonts.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Fonts.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.MajorFont"> <summary> <para>Major Font.</para> <para>When the object is serialized out as xml, its qualified name is a:majorFont.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LatinFont <a:latin></description></item> <item><description>EastAsianFont <a:ea></description></item> <item><description>ComplexScriptFont <a:cs></description></item> <item><description>SupplementalFont <a:font></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MajorFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MajorFont.#ctor"> <summary> Initializes a new instance of the MajorFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MajorFont.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MajorFont class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MajorFont.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MajorFont class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MajorFont.#ctor(System.String)"> <summary> Initializes a new instance of the MajorFont class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MajorFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MajorFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MajorFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.MinorFont"> <summary> <para>Minor fonts.</para> <para>When the object is serialized out as xml, its qualified name is a:minorFont.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LatinFont <a:latin></description></item> <item><description>EastAsianFont <a:ea></description></item> <item><description>ComplexScriptFont <a:cs></description></item> <item><description>SupplementalFont <a:font></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MinorFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MinorFont.#ctor"> <summary> Initializes a new instance of the MinorFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MinorFont.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MinorFont class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MinorFont.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MinorFont class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MinorFont.#ctor(System.String)"> <summary> Initializes a new instance of the MinorFont class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MinorFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MinorFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MinorFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FontReference"> <summary> <para>Defines the FontReference Class.</para> <para>When the object is serialized out as xml, its qualified name is a:fontRef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontReference.#ctor"> <summary> Initializes a new instance of the FontReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FontReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FontReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontReference.#ctor(System.String)"> <summary> Initializes a new instance of the FontReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.Index"> <summary> <para> Identifier.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontReference.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NoAutoFit"> <summary> <para>No AutoFit.</para> <para>When the object is serialized out as xml, its qualified name is a:noAutofit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoAutoFit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoAutoFit.#ctor"> <summary> Initializes a new instance of the NoAutoFit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoAutoFit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NoAutoFit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NoAutoFit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NormalAutoFit"> <summary> <para>Normal AutoFit.</para> <para>When the object is serialized out as xml, its qualified name is a:normAutofit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NormalAutoFit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NormalAutoFit.#ctor"> <summary> Initializes a new instance of the NormalAutoFit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NormalAutoFit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NormalAutoFit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NormalAutoFit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NormalAutoFit.FontScale"> <summary> <para> Font Scale.</para> <para>Represents the attribte in schema: fontScale </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NormalAutoFit.LineSpaceReduction"> <summary> <para> Line Space Reduction.</para> <para>Represents the attribte in schema: lnSpcReduction </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapeAutoFit"> <summary> <para>Shape AutoFit.</para> <para>When the object is serialized out as xml, its qualified name is a:spAutoFit.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeAutoFit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeAutoFit.#ctor"> <summary> Initializes a new instance of the ShapeAutoFit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeAutoFit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeAutoFit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeAutoFit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BulletColorText"> <summary> <para>Follow Text.</para> <para>When the object is serialized out as xml, its qualified name is a:buClrTx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColorText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColorText.#ctor"> <summary> Initializes a new instance of the BulletColorText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColorText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletColorText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletColorText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BulletColor"> <summary> <para>Color Specified.</para> <para>When the object is serialized out as xml, its qualified name is a:buClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorType"> <summary> Defines the ColorType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorType.#ctor"> <summary> Initializes a new instance of the ColorType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorType.#ctor(System.String)"> <summary> Initializes a new instance of the ColorType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorType.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorType.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorType.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorType.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorType.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorType.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColor.#ctor"> <summary> Initializes a new instance of the BulletColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BulletColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BulletColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColor.#ctor(System.String)"> <summary> Initializes a new instance of the BulletColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ExtrusionColor"> <summary> <para>Extrusion Color.</para> <para>When the object is serialized out as xml, its qualified name is a:extrusionClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtrusionColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtrusionColor.#ctor"> <summary> Initializes a new instance of the ExtrusionColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtrusionColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtrusionColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtrusionColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtrusionColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtrusionColor.#ctor(System.String)"> <summary> Initializes a new instance of the ExtrusionColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtrusionColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtrusionColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtrusionColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ContourColor"> <summary> <para>Contour Color.</para> <para>When the object is serialized out as xml, its qualified name is a:contourClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ContourColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ContourColor.#ctor"> <summary> Initializes a new instance of the ContourColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ContourColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContourColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ContourColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContourColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ContourColor.#ctor(System.String)"> <summary> Initializes a new instance of the ContourColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ContourColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ContourColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ContourColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorFrom"> <summary> <para>Change Color From.</para> <para>When the object is serialized out as xml, its qualified name is a:clrFrom.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorFrom.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorFrom.#ctor"> <summary> Initializes a new instance of the ColorFrom class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorFrom.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorFrom class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorFrom.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorFrom class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorFrom.#ctor(System.String)"> <summary> Initializes a new instance of the ColorFrom class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorFrom.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorFrom.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorFrom.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorTo"> <summary> <para>Change Color To.</para> <para>When the object is serialized out as xml, its qualified name is a:clrTo.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorTo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorTo.#ctor"> <summary> Initializes a new instance of the ColorTo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorTo.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorTo.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorTo.#ctor(System.String)"> <summary> Initializes a new instance of the ColorTo class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorTo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorTo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorTo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ForegroundColor"> <summary> <para>Foreground color.</para> <para>When the object is serialized out as xml, its qualified name is a:fgClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ForegroundColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ForegroundColor.#ctor"> <summary> Initializes a new instance of the ForegroundColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ForegroundColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ForegroundColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ForegroundColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ForegroundColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ForegroundColor.#ctor(System.String)"> <summary> Initializes a new instance of the ForegroundColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ForegroundColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ForegroundColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ForegroundColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BackgroundColor"> <summary> <para>Background color.</para> <para>When the object is serialized out as xml, its qualified name is a:bgClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundColor.#ctor"> <summary> Initializes a new instance of the BackgroundColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackgroundColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackgroundColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundColor.#ctor(System.String)"> <summary> Initializes a new instance of the BackgroundColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BackgroundColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BackgroundColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Highlight"> <summary> <para>Highlight Color.</para> <para>When the object is serialized out as xml, its qualified name is a:highlight.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Highlight.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Highlight.#ctor"> <summary> Initializes a new instance of the Highlight class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Highlight.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Highlight class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Highlight.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Highlight class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Highlight.#ctor(System.String)"> <summary> Initializes a new instance of the Highlight class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Highlight.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Highlight.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Highlight.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BulletSizeText"> <summary> <para>Bullet Size Follows Text.</para> <para>When the object is serialized out as xml, its qualified name is a:buSzTx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizeText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizeText.#ctor"> <summary> Initializes a new instance of the BulletSizeText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizeText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletSizeText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletSizeText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BulletSizePercentage"> <summary> <para>Bullet Size Percentage.</para> <para>When the object is serialized out as xml, its qualified name is a:buSzPct.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizePercentage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizePercentage.#ctor"> <summary> Initializes a new instance of the BulletSizePercentage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizePercentage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletSizePercentage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletSizePercentage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletSizePercentage.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BulletSizePoints"> <summary> <para>Bullet Size Points.</para> <para>When the object is serialized out as xml, its qualified name is a:buSzPts.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizePoints.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizePoints.#ctor"> <summary> Initializes a new instance of the BulletSizePoints class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletSizePoints.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletSizePoints.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletSizePoints.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletSizePoints.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BulletFontText"> <summary> <para>Follow text.</para> <para>When the object is serialized out as xml, its qualified name is a:buFontTx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletFontText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletFontText.#ctor"> <summary> Initializes a new instance of the BulletFontText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletFontText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletFontText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletFontText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BulletFont"> <summary> <para>Specified.</para> <para>When the object is serialized out as xml, its qualified name is a:buFont.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextFontType"> <summary> Defines the TextFontType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextFontType.#ctor"> <summary> Initializes a new instance of the TextFontType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextFontType.Typeface"> <summary> <para> Text Typeface.</para> <para>Represents the attribte in schema: typeface </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextFontType.Panose"> <summary> <para> Panose Setting.</para> <para>Represents the attribte in schema: panose </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextFontType.PitchFamily"> <summary> <para> Similar Font Family.</para> <para>Represents the attribte in schema: pitchFamily </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextFontType.CharacterSet"> <summary> <para> Similar Character Set.</para> <para>Represents the attribte in schema: charset </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletFont.#ctor"> <summary> Initializes a new instance of the BulletFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BulletFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BulletFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LatinFont"> <summary> <para>Latin Font.</para> <para>When the object is serialized out as xml, its qualified name is a:latin.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LatinFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LatinFont.#ctor"> <summary> Initializes a new instance of the LatinFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LatinFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LatinFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LatinFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EastAsianFont"> <summary> <para>East Asian Font.</para> <para>When the object is serialized out as xml, its qualified name is a:ea.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EastAsianFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EastAsianFont.#ctor"> <summary> Initializes a new instance of the EastAsianFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EastAsianFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EastAsianFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EastAsianFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ComplexScriptFont"> <summary> <para>Complex Script Font.</para> <para>When the object is serialized out as xml, its qualified name is a:cs.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ComplexScriptFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ComplexScriptFont.#ctor"> <summary> Initializes a new instance of the ComplexScriptFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ComplexScriptFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ComplexScriptFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ComplexScriptFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SymbolFont"> <summary> <para>Symbol Font.</para> <para>When the object is serialized out as xml, its qualified name is a:sym.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SymbolFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SymbolFont.#ctor"> <summary> Initializes a new instance of the SymbolFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SymbolFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SymbolFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SymbolFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NoBullet"> <summary> <para>No Bullet.</para> <para>When the object is serialized out as xml, its qualified name is a:buNone.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoBullet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoBullet.#ctor"> <summary> Initializes a new instance of the NoBullet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NoBullet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NoBullet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NoBullet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AutoNumberedBullet"> <summary> <para>Auto-Numbered Bullet.</para> <para>When the object is serialized out as xml, its qualified name is a:buAutoNum.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AutoNumberedBullet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AutoNumberedBullet.#ctor"> <summary> Initializes a new instance of the AutoNumberedBullet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AutoNumberedBullet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AutoNumberedBullet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AutoNumberedBullet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AutoNumberedBullet.Type"> <summary> <para> Bullet Autonumbering Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AutoNumberedBullet.StartAt"> <summary> <para> Start Numbering At.</para> <para>Represents the attribte in schema: startAt </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.CharacterBullet"> <summary> <para>Character Bullet.</para> <para>When the object is serialized out as xml, its qualified name is a:buChar.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CharacterBullet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CharacterBullet.#ctor"> <summary> Initializes a new instance of the CharacterBullet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CharacterBullet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CharacterBullet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CharacterBullet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CharacterBullet.Char"> <summary> <para> Bullet Character.</para> <para>Represents the attribte in schema: char </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PictureBullet"> <summary> <para>Picture Bullet.</para> <para>When the object is serialized out as xml, its qualified name is a:buBlip.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Blip <a:blip></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureBullet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureBullet.#ctor"> <summary> Initializes a new instance of the PictureBullet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureBullet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PictureBullet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureBullet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PictureBullet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureBullet.#ctor(System.String)"> <summary> Initializes a new instance of the PictureBullet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureBullet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureBullet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureBullet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureBullet.Blip"> <summary> <para> Blip.</para> <para>Represents the element tag in schema: a:blip </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.UnderlineFollowsText"> <summary> <para>Underline Follows Text.</para> <para>When the object is serialized out as xml, its qualified name is a:uLnTx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFollowsText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFollowsText.#ctor"> <summary> Initializes a new instance of the UnderlineFollowsText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFollowsText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFollowsText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFollowsText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Underline"> <summary> <para>Underline Stroke.</para> <para>When the object is serialized out as xml, its qualified name is a:uLn.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LinePropertiesType"> <summary> Defines the LinePropertiesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LinePropertiesType.#ctor"> <summary> Initializes a new instance of the LinePropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LinePropertiesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LinePropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LinePropertiesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LinePropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LinePropertiesType.#ctor(System.String)"> <summary> Initializes a new instance of the LinePropertiesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LinePropertiesType.Width"> <summary> <para> Line Width.</para> <para>Represents the attribte in schema: w </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LinePropertiesType.CapType"> <summary> <para> Line Ending Cap Type.</para> <para>Represents the attribte in schema: cap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LinePropertiesType.CompoundLineType"> <summary> <para> Compound Line Type.</para> <para>Represents the attribte in schema: cmpd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LinePropertiesType.Alignment"> <summary> <para> Stroke Alignment.</para> <para>Represents the attribte in schema: algn </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Underline.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Underline.#ctor"> <summary> Initializes a new instance of the Underline class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Underline.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Underline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Underline.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Underline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Underline.#ctor(System.String)"> <summary> Initializes a new instance of the Underline class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Underline.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Underline.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Underline.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Outline"> <summary> <para>Defines the Outline Class.</para> <para>When the object is serialized out as xml, its qualified name is a:ln.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Outline.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Outline.#ctor"> <summary> Initializes a new instance of the Outline class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Outline.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Outline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Outline.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Outline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Outline.#ctor(System.String)"> <summary> Initializes a new instance of the Outline class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Outline.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Outline.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Outline.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties"> <summary> <para>Left Border Line Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:lnL.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties.#ctor"> <summary> Initializes a new instance of the LeftBorderLineProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LeftBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LeftBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties.#ctor(System.String)"> <summary> Initializes a new instance of the LeftBorderLineProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LeftBorderLineProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties"> <summary> <para>Right Border Line Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:lnR.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties.#ctor"> <summary> Initializes a new instance of the RightBorderLineProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RightBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RightBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties.#ctor(System.String)"> <summary> Initializes a new instance of the RightBorderLineProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RightBorderLineProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties"> <summary> <para>Top Border Line Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:lnT.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties.#ctor"> <summary> Initializes a new instance of the TopBorderLineProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TopBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TopBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties.#ctor(System.String)"> <summary> Initializes a new instance of the TopBorderLineProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopBorderLineProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties"> <summary> <para>Bottom Border Line Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:lnB.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties.#ctor"> <summary> Initializes a new instance of the BottomBorderLineProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BottomBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BottomBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties.#ctor(System.String)"> <summary> Initializes a new instance of the BottomBorderLineProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BottomBorderLineProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties"> <summary> <para>Top-Left to Bottom-Right Border Line Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:lnTlToBr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties.#ctor"> <summary> Initializes a new instance of the TopLeftToBottomRightBorderLineProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TopLeftToBottomRightBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TopLeftToBottomRightBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties.#ctor(System.String)"> <summary> Initializes a new instance of the TopLeftToBottomRightBorderLineProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorderLineProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties"> <summary> <para>Bottom-Left to Top-Right Border Line Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:lnBlToTr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>PresetDash <a:prstDash></description></item> <item><description>CustomDash <a:custDash></description></item> <item><description>Round <a:round></description></item> <item><description>LineJoinBevel <a:bevel></description></item> <item><description>Miter <a:miter></description></item> <item><description>HeadEnd <a:headEnd></description></item> <item><description>TailEnd <a:tailEnd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties.#ctor"> <summary> Initializes a new instance of the BottomLeftToTopRightBorderLineProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BottomLeftToTopRightBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BottomLeftToTopRightBorderLineProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties.#ctor(System.String)"> <summary> Initializes a new instance of the BottomLeftToTopRightBorderLineProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BottomLeftToTopRightBorderLineProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.UnderlineFillText"> <summary> <para>Underline Fill Properties Follow Text.</para> <para>When the object is serialized out as xml, its qualified name is a:uFillTx.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFillText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFillText.#ctor"> <summary> Initializes a new instance of the UnderlineFillText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFillText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFillText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFillText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.UnderlineFill"> <summary> <para>Underline Fill.</para> <para>When the object is serialized out as xml, its qualified name is a:uFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFill.#ctor"> <summary> Initializes a new instance of the UnderlineFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the UnderlineFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the UnderlineFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFill.#ctor(System.String)"> <summary> Initializes a new instance of the UnderlineFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UnderlineFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFill.NoFill"> <summary> <para> NoFill.</para> <para>Represents the element tag in schema: a:noFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFill.SolidFill"> <summary> <para> SolidFill.</para> <para>Represents the element tag in schema: a:solidFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFill.GradientFill"> <summary> <para> GradientFill.</para> <para>Represents the element tag in schema: a:gradFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFill.BlipFill"> <summary> <para> BlipFill.</para> <para>Represents the element tag in schema: a:blipFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFill.PatternFill"> <summary> <para> Pattern Fill.</para> <para>Represents the element tag in schema: a:pattFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UnderlineFill.GroupFill"> <summary> <para> Group Fill.</para> <para>Represents the element tag in schema: a:grpFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Run"> <summary> <para>Text Run.</para> <para>When the object is serialized out as xml, its qualified name is a:r.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RunProperties <a:rPr></description></item> <item><description>Text <a:t></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Run.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Run.#ctor"> <summary> Initializes a new instance of the Run class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Run.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Run class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Run.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Run class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Run.#ctor(System.String)"> <summary> Initializes a new instance of the Run class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Run.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Run.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Run.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Run.RunProperties"> <summary> <para> Text Character Properties.</para> <para>Represents the element tag in schema: a:rPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Run.Text"> <summary> <para> Text String.</para> <para>Represents the element tag in schema: a:t </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Break"> <summary> <para>Text Line Break.</para> <para>When the object is serialized out as xml, its qualified name is a:br.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RunProperties <a:rPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Break.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Break.#ctor"> <summary> Initializes a new instance of the Break class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Break.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Break class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Break.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Break class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Break.#ctor(System.String)"> <summary> Initializes a new instance of the Break class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Break.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Break.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Break.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Break.RunProperties"> <summary> <para> Text Run Properties.</para> <para>Represents the element tag in schema: a:rPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Field"> <summary> <para>Text Field.</para> <para>When the object is serialized out as xml, its qualified name is a:fld.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RunProperties <a:rPr></description></item> <item><description>ParagraphProperties <a:pPr></description></item> <item><description>Text <a:t></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Field.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Field.#ctor"> <summary> Initializes a new instance of the Field class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Field.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Field class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Field.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Field class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Field.#ctor(System.String)"> <summary> Initializes a new instance of the Field class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Field.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Field.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Field.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Field.Id"> <summary> <para> Field ID.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Field.Type"> <summary> <para> Field Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Field.RunProperties"> <summary> <para> Text Character Properties.</para> <para>Represents the element tag in schema: a:rPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Field.ParagraphProperties"> <summary> <para> Text Paragraph Properties.</para> <para>Represents the element tag in schema: a:pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Field.Text"> <summary> <para> Text.</para> <para>Represents the element tag in schema: a:t </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Graphic"> <summary> <para>Graphic Object.</para> <para>When the object is serialized out as xml, its qualified name is a:graphic.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GraphicData <a:graphicData></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Graphic.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Graphic.#ctor"> <summary> Initializes a new instance of the Graphic class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Graphic.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Graphic class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Graphic.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Graphic class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Graphic.#ctor(System.String)"> <summary> Initializes a new instance of the Graphic class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Graphic.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Graphic.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Graphic.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Graphic.GraphicData"> <summary> <para> Graphic Object Data.</para> <para>Represents the element tag in schema: a:graphicData </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Blip"> <summary> <para>Defines the Blip Class.</para> <para>When the object is serialized out as xml, its qualified name is a:blip.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AlphaBiLevel <a:alphaBiLevel></description></item> <item><description>AlphaCeiling <a:alphaCeiling></description></item> <item><description>AlphaFloor <a:alphaFloor></description></item> <item><description>AlphaInverse <a:alphaInv></description></item> <item><description>AlphaModulationEffect <a:alphaMod></description></item> <item><description>AlphaModulationFixed <a:alphaModFix></description></item> <item><description>AlphaReplace <a:alphaRepl></description></item> <item><description>BiLevel <a:biLevel></description></item> <item><description>Blur <a:blur></description></item> <item><description>ColorChange <a:clrChange></description></item> <item><description>ColorReplacement <a:clrRepl></description></item> <item><description>Duotone <a:duotone></description></item> <item><description>FillOverlay <a:fillOverlay></description></item> <item><description>Grayscale <a:grayscl></description></item> <item><description>Hsl <a:hsl></description></item> <item><description>LuminanceEffect <a:lum></description></item> <item><description>TintEffect <a:tint></description></item> <item><description>BlipExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blip.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blip.#ctor"> <summary> Initializes a new instance of the Blip class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blip.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Blip class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blip.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Blip class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blip.#ctor(System.String)"> <summary> Initializes a new instance of the Blip class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Blip.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blip.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blip.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blip.Embed"> <summary> <para> Embedded Picture Reference.</para> <para>Represents the attribte in schema: r:embed </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blip.Link"> <summary> <para> Linked Picture Reference.</para> <para>Represents the attribte in schema: r:link </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Blip.CompressionState"> <summary> <para> Compression State.</para> <para>Represents the attribte in schema: cstate </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Theme"> <summary> <para>Theme. It is the root element of ThemePart.</para> <para>When the object is serialized out as xml, its qualified name is a:theme.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ThemeElements <a:themeElements></description></item> <item><description>ObjectDefaults <a:objectDefaults></description></item> <item><description>ExtraColorSchemeList <a:extraClrSchemeLst></description></item> <item><description>CustomColorList <a:custClrLst></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.#ctor(DocumentFormat.OpenXml.Packaging.ThemePart)"> <summary> Theme constructor </summary> <param name="ownerPart">The owner part of the Theme</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.Load(DocumentFormat.OpenXml.Packaging.ThemePart)"> <summary> Loads the DOM from the ThemePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Theme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Theme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.#ctor(System.String)"> <summary> Initializes a new instance of the Theme class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.#ctor"> <summary> Initializes a new instance of the Theme class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.Save(DocumentFormat.OpenXml.Packaging.ThemePart)"> <summary> Saves the DOM into the ThemePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Theme.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.ThemePart"> <summary> Gets the ThemePart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.ThemeElements"> <summary> <para> Theme Elements.</para> <para>Represents the element tag in schema: a:themeElements </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.ObjectDefaults"> <summary> <para> Object Defaults.</para> <para>Represents the element tag in schema: a:objectDefaults </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.ExtraColorSchemeList"> <summary> <para> Extra Color Scheme List.</para> <para>Represents the element tag in schema: a:extraClrSchemeLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.CustomColorList"> <summary> <para> Custom Color List.</para> <para>Represents the element tag in schema: a:custClrLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Theme.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ThemeOverride"> <summary> <para>Theme Override. It is the root element of ThemeOverridePart.</para> <para>When the object is serialized out as xml, its qualified name is a:themeOverride.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColorScheme <a:clrScheme></description></item> <item><description>FontScheme <a:fontScheme></description></item> <item><description>FormatScheme <a:fmtScheme></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.#ctor(DocumentFormat.OpenXml.Packaging.ThemeOverridePart)"> <summary> ThemeOverride constructor </summary> <param name="ownerPart">The owner part of the ThemeOverride</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.Load(DocumentFormat.OpenXml.Packaging.ThemeOverridePart)"> <summary> Loads the DOM from the ThemeOverridePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ThemeOverride class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ThemeOverride class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.#ctor(System.String)"> <summary> Initializes a new instance of the ThemeOverride class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.#ctor"> <summary> Initializes a new instance of the ThemeOverride class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.Save(DocumentFormat.OpenXml.Packaging.ThemeOverridePart)"> <summary> Saves the DOM into the ThemeOverridePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeOverride.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeOverride.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeOverride.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeOverride.ThemeOverridePart"> <summary> Gets the ThemeOverridePart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeOverride.ColorScheme"> <summary> <para> Color Scheme.</para> <para>Represents the element tag in schema: a:clrScheme </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeOverride.FontScheme"> <summary> <para> FontScheme.</para> <para>Represents the element tag in schema: a:fontScheme </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeOverride.FormatScheme"> <summary> <para> FormatScheme.</para> <para>Represents the element tag in schema: a:fmtScheme </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ThemeManager"> <summary> <para>Theme Manager.</para> <para>When the object is serialized out as xml, its qualified name is a:themeManager.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EmptyType"> <summary> Defines the EmptyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EmptyType.#ctor"> <summary> Initializes a new instance of the EmptyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeManager.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeManager.#ctor"> <summary> Initializes a new instance of the ThemeManager class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeManager.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeManager.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeManager.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.MasterColorMapping"> <summary> <para>Master Color Mapping.</para> <para>When the object is serialized out as xml, its qualified name is a:masterClrMapping.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MasterColorMapping.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MasterColorMapping.#ctor"> <summary> Initializes a new instance of the MasterColorMapping class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MasterColorMapping.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MasterColorMapping.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MasterColorMapping.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Table"> <summary> <para>Table.</para> <para>When the object is serialized out as xml, its qualified name is a:tbl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableProperties <a:tblPr></description></item> <item><description>TableGrid <a:tblGrid></description></item> <item><description>TableRow <a:tr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Table.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Table.#ctor"> <summary> Initializes a new instance of the Table class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Table.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Table class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Table.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Table class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Table.#ctor(System.String)"> <summary> Initializes a new instance of the Table class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Table.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Table.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Table.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Table.TableProperties"> <summary> <para> Table Properties.</para> <para>Represents the element tag in schema: a:tblPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Table.TableGrid"> <summary> <para> Table Grid.</para> <para>Represents the element tag in schema: a:tblGrid </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableStyleList"> <summary> <para>Table Style List. It is the root element of TableStylesPart.</para> <para>When the object is serialized out as xml, its qualified name is a:tblStyleLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableStyleEntry <a:tblStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.#ctor(DocumentFormat.OpenXml.Packaging.TableStylesPart)"> <summary> TableStyleList constructor </summary> <param name="ownerPart">The owner part of the TableStyleList</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.Load(DocumentFormat.OpenXml.Packaging.TableStylesPart)"> <summary> Loads the DOM from the TableStylesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.#ctor(System.String)"> <summary> Initializes a new instance of the TableStyleList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.#ctor"> <summary> Initializes a new instance of the TableStyleList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.Save(DocumentFormat.OpenXml.Packaging.TableStylesPart)"> <summary> Saves the DOM into the TableStylesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleList.Default"> <summary> <para> Default.</para> <para>Represents the attribte in schema: def </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleList.TableStylesPart"> <summary> Gets the TableStylesPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ExtensionList"> <summary> <para>Defines the ExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is a:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Extension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtensionList.#ctor"> <summary> Initializes a new instance of the ExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.StartTime"> <summary> <para>Audio Start Time.</para> <para>When the object is serialized out as xml, its qualified name is a:st.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AudioCDTimeType"> <summary> Defines the AudioCDTimeType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AudioCDTimeType.#ctor"> <summary> Initializes a new instance of the AudioCDTimeType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioCDTimeType.Track"> <summary> <para> Track.</para> <para>Represents the attribte in schema: track </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AudioCDTimeType.Time"> <summary> <para> Time.</para> <para>Represents the attribte in schema: time </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StartTime.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StartTime.#ctor"> <summary> Initializes a new instance of the StartTime class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StartTime.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StartTime.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StartTime.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EndTime"> <summary> <para>Audio End Time.</para> <para>When the object is serialized out as xml, its qualified name is a:end.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndTime.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndTime.#ctor"> <summary> Initializes a new instance of the EndTime class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndTime.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EndTime.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EndTime.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.CustomColor"> <summary> <para>Custom color.</para> <para>When the object is serialized out as xml, its qualified name is a:custClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColor.#ctor"> <summary> Initializes a new instance of the CustomColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColor.#ctor(System.String)"> <summary> Initializes a new instance of the CustomColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColor.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SupplementalFont"> <summary> <para>Font.</para> <para>When the object is serialized out as xml, its qualified name is a:font.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SupplementalFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SupplementalFont.#ctor"> <summary> Initializes a new instance of the SupplementalFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SupplementalFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SupplementalFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SupplementalFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SupplementalFont.Script"> <summary> <para> Script.</para> <para>Represents the attribte in schema: script </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SupplementalFont.Typeface"> <summary> <para> Typeface.</para> <para>Represents the attribte in schema: typeface </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Scene3DType"> <summary> <para>3D Scene Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:scene3d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Camera <a:camera></description></item> <item><description>LightRig <a:lightRig></description></item> <item><description>Backdrop <a:backdrop></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Scene3DType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Scene3DType.#ctor"> <summary> Initializes a new instance of the Scene3DType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Scene3DType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Scene3DType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Scene3DType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Scene3DType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Scene3DType.#ctor(System.String)"> <summary> Initializes a new instance of the Scene3DType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Scene3DType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Scene3DType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Scene3DType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Scene3DType.Camera"> <summary> <para> Camera.</para> <para>Represents the element tag in schema: a:camera </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Scene3DType.LightRig"> <summary> <para> Light Rig.</para> <para>Represents the element tag in schema: a:lightRig </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Scene3DType.Backdrop"> <summary> <para> Backdrop Plane.</para> <para>Represents the element tag in schema: a:backdrop </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Scene3DType.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectStyle"> <summary> <para>Effect Style.</para> <para>When the object is serialized out as xml, its qualified name is a:effectStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> <item><description>Scene3DType <a:scene3d></description></item> <item><description>Shape3DType <a:sp3d></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyle.#ctor"> <summary> Initializes a new instance of the EffectStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyle.#ctor(System.String)"> <summary> Initializes a new instance of the EffectStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FillStyleList"> <summary> <para>Fill Style List.</para> <para>When the object is serialized out as xml, its qualified name is a:fillStyleLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillStyleList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillStyleList.#ctor"> <summary> Initializes a new instance of the FillStyleList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillStyleList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FillStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillStyleList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FillStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillStyleList.#ctor(System.String)"> <summary> Initializes a new instance of the FillStyleList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillStyleList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillStyleList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillStyleList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineStyleList"> <summary> <para>Line Style List.</para> <para>When the object is serialized out as xml, its qualified name is a:lnStyleLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineStyleList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineStyleList.#ctor"> <summary> Initializes a new instance of the LineStyleList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineStyleList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LineStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineStyleList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LineStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineStyleList.#ctor(System.String)"> <summary> Initializes a new instance of the LineStyleList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineStyleList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineStyleList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineStyleList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectStyleList"> <summary> <para>Effect Style List.</para> <para>When the object is serialized out as xml, its qualified name is a:effectStyleLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectStyle <a:effectStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyleList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyleList.#ctor"> <summary> Initializes a new instance of the EffectStyleList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyleList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EffectStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyleList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EffectStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyleList.#ctor(System.String)"> <summary> Initializes a new instance of the EffectStyleList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EffectStyleList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectStyleList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EffectStyleList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList"> <summary> <para>Background Fill Style List.</para> <para>When the object is serialized out as xml, its qualified name is a:bgFillStyleLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList.#ctor"> <summary> Initializes a new instance of the BackgroundFillStyleList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackgroundFillStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackgroundFillStyleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList.#ctor(System.String)"> <summary> Initializes a new instance of the BackgroundFillStyleList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BackgroundFillStyleList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorScheme"> <summary> <para>Defines the ColorScheme Class.</para> <para>When the object is serialized out as xml, its qualified name is a:clrScheme.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Dark1Color <a:dk1></description></item> <item><description>Light1Color <a:lt1></description></item> <item><description>Dark2Color <a:dk2></description></item> <item><description>Light2Color <a:lt2></description></item> <item><description>Accent1Color <a:accent1></description></item> <item><description>Accent2Color <a:accent2></description></item> <item><description>Accent3Color <a:accent3></description></item> <item><description>Accent4Color <a:accent4></description></item> <item><description>Accent5Color <a:accent5></description></item> <item><description>Accent6Color <a:accent6></description></item> <item><description>Hyperlink <a:hlink></description></item> <item><description>FollowedHyperlinkColor <a:folHlink></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorScheme.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorScheme.#ctor"> <summary> Initializes a new instance of the ColorScheme class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorScheme.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorScheme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorScheme.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorScheme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorScheme.#ctor(System.String)"> <summary> Initializes a new instance of the ColorScheme class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorScheme.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Dark1Color"> <summary> <para> Dark 1.</para> <para>Represents the element tag in schema: a:dk1 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Light1Color"> <summary> <para> Light 1.</para> <para>Represents the element tag in schema: a:lt1 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Dark2Color"> <summary> <para> Dark 2.</para> <para>Represents the element tag in schema: a:dk2 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Light2Color"> <summary> <para> Light 2.</para> <para>Represents the element tag in schema: a:lt2 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Accent1Color"> <summary> <para> Accent 1.</para> <para>Represents the element tag in schema: a:accent1 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Accent2Color"> <summary> <para> Accent 2.</para> <para>Represents the element tag in schema: a:accent2 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Accent3Color"> <summary> <para> Accent 3.</para> <para>Represents the element tag in schema: a:accent3 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Accent4Color"> <summary> <para> Accent 4.</para> <para>Represents the element tag in schema: a:accent4 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Accent5Color"> <summary> <para> Accent 5.</para> <para>Represents the element tag in schema: a:accent5 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Accent6Color"> <summary> <para> Accent 6.</para> <para>Represents the element tag in schema: a:accent6 </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.Hyperlink"> <summary> <para> Hyperlink.</para> <para>Represents the element tag in schema: a:hlink </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.FollowedHyperlinkColor"> <summary> <para> Followed Hyperlink.</para> <para>Represents the element tag in schema: a:folHlink </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorScheme.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FontScheme"> <summary> <para>Font Scheme.</para> <para>When the object is serialized out as xml, its qualified name is a:fontScheme.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MajorFont <a:majorFont></description></item> <item><description>MinorFont <a:minorFont></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontScheme.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontScheme.#ctor"> <summary> Initializes a new instance of the FontScheme class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontScheme.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FontScheme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontScheme.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FontScheme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontScheme.#ctor(System.String)"> <summary> Initializes a new instance of the FontScheme class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FontScheme.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontScheme.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontScheme.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontScheme.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontScheme.MajorFont"> <summary> <para> Major Font.</para> <para>Represents the element tag in schema: a:majorFont </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontScheme.MinorFont"> <summary> <para> Minor fonts.</para> <para>Represents the element tag in schema: a:minorFont </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FontScheme.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FormatScheme"> <summary> <para>Format Scheme.</para> <para>When the object is serialized out as xml, its qualified name is a:fmtScheme.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FillStyleList <a:fillStyleLst></description></item> <item><description>LineStyleList <a:lnStyleLst></description></item> <item><description>EffectStyleList <a:effectStyleLst></description></item> <item><description>BackgroundFillStyleList <a:bgFillStyleLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FormatScheme.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FormatScheme.#ctor"> <summary> Initializes a new instance of the FormatScheme class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FormatScheme.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FormatScheme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FormatScheme.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FormatScheme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FormatScheme.#ctor(System.String)"> <summary> Initializes a new instance of the FormatScheme class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FormatScheme.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FormatScheme.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FormatScheme.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FormatScheme.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FormatScheme.FillStyleList"> <summary> <para> Fill Style List.</para> <para>Represents the element tag in schema: a:fillStyleLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FormatScheme.LineStyleList"> <summary> <para> Line Style List.</para> <para>Represents the element tag in schema: a:lnStyleLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FormatScheme.EffectStyleList"> <summary> <para> Effect Style List.</para> <para>Represents the element tag in schema: a:effectStyleLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FormatScheme.BackgroundFillStyleList"> <summary> <para> Background Fill Style List.</para> <para>Represents the element tag in schema: a:bgFillStyleLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Dark1Color"> <summary> <para>Dark 1.</para> <para>When the object is serialized out as xml, its qualified name is a:dk1.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Color2Type"> <summary> Defines the Color2Type class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Color2Type.#ctor"> <summary> Initializes a new instance of the Color2Type class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Color2Type.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Color2Type class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Color2Type.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Color2Type class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Color2Type.#ctor(System.String)"> <summary> Initializes a new instance of the Color2Type class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Color2Type.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Color2Type.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Color2Type.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Color2Type.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Color2Type.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark1Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark1Color.#ctor"> <summary> Initializes a new instance of the Dark1Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark1Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Dark1Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark1Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Dark1Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark1Color.#ctor(System.String)"> <summary> Initializes a new instance of the Dark1Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark1Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Dark1Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Dark1Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Light1Color"> <summary> <para>Light 1.</para> <para>When the object is serialized out as xml, its qualified name is a:lt1.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light1Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light1Color.#ctor"> <summary> Initializes a new instance of the Light1Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light1Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Light1Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light1Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Light1Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light1Color.#ctor(System.String)"> <summary> Initializes a new instance of the Light1Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light1Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Light1Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Light1Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Dark2Color"> <summary> <para>Dark 2.</para> <para>When the object is serialized out as xml, its qualified name is a:dk2.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark2Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark2Color.#ctor"> <summary> Initializes a new instance of the Dark2Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark2Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Dark2Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark2Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Dark2Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark2Color.#ctor(System.String)"> <summary> Initializes a new instance of the Dark2Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Dark2Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Dark2Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Dark2Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Light2Color"> <summary> <para>Light 2.</para> <para>When the object is serialized out as xml, its qualified name is a:lt2.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light2Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light2Color.#ctor"> <summary> Initializes a new instance of the Light2Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light2Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Light2Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light2Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Light2Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light2Color.#ctor(System.String)"> <summary> Initializes a new instance of the Light2Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Light2Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Light2Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Light2Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Accent1Color"> <summary> <para>Accent 1.</para> <para>When the object is serialized out as xml, its qualified name is a:accent1.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent1Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent1Color.#ctor"> <summary> Initializes a new instance of the Accent1Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent1Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Accent1Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent1Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Accent1Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent1Color.#ctor(System.String)"> <summary> Initializes a new instance of the Accent1Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent1Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent1Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent1Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Accent2Color"> <summary> <para>Accent 2.</para> <para>When the object is serialized out as xml, its qualified name is a:accent2.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent2Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent2Color.#ctor"> <summary> Initializes a new instance of the Accent2Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent2Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Accent2Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent2Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Accent2Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent2Color.#ctor(System.String)"> <summary> Initializes a new instance of the Accent2Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent2Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent2Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent2Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Accent3Color"> <summary> <para>Accent 3.</para> <para>When the object is serialized out as xml, its qualified name is a:accent3.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent3Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent3Color.#ctor"> <summary> Initializes a new instance of the Accent3Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent3Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Accent3Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent3Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Accent3Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent3Color.#ctor(System.String)"> <summary> Initializes a new instance of the Accent3Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent3Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent3Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent3Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Accent4Color"> <summary> <para>Accent 4.</para> <para>When the object is serialized out as xml, its qualified name is a:accent4.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent4Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent4Color.#ctor"> <summary> Initializes a new instance of the Accent4Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent4Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Accent4Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent4Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Accent4Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent4Color.#ctor(System.String)"> <summary> Initializes a new instance of the Accent4Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent4Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent4Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent4Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Accent5Color"> <summary> <para>Accent 5.</para> <para>When the object is serialized out as xml, its qualified name is a:accent5.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent5Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent5Color.#ctor"> <summary> Initializes a new instance of the Accent5Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent5Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Accent5Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent5Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Accent5Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent5Color.#ctor(System.String)"> <summary> Initializes a new instance of the Accent5Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent5Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent5Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent5Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Accent6Color"> <summary> <para>Accent 6.</para> <para>When the object is serialized out as xml, its qualified name is a:accent6.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent6Color.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent6Color.#ctor"> <summary> Initializes a new instance of the Accent6Color class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent6Color.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Accent6Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent6Color.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Accent6Color class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent6Color.#ctor(System.String)"> <summary> Initializes a new instance of the Accent6Color class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Accent6Color.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent6Color.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Accent6Color.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Hyperlink"> <summary> <para>Hyperlink.</para> <para>When the object is serialized out as xml, its qualified name is a:hlink.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hyperlink.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hyperlink.#ctor"> <summary> Initializes a new instance of the Hyperlink class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hyperlink.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Hyperlink class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hyperlink.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Hyperlink class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hyperlink.#ctor(System.String)"> <summary> Initializes a new instance of the Hyperlink class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Hyperlink.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hyperlink.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Hyperlink.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor"> <summary> <para>Followed Hyperlink.</para> <para>When the object is serialized out as xml, its qualified name is a:folHlink.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor.#ctor"> <summary> Initializes a new instance of the FollowedHyperlinkColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FollowedHyperlinkColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FollowedHyperlinkColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor.#ctor(System.String)"> <summary> Initializes a new instance of the FollowedHyperlinkColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FollowedHyperlinkColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ScaleX"> <summary> <para>Horizontal Ratio.</para> <para>When the object is serialized out as xml, its qualified name is a:sx.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RatioType"> <summary> Defines the RatioType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RatioType.#ctor"> <summary> Initializes a new instance of the RatioType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RatioType.Numerator"> <summary> <para> Numerator.</para> <para>Represents the attribte in schema: n </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RatioType.Denominator"> <summary> <para> Denominator.</para> <para>Represents the attribte in schema: d </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ScaleX.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ScaleX.#ctor"> <summary> Initializes a new instance of the ScaleX class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ScaleX.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ScaleX.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ScaleX.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ScaleY"> <summary> <para>Vertical Ratio.</para> <para>When the object is serialized out as xml, its qualified name is a:sy.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ScaleY.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ScaleY.#ctor"> <summary> Initializes a new instance of the ScaleY class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ScaleY.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ScaleY.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ScaleY.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Offset"> <summary> <para>Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:off.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Point2DType"> <summary> Defines the Point2DType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Point2DType.#ctor"> <summary> Initializes a new instance of the Point2DType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Point2DType.X"> <summary> <para> X-Axis Coordinate.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Point2DType.Y"> <summary> <para> Y-Axis Coordinate.</para> <para>Represents the attribte in schema: y </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Offset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Offset.#ctor"> <summary> Initializes a new instance of the Offset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Offset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Offset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Offset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChildOffset"> <summary> <para>Child Offset.</para> <para>When the object is serialized out as xml, its qualified name is a:chOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChildOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChildOffset.#ctor"> <summary> Initializes a new instance of the ChildOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChildOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChildOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChildOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Extents"> <summary> <para>Extents.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PositiveSize2DType"> <summary> Defines the PositiveSize2DType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PositiveSize2DType.#ctor"> <summary> Initializes a new instance of the PositiveSize2DType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PositiveSize2DType.Cx"> <summary> <para> Extent Length.</para> <para>Represents the attribte in schema: cx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PositiveSize2DType.Cy"> <summary> <para> Extent Width.</para> <para>Represents the attribte in schema: cy </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extents.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extents.#ctor"> <summary> Initializes a new instance of the Extents class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Extents.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Extents.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Extents.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChildExtents"> <summary> <para>Child Extents.</para> <para>When the object is serialized out as xml, its qualified name is a:chExt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChildExtents.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChildExtents.#ctor"> <summary> Initializes a new instance of the ChildExtents class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ChildExtents.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChildExtents.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ChildExtents.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapeLocks"> <summary> <para>Shape Locks.</para> <para>When the object is serialized out as xml, its qualified name is a:spLocks.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeLocks.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeLocks.#ctor"> <summary> Initializes a new instance of the ShapeLocks class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeLocks.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeLocks.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeLocks.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeLocks class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeLocks.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoGrouping"> <summary> <para> Disallow Shape Grouping.</para> <para>Represents the attribte in schema: noGrp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoSelection"> <summary> <para> Disallow Shape Selection.</para> <para>Represents the attribte in schema: noSelect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoRotation"> <summary> <para> Disallow Shape Rotation.</para> <para>Represents the attribte in schema: noRot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoChangeAspect"> <summary> <para> Disallow Aspect Ratio Change.</para> <para>Represents the attribte in schema: noChangeAspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoMove"> <summary> <para> Disallow Shape Movement.</para> <para>Represents the attribte in schema: noMove </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoResize"> <summary> <para> Disallow Shape Resize.</para> <para>Represents the attribte in schema: noResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoEditPoints"> <summary> <para> Disallow Shape Point Editing.</para> <para>Represents the attribte in schema: noEditPoints </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoAdjustHandles"> <summary> <para> Disallow Showing Adjust Handles.</para> <para>Represents the attribte in schema: noAdjustHandles </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoChangeArrowheads"> <summary> <para> Disallow Arrowhead Changes.</para> <para>Represents the attribte in schema: noChangeArrowheads </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoChangeShapeType"> <summary> <para> Disallow Shape Type Change.</para> <para>Represents the attribte in schema: noChangeShapeType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.NoTextEdit"> <summary> <para> Disallow Shape Text Editing.</para> <para>Represents the attribte in schema: noTextEdit </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeLocks.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks"> <summary> <para>Connection Shape Locks.</para> <para>When the object is serialized out as xml, its qualified name is a:cxnSpLocks.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.#ctor"> <summary> Initializes a new instance of the ConnectionShapeLocks class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConnectionShapeLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConnectionShapeLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.#ctor(System.String)"> <summary> Initializes a new instance of the ConnectionShapeLocks class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoGrouping"> <summary> <para> Disallow Shape Grouping.</para> <para>Represents the attribte in schema: noGrp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoSelection"> <summary> <para> Disallow Shape Selection.</para> <para>Represents the attribte in schema: noSelect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoRotation"> <summary> <para> Disallow Shape Rotation.</para> <para>Represents the attribte in schema: noRot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoChangeAspect"> <summary> <para> Disallow Aspect Ratio Change.</para> <para>Represents the attribte in schema: noChangeAspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoMove"> <summary> <para> Disallow Shape Movement.</para> <para>Represents the attribte in schema: noMove </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoResize"> <summary> <para> Disallow Shape Resize.</para> <para>Represents the attribte in schema: noResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoEditPoints"> <summary> <para> Disallow Shape Point Editing.</para> <para>Represents the attribte in schema: noEditPoints </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoAdjustHandles"> <summary> <para> Disallow Showing Adjust Handles.</para> <para>Represents the attribte in schema: noAdjustHandles </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoChangeArrowheads"> <summary> <para> Disallow Arrowhead Changes.</para> <para>Represents the attribte in schema: noChangeArrowheads </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.NoChangeShapeType"> <summary> <para> Disallow Shape Type Change.</para> <para>Represents the attribte in schema: noChangeShapeType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.StartConnection"> <summary> <para>Connection Start.</para> <para>When the object is serialized out as xml, its qualified name is a:stCxn.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ConnectionType"> <summary> Defines the ConnectionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionType.#ctor"> <summary> Initializes a new instance of the ConnectionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionType.Id"> <summary> <para> Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionType.Index"> <summary> <para> Index.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StartConnection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StartConnection.#ctor"> <summary> Initializes a new instance of the StartConnection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.StartConnection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StartConnection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.StartConnection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EndConnection"> <summary> <para>Connection End.</para> <para>When the object is serialized out as xml, its qualified name is a:endCxn.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndConnection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndConnection.#ctor"> <summary> Initializes a new instance of the EndConnection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndConnection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EndConnection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EndConnection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GroupShapeLocks"> <summary> <para>Group Shape Locks.</para> <para>When the object is serialized out as xml, its qualified name is a:grpSpLocks.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.#ctor"> <summary> Initializes a new instance of the GroupShapeLocks class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeLocks class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.NoGrouping"> <summary> <para> Disallow Shape Grouping.</para> <para>Represents the attribte in schema: noGrp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.NoUngrouping"> <summary> <para> Disallow Shape Ungrouping.</para> <para>Represents the attribte in schema: noUngrp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.NoSelection"> <summary> <para> Disallow Shape Selection.</para> <para>Represents the attribte in schema: noSelect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.NoRotation"> <summary> <para> Disallow Shape Rotation.</para> <para>Represents the attribte in schema: noRot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.NoChangeAspect"> <summary> <para> Disallow Aspect Ratio Change.</para> <para>Represents the attribte in schema: noChangeAspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.NoMove"> <summary> <para> Disallow Moving Shape.</para> <para>Represents the attribte in schema: noMove </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.NoResize"> <summary> <para> Disallow Shape Resizing.</para> <para>Represents the attribte in schema: noResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShapeLocks.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks"> <summary> <para>Graphic Frame Locks.</para> <para>When the object is serialized out as xml, its qualified name is a:graphicFrameLocks.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.#ctor"> <summary> Initializes a new instance of the GraphicFrameLocks class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GraphicFrameLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GraphicFrameLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.#ctor(System.String)"> <summary> Initializes a new instance of the GraphicFrameLocks class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.NoGrouping"> <summary> <para> Disallow Shape Grouping.</para> <para>Represents the attribte in schema: noGrp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.NoDrilldown"> <summary> <para> Disallow Selection of Child Shapes.</para> <para>Represents the attribte in schema: noDrilldown </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.NoSelection"> <summary> <para> Disallow Shape Selection.</para> <para>Represents the attribte in schema: noSelect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.NoChangeAspect"> <summary> <para> Disallow Aspect Ratio Change.</para> <para>Represents the attribte in schema: noChangeAspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.NoMove"> <summary> <para> Disallow Shape Movement.</para> <para>Represents the attribte in schema: noMove </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.NoResize"> <summary> <para> Disallow Shape Resize.</para> <para>Represents the attribte in schema: noResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrameLocks.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick"> <summary> <para>Drawing Element On Click Hyperlink.</para> <para>When the object is serialized out as xml, its qualified name is a:hlinkClick.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HyperlinkSound <a:snd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HyperlinkType"> <summary> Defines the HyperlinkType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HyperlinkSound <a:snd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkType.#ctor"> <summary> Initializes a new instance of the HyperlinkType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HyperlinkType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HyperlinkType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkType.#ctor(System.String)"> <summary> Initializes a new instance of the HyperlinkType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.Id"> <summary> <para> Drawing Object Hyperlink Target.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.InvalidUrl"> <summary> <para> Invalid URL.</para> <para>Represents the attribte in schema: invalidUrl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.Action"> <summary> <para> Action Setting.</para> <para>Represents the attribte in schema: action </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.TargetFrame"> <summary> <para> Target Frame.</para> <para>Represents the attribte in schema: tgtFrame </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.Tooltip"> <summary> <para> Hyperlink Tooltip.</para> <para>Represents the attribte in schema: tooltip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.History"> <summary> <para> Add Hyperlink to Page History.</para> <para>Represents the attribte in schema: history </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.HighlightClick"> <summary> <para> Highlight Click.</para> <para>Represents the attribte in schema: highlightClick </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.EndSound"> <summary> <para> End Sounds.</para> <para>Represents the attribte in schema: endSnd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.HyperlinkSound"> <summary> <para> Hyperlink Sound.</para> <para>Represents the element tag in schema: a:snd </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkType.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick.#ctor"> <summary> Initializes a new instance of the HyperlinkOnClick class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HyperlinkOnClick class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HyperlinkOnClick class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick.#ctor(System.String)"> <summary> Initializes a new instance of the HyperlinkOnClick class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkOnClick.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver"> <summary> <para>Mouse-Over Hyperlink.</para> <para>When the object is serialized out as xml, its qualified name is a:hlinkMouseOver.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HyperlinkSound <a:snd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver.#ctor"> <summary> Initializes a new instance of the HyperlinkOnMouseOver class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HyperlinkOnMouseOver class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HyperlinkOnMouseOver class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver.#ctor(System.String)"> <summary> Initializes a new instance of the HyperlinkOnMouseOver class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkOnMouseOver.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover"> <summary> <para>Hyperlink for Hover.</para> <para>When the object is serialized out as xml, its qualified name is a:hlinkHover.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HyperlinkSound <a:snd></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover.#ctor"> <summary> Initializes a new instance of the HyperlinkOnHover class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HyperlinkOnHover class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HyperlinkOnHover class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover.#ctor(System.String)"> <summary> Initializes a new instance of the HyperlinkOnHover class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HyperlinkOnHover.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GraphicData"> <summary> <para>Graphic Object Data.</para> <para>When the object is serialized out as xml, its qualified name is a:graphicData.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Graphic <a:graphic></description></item> <item><description>Blip <a:blip></description></item> <item><description>Theme <a:theme></description></item> <item><description>ThemeOverride <a:themeOverride></description></item> <item><description>ThemeManager <a:themeManager></description></item> <item><description>Table <a:tbl></description></item> <item><description>TableStyleList <a:tblStyleLst></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.CameraTool <a14:cameraTool></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension <a14:compatExt></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas <a14:isCanvas></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart <a14:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured <a14:shadowObscured></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties <a14:hiddenFill></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties <a14:hiddenLine></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties <a14:hiddenEffects></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D <a14:hiddenScene3d></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D <a14:hiddenSp3d></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties <a14:imgProps></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi <a14:useLocalDpi></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.TextMath <a14:m></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties <dgm14:cNvPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages <dgm14:recolorImg></description></item> <item><description>DocumentFormat.OpenXml.Office.Drawing.Drawing <dsp:drawing></description></item> <item><description>DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock <dsp:dataModelExt></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinition <dgm:colorsDef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeader <dgm:colorsDefHdr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.ColorsDefinitionHeaderList <dgm:colorsDefHdrLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.DataModelRoot <dgm:dataModel></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinition <dgm:layoutDef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeader <dgm:layoutDefHdr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.LayoutDefinitionHeaderList <dgm:layoutDefHdrLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.RelationshipIds <dgm:relIds></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinition <dgm:styleDef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeader <dgm:styleDefHdr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Diagrams.StyleDefinitionHeaderList <dgm:styleDefHdrLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Charts.ChartSpace <c:chartSpace></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Charts.UserShapes <c:userShapes></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Charts.ChartReference <c:chart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.PivotOptions <c14:pivotOptions></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.SketchOptions <c14:sketchOptions></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.InvertSolidFillFormat <c14:invertSolidFillFmt></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Charts.Style <c14:style></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ChartDrawing.ContentPart <cdr14:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Drawing.LegacyCompatibility.LegacyDrawing <comp:legacyDrawing></description></item> <item><description>DocumentFormat.OpenXml.Drawing.LockedCanvas.LockedCanvas <lc:lockedCanvas></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline <wp:inline></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor <wp:anchor></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset <wp14:pctPosHOffset></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset <wp14:pctPosVOffset></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth <wp14:sizeRelH></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight <wp14:sizeRelV></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Pictures.Picture <pic:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle <pic14:style></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList <pic14:extLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing <xdr:wsDr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart <xdr:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart <xdr14:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Presentation.CommentAuthorList <p:cmAuthorLst></description></item> <item><description>DocumentFormat.OpenXml.Presentation.CommentList <p:cmLst></description></item> <item><description>DocumentFormat.OpenXml.Presentation.OleObject <p:oleObj></description></item> <item><description>DocumentFormat.OpenXml.Presentation.Presentation <p:presentation></description></item> <item><description>DocumentFormat.OpenXml.Presentation.PresentationProperties <p:presentationPr></description></item> <item><description>DocumentFormat.OpenXml.Presentation.Slide <p:sld></description></item> <item><description>DocumentFormat.OpenXml.Presentation.SlideLayout <p:sldLayout></description></item> <item><description>DocumentFormat.OpenXml.Presentation.SlideMaster <p:sldMaster></description></item> <item><description>DocumentFormat.OpenXml.Presentation.HandoutMaster <p:handoutMaster></description></item> <item><description>DocumentFormat.OpenXml.Presentation.NotesMaster <p:notesMaster></description></item> <item><description>DocumentFormat.OpenXml.Presentation.NotesSlide <p:notes></description></item> <item><description>DocumentFormat.OpenXml.Presentation.SlideSyncProperties <p:sldSyncPr></description></item> <item><description>DocumentFormat.OpenXml.Presentation.TagList <p:tagLst></description></item> <item><description>DocumentFormat.OpenXml.Presentation.ViewProperties <p:viewPr></description></item> <item><description>DocumentFormat.OpenXml.Presentation.ContentPart <p:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties <p14:nvContentPartPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D <p14:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify <p14:extLst></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.Media <p14:media></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.VortexTransition <p14:vortex></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.SwitchTransition <p14:switch></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.FlipTransition <p14:flip></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition <p14:ripple></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.HoneycombTransition <p14:honeycomb></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition <p14:prism></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.DoorsTransition <p14:doors></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.WindowTransition <p14:window></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.FerrisTransition <p14:ferris></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.GalleryTransition <p14:gallery></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ConveyorTransition <p14:conveyor></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.PanTransition <p14:pan></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition <p14:glitter></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition <p14:warp></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition <p14:flythrough></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.FlashTransition <p14:flash></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition <p14:shred></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition <p14:reveal></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition <p14:wheelReverse></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget <p14:bmkTgt></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties <p14:sectionPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList <p14:sectionLst></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode <p14:browseMode></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor <p14:laserClr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi <p14:defaultImageDpi></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData <p14:discardImageEditData></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls <p14:showMediaCtrls></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList <p14:laserTraceLst></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.CreationId <p14:creationId></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ModificationId <p14:modId></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList <p14:showEvtLst></description></item> <item><description>DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary <sl:schemaLibrary></description></item> <item><description>DocumentFormat.OpenXml.Math.MathProperties <m:mathPr></description></item> <item><description>DocumentFormat.OpenXml.Math.Paragraph <m:oMathPara></description></item> <item><description>DocumentFormat.OpenXml.Math.OfficeMath <m:oMath></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Recipients <w:recipients></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.TextBoxContent <w:txbxContent></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Comments <w:comments></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Footnotes <w:footnotes></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Endnotes <w:endnotes></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Header <w:hdr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Footer <w:ftr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Settings <w:settings></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.WebSettings <w:webSettings></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Fonts <w:fonts></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Numbering <w:numbering></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Styles <w:styles></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Document <w:document></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.GlossaryDocument <w:glossaryDocument></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.ContentPart <w14:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DocumentId <w14:docId></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.ConflictMode <w14:conflictMode></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DiscardImageEditingData <w14:discardImageEditingData></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DefaultImageDpi <w14:defaultImageDpi></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.EntityPickerEmpty <w14:entityPicker></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.SdtContentCheckBox <w14:checkbox></description></item> <item><description>DocumentFormat.OpenXml.Vml.Shape <v:shape></description></item> <item><description>DocumentFormat.OpenXml.Vml.Shapetype <v:shapetype></description></item> <item><description>DocumentFormat.OpenXml.Vml.Group <v:group></description></item> <item><description>DocumentFormat.OpenXml.Vml.Background <v:background></description></item> <item><description>DocumentFormat.OpenXml.Vml.Fill <v:fill></description></item> <item><description>DocumentFormat.OpenXml.Vml.Formulas <v:formulas></description></item> <item><description>DocumentFormat.OpenXml.Vml.ShapeHandles <v:handles></description></item> <item><description>DocumentFormat.OpenXml.Vml.ImageData <v:imagedata></description></item> <item><description>DocumentFormat.OpenXml.Vml.Path <v:path></description></item> <item><description>DocumentFormat.OpenXml.Vml.TextBox <v:textbox></description></item> <item><description>DocumentFormat.OpenXml.Vml.Shadow <v:shadow></description></item> <item><description>DocumentFormat.OpenXml.Vml.Stroke <v:stroke></description></item> <item><description>DocumentFormat.OpenXml.Vml.TextPath <v:textpath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Arc <v:arc></description></item> <item><description>DocumentFormat.OpenXml.Vml.Curve <v:curve></description></item> <item><description>DocumentFormat.OpenXml.Vml.ImageFile <v:image></description></item> <item><description>DocumentFormat.OpenXml.Vml.Line <v:line></description></item> <item><description>DocumentFormat.OpenXml.Vml.Oval <v:oval></description></item> <item><description>DocumentFormat.OpenXml.Vml.PolyLine <v:polyline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Rectangle <v:rect></description></item> <item><description>DocumentFormat.OpenXml.Vml.RoundRectangle <v:roundrect></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ShapeDefaults <o:shapedefaults></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ShapeLayout <o:shapelayout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.SignatureLine <o:signatureline></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Ink <o:ink></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Diagram <o:diagram></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Skew <o:skew></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Extrusion <o:extrusion></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Callout <o:callout></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Lock <o:lock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.OleObject <o:OLEObject></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.Complex <o:complex></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.LeftStroke <o:left></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.TopStroke <o:top></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.RightStroke <o:right></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.BottomStroke <o:bottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ColumnStroke <o:column></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.ClipPath <o:clippath></description></item> <item><description>DocumentFormat.OpenXml.Vml.Office.FillExtendedProperties <o:fill></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TopBorder <w10:bordertop></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.LeftBorder <w10:borderleft></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.RightBorder <w10:borderright></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.BottomBorder <w10:borderbottom></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.TextWrap <w10:wrap></description></item> <item><description>DocumentFormat.OpenXml.Vml.Wordprocessing.AnchorLock <w10:anchorlock></description></item> <item><description>DocumentFormat.OpenXml.Vml.Spreadsheet.ClientData <xvml:ClientData></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.InkAnnotationFlag <pvml:iscomment></description></item> <item><description>DocumentFormat.OpenXml.Vml.Presentation.TextData <pvml:textdata></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DrawingCanvas.WordprocessingCanvas <wpc:wpc></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DrawingGroup.WordprocessingGroup <wpg:wgp></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.DrawingShape.WordprocessingShape <wps:wsp></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Slicer.Slicer <sle:slicer></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicData.#ctor"> <summary> Initializes a new instance of the GraphicData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GraphicData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GraphicData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicData.#ctor(System.String)"> <summary> Initializes a new instance of the GraphicData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicData.Uri"> <summary> <para> Uniform Resource Identifier.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Diagram"> <summary> <para>Diagram to Animate.</para> <para>When the object is serialized out as xml, its qualified name is a:dgm.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagram.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagram.#ctor"> <summary> Initializes a new instance of the Diagram class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Diagram.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagram.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagram.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagram.Id"> <summary> <para> Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Diagram.BuildStep"> <summary> <para> Animation Build Step.</para> <para>Represents the attribte in schema: bldStep </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Chart"> <summary> <para>Chart to Animate.</para> <para>When the object is serialized out as xml, its qualified name is a:chart.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Chart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Chart.#ctor"> <summary> Initializes a new instance of the Chart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Chart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Chart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Chart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Chart.SeriesIndex"> <summary> <para> Series Index.</para> <para>Represents the attribte in schema: seriesIdx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Chart.CategoryIndex"> <summary> <para> Category Index.</para> <para>Represents the attribte in schema: categoryIdx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Chart.BuildStep"> <summary> <para> Animation Build Step.</para> <para>Represents the attribte in schema: bldStep </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BuildDiagram"> <summary> <para>Build Diagram.</para> <para>When the object is serialized out as xml, its qualified name is a:bldDgm.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BuildDiagram.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BuildDiagram.#ctor"> <summary> Initializes a new instance of the BuildDiagram class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BuildDiagram.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BuildDiagram.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BuildDiagram.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BuildDiagram.Build"> <summary> <para> Build.</para> <para>Represents the attribte in schema: bld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BuildDiagram.ReverseAnimation"> <summary> <para> Reverse Animation.</para> <para>Represents the attribte in schema: rev </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BuildChart"> <summary> <para>Build Chart.</para> <para>When the object is serialized out as xml, its qualified name is a:bldChart.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BuildChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BuildChart.#ctor"> <summary> Initializes a new instance of the BuildChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BuildChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BuildChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BuildChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BuildChart.Build"> <summary> <para> Build.</para> <para>Represents the attribte in schema: bld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BuildChart.AnimateBackground"> <summary> <para> Animate Background.</para> <para>Represents the attribte in schema: animBg </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextBody"> <summary> <para>Shape Text Body.</para> <para>When the object is serialized out as xml, its qualified name is a:txBody.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BodyProperties <a:bodyPr></description></item> <item><description>ListStyle <a:lstStyle></description></item> <item><description>Paragraph <a:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextBody.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextBody.#ctor"> <summary> Initializes a new instance of the TextBody class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextBody.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextBody.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextBody.#ctor(System.String)"> <summary> Initializes a new instance of the TextBody class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextBody.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextBody.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextBody.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextBody.BodyProperties"> <summary> <para> Body Properties.</para> <para>Represents the element tag in schema: a:bodyPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextBody.ListStyle"> <summary> <para> Text List Styles.</para> <para>Represents the element tag in schema: a:lstStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.UseShapeRectangle"> <summary> <para>Use Shape Text Rectangle.</para> <para>When the object is serialized out as xml, its qualified name is a:useSpRect.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UseShapeRectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UseShapeRectangle.#ctor"> <summary> Initializes a new instance of the UseShapeRectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UseShapeRectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UseShapeRectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UseShapeRectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Transform2D"> <summary> <para>Defines the Transform2D Class.</para> <para>When the object is serialized out as xml, its qualified name is a:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Offset <a:off></description></item> <item><description>Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Transform2D.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Transform2D.#ctor"> <summary> Initializes a new instance of the Transform2D class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Transform2D.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Transform2D.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform2D class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Transform2D.#ctor(System.String)"> <summary> Initializes a new instance of the Transform2D class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Transform2D.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Transform2D.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Transform2D.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Transform2D.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Transform2D.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Transform2D.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Transform2D.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Transform2D.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties"> <summary> <para>Defines the NonVisualDrawingProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is a:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HyperlinkOnClick <a:hlinkClick></description></item> <item><description>HyperlinkOnHover <a:hlinkHover></description></item> <item><description>NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.Title"> <summary> <para> title, this property is only available in Office2010.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties"> <summary> <para>Non-Visual Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:cNvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeLocks <a:spLocks></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.TextBox"> <summary> <para> Text Box.</para> <para>Represents the attribte in schema: txBox </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.ShapeLocks"> <summary> <para> Shape Locks.</para> <para>Represents the element tag in schema: a:spLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties"> <summary> <para>Non-Visual Properties for a Shape.</para> <para>When the object is serialized out as xml, its qualified name is a:nvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <a:cNvPr></description></item> <item><description>NonVisualShapeDrawingProperties <a:cNvSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: a:cNvPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualShapeProperties.NonVisualShapeDrawingProperties"> <summary> <para> Non-Visual Shape Drawing Properties.</para> <para>Represents the element tag in schema: a:cNvSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapeProperties"> <summary> <para>Visual Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Transform2D <a:xfrm></description></item> <item><description>CustomGeometry <a:custGeom></description></item> <item><description>PresetGeometry <a:prstGeom></description></item> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> <item><description>Outline <a:ln></description></item> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> <item><description>Scene3DType <a:scene3d></description></item> <item><description>Shape3DType <a:sp3d></description></item> <item><description>ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextShape"> <summary> <para>Text Shape.</para> <para>When the object is serialized out as xml, its qualified name is a:txSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TextBody <a:txBody></description></item> <item><description>UseShapeRectangle <a:useSpRect></description></item> <item><description>Transform2D <a:xfrm></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextShape.#ctor"> <summary> Initializes a new instance of the TextShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextShape.#ctor(System.String)"> <summary> Initializes a new instance of the TextShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextShape.TextBody"> <summary> <para> Shape Text Body.</para> <para>Represents the element tag in schema: a:txBody </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapeStyle"> <summary> <para>Style.</para> <para>When the object is serialized out as xml, its qualified name is a:style.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineReference <a:lnRef></description></item> <item><description>FillReference <a:fillRef></description></item> <item><description>EffectReference <a:effectRef></description></item> <item><description>FontReference <a:fontRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeStyle.#ctor"> <summary> Initializes a new instance of the ShapeStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeStyle.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeStyle.LineReference"> <summary> <para> LineReference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeStyle.FillReference"> <summary> <para> FillReference.</para> <para>Represents the element tag in schema: a:fillRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeStyle.EffectReference"> <summary> <para> EffectReference.</para> <para>Represents the element tag in schema: a:effectRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeStyle.FontReference"> <summary> <para> Font Reference.</para> <para>Represents the element tag in schema: a:fontRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties"> <summary> <para>Non-Visual Connector Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:cNvCxnSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ConnectionShapeLocks <a:cxnSpLocks></description></item> <item><description>StartConnection <a:stCxn></description></item> <item><description>EndConnection <a:endCxn></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.ConnectionShapeLocks"> <summary> <para> Connection Shape Locks.</para> <para>Represents the element tag in schema: a:cxnSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.StartConnection"> <summary> <para> Connection Start.</para> <para>Represents the element tag in schema: a:stCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.EndConnection"> <summary> <para> Connection End.</para> <para>Represents the element tag in schema: a:endCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectorShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties"> <summary> <para>Non-Visual Properties for a Connection Shape.</para> <para>When the object is serialized out as xml, its qualified name is a:nvCxnSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <a:cNvPr></description></item> <item><description>NonVisualConnectorShapeDrawingProperties <a:cNvCxnSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.NonVisualDrawingProperties"> <summary> <para> Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: a:cNvPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualConnectionShapeProperties.NonVisualConnectorShapeDrawingProperties"> <summary> <para> Non-Visual Connector Shape Drawing Properties.</para> <para>Represents the element tag in schema: a:cNvCxnSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties"> <summary> <para>Non-Visual Picture Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:cNvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PictureLocks <a:picLocks></description></item> <item><description>NonVisualPicturePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.PreferRelativeResize"> <summary> <para> Relative Resize Preferred.</para> <para>Represents the attribte in schema: preferRelativeResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.PictureLocks"> <summary> <para> Picture Locks.</para> <para>Represents the element tag in schema: a:picLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureDrawingProperties.NonVisualPicturePropertiesExtensionList"> <summary> <para> NonVisualPicturePropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties"> <summary> <para>Non-Visual Properties for a Picture.</para> <para>When the object is serialized out as xml, its qualified name is a:nvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <a:cNvPr></description></item> <item><description>NonVisualPictureDrawingProperties <a:cNvPicPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: a:cNvPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPictureProperties.NonVisualPictureDrawingProperties"> <summary> <para> Non-Visual Picture Drawing Properties.</para> <para>Represents the element tag in schema: a:cNvPicPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties"> <summary> <para>Non-Visual Graphic Frame Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:cNvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GraphicFrameLocks <a:graphicFrameLocks></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.GraphicFrameLocks"> <summary> <para> Graphic Frame Locks.</para> <para>Represents the element tag in schema: a:graphicFrameLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties"> <summary> <para>Non-Visual Properties for a Graphic Frame.</para> <para>When the object is serialized out as xml, its qualified name is a:nvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <a:cNvPr></description></item> <item><description>NonVisualGraphicFrameDrawingProperties <a:cNvGraphicFramePr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: a:cNvPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGraphicFrameProperties.NonVisualGraphicFrameDrawingProperties"> <summary> <para> Non-Visual Graphic Frame Drawing Properties.</para> <para>Represents the element tag in schema: a:cNvGraphicFramePr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties"> <summary> <para>Non-Visual Group Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:cNvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GroupShapeLocks <a:grpSpLocks></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.GroupShapeLocks"> <summary> <para> Group Shape Locks.</para> <para>Represents the element tag in schema: a:grpSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Rotation"> <summary> <para>Rotation.</para> <para>When the object is serialized out as xml, its qualified name is a:rot.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Rotation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Rotation.#ctor"> <summary> Initializes a new instance of the Rotation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Rotation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rotation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rotation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rotation.Latitude"> <summary> <para> Latitude.</para> <para>Represents the attribte in schema: lat </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rotation.Longitude"> <summary> <para> Longitude.</para> <para>Represents the attribte in schema: lon </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rotation.Revolution"> <summary> <para> Revolution.</para> <para>Represents the attribte in schema: rev </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Camera"> <summary> <para>Camera.</para> <para>When the object is serialized out as xml, its qualified name is a:camera.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Rotation <a:rot></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Camera.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Camera.#ctor"> <summary> Initializes a new instance of the Camera class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Camera.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Camera class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Camera.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Camera class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Camera.#ctor(System.String)"> <summary> Initializes a new instance of the Camera class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Camera.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Camera.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Camera.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Camera.Preset"> <summary> <para> Preset Camera Type.</para> <para>Represents the attribte in schema: prst </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Camera.FieldOfView"> <summary> <para> Field of View.</para> <para>Represents the attribte in schema: fov </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Camera.Zoom"> <summary> <para> Zoom.</para> <para>Represents the attribte in schema: zoom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Camera.Rotation"> <summary> <para> Rotation.</para> <para>Represents the element tag in schema: a:rot </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LightRig"> <summary> <para>Light Rig.</para> <para>When the object is serialized out as xml, its qualified name is a:lightRig.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Rotation <a:rot></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LightRig.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LightRig.#ctor"> <summary> Initializes a new instance of the LightRig class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LightRig.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LightRig class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LightRig.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LightRig class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LightRig.#ctor(System.String)"> <summary> Initializes a new instance of the LightRig class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LightRig.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LightRig.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LightRig.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LightRig.Rig"> <summary> <para> Rig Preset.</para> <para>Represents the attribte in schema: rig </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LightRig.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LightRig.Rotation"> <summary> <para> Rotation.</para> <para>Represents the element tag in schema: a:rot </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Backdrop"> <summary> <para>Backdrop Plane.</para> <para>When the object is serialized out as xml, its qualified name is a:backdrop.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Anchor <a:anchor></description></item> <item><description>Normal <a:norm></description></item> <item><description>UpVector <a:up></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Backdrop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Backdrop.#ctor"> <summary> Initializes a new instance of the Backdrop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Backdrop.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Backdrop class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Backdrop.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Backdrop class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Backdrop.#ctor(System.String)"> <summary> Initializes a new instance of the Backdrop class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Backdrop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Backdrop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Backdrop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Backdrop.Anchor"> <summary> <para> Anchor Point.</para> <para>Represents the element tag in schema: a:anchor </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Backdrop.Normal"> <summary> <para> Normal.</para> <para>Represents the element tag in schema: a:norm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Backdrop.UpVector"> <summary> <para> Up Vector.</para> <para>Represents the element tag in schema: a:up </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Backdrop.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Anchor"> <summary> <para>Anchor Point.</para> <para>When the object is serialized out as xml, its qualified name is a:anchor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Anchor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Anchor.#ctor"> <summary> Initializes a new instance of the Anchor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Anchor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Anchor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Anchor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Anchor.X"> <summary> <para> X-Coordinate in 3D.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Anchor.Y"> <summary> <para> Y-Coordinate in 3D.</para> <para>Represents the attribte in schema: y </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Anchor.Z"> <summary> <para> Z-Coordinate in 3D.</para> <para>Represents the attribte in schema: z </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Normal"> <summary> <para>Normal.</para> <para>When the object is serialized out as xml, its qualified name is a:norm.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Vector3DType"> <summary> Defines the Vector3DType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Vector3DType.#ctor"> <summary> Initializes a new instance of the Vector3DType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Vector3DType.Dx"> <summary> <para> Distance along X-axis in 3D.</para> <para>Represents the attribte in schema: dx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Vector3DType.Dy"> <summary> <para> Distance along Y-axis in 3D.</para> <para>Represents the attribte in schema: dy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Vector3DType.Dz"> <summary> <para> Distance along Z-axis in 3D.</para> <para>Represents the attribte in schema: dz </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Normal.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Normal.#ctor"> <summary> Initializes a new instance of the Normal class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Normal.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Normal.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Normal.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.UpVector"> <summary> <para>Up Vector.</para> <para>When the object is serialized out as xml, its qualified name is a:up.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UpVector.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UpVector.#ctor"> <summary> Initializes a new instance of the UpVector class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.UpVector.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UpVector.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.UpVector.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BevelTop"> <summary> <para>Top Bevel.</para> <para>When the object is serialized out as xml, its qualified name is a:bevelT.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BevelType"> <summary> Defines the BevelType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BevelType.#ctor"> <summary> Initializes a new instance of the BevelType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BevelType.Width"> <summary> <para> Width.</para> <para>Represents the attribte in schema: w </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BevelType.Height"> <summary> <para> Height.</para> <para>Represents the attribte in schema: h </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BevelType.Preset"> <summary> <para> Preset Bevel.</para> <para>Represents the attribte in schema: prst </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BevelTop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BevelTop.#ctor"> <summary> Initializes a new instance of the BevelTop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BevelTop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BevelTop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BevelTop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BevelBottom"> <summary> <para>Bottom Bevel.</para> <para>When the object is serialized out as xml, its qualified name is a:bevelB.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BevelBottom.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BevelBottom.#ctor"> <summary> Initializes a new instance of the BevelBottom class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BevelBottom.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BevelBottom.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BevelBottom.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Bevel"> <summary> <para>Bevel.</para> <para>When the object is serialized out as xml, its qualified name is a:bevel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Bevel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Bevel.#ctor"> <summary> Initializes a new instance of the Bevel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Bevel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Bevel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Bevel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FillToRectangle"> <summary> <para>Fill To Rectangle.</para> <para>When the object is serialized out as xml, its qualified name is a:fillToRect.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RelativeRectangleType"> <summary> Defines the RelativeRectangleType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RelativeRectangleType.#ctor"> <summary> Initializes a new instance of the RelativeRectangleType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RelativeRectangleType.Left"> <summary> <para> Left Offset.</para> <para>Represents the attribte in schema: l </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RelativeRectangleType.Top"> <summary> <para> Top Offset.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RelativeRectangleType.Right"> <summary> <para> Right Offset.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RelativeRectangleType.Bottom"> <summary> <para> Bottom Offset.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillToRectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillToRectangle.#ctor"> <summary> Initializes a new instance of the FillToRectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillToRectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillToRectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillToRectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TileRectangle"> <summary> <para>Tile Rectangle.</para> <para>When the object is serialized out as xml, its qualified name is a:tileRect.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TileRectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TileRectangle.#ctor"> <summary> Initializes a new instance of the TileRectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TileRectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TileRectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TileRectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FillRectangle"> <summary> <para>Fill Rectangle.</para> <para>When the object is serialized out as xml, its qualified name is a:fillRect.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillRectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillRectangle.#ctor"> <summary> Initializes a new instance of the FillRectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FillRectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillRectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FillRectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SourceRectangle"> <summary> <para>Source Rectangle.</para> <para>When the object is serialized out as xml, its qualified name is a:srcRect.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SourceRectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SourceRectangle.#ctor"> <summary> Initializes a new instance of the SourceRectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SourceRectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SourceRectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SourceRectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GradientStop"> <summary> <para>Gradient stops.</para> <para>When the object is serialized out as xml, its qualified name is a:gs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStop.#ctor"> <summary> Initializes a new instance of the GradientStop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStop.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GradientStop class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStop.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GradientStop class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStop.#ctor(System.String)"> <summary> Initializes a new instance of the GradientStop class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.Position"> <summary> <para> Position.</para> <para>Represents the attribte in schema: pos </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStop.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GradientStopList"> <summary> <para>Gradient Stop List.</para> <para>When the object is serialized out as xml, its qualified name is a:gsLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GradientStop <a:gs></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStopList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStopList.#ctor"> <summary> Initializes a new instance of the GradientStopList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStopList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GradientStopList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStopList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GradientStopList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStopList.#ctor(System.String)"> <summary> Initializes a new instance of the GradientStopList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GradientStopList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStopList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GradientStopList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapeGuide"> <summary> <para>Shape Guide.</para> <para>When the object is serialized out as xml, its qualified name is a:gd.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuide.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuide.#ctor"> <summary> Initializes a new instance of the ShapeGuide class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuide.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeGuide.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeGuide.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeGuide.Name"> <summary> <para> Shape Guide Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeGuide.Formula"> <summary> <para> Shape Guide Formula.</para> <para>Represents the attribte in schema: fmla </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Position"> <summary> <para>Position.</para> <para>When the object is serialized out as xml, its qualified name is a:pos.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AdjustPoint2DType"> <summary> Defines the AdjustPoint2DType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustPoint2DType.#ctor"> <summary> Initializes a new instance of the AdjustPoint2DType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustPoint2DType.X"> <summary> <para> X-Coordinate.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustPoint2DType.Y"> <summary> <para> Y-Coordinate.</para> <para>Represents the attribte in schema: y </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Position.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Position.#ctor"> <summary> Initializes a new instance of the Position class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Position.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Position.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Position.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Point"> <summary> <para>Move end point.</para> <para>When the object is serialized out as xml, its qualified name is a:pt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Point.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Point.#ctor"> <summary> Initializes a new instance of the Point class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Point.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Point.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Point.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AdjustHandleXY"> <summary> <para>XY Adjust Handle.</para> <para>When the object is serialized out as xml, its qualified name is a:ahXY.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Position <a:pos></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.#ctor"> <summary> Initializes a new instance of the AdjustHandleXY class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AdjustHandleXY class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AdjustHandleXY class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.#ctor(System.String)"> <summary> Initializes a new instance of the AdjustHandleXY class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.XAdjustmentGuide"> <summary> <para> Horizontal Adjustment Guide.</para> <para>Represents the attribte in schema: gdRefX </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.MinX"> <summary> <para> Minimum Horizontal Adjustment.</para> <para>Represents the attribte in schema: minX </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.MaxX"> <summary> <para> Maximum Horizontal Adjustment.</para> <para>Represents the attribte in schema: maxX </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.YAdjustmentGuide"> <summary> <para> Vertical Adjustment Guide.</para> <para>Represents the attribte in schema: gdRefY </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.MinY"> <summary> <para> Minimum Vertical Adjustment.</para> <para>Represents the attribte in schema: minY </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.MaxY"> <summary> <para> Maximum Vertical Adjustment.</para> <para>Represents the attribte in schema: maxY </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleXY.Position"> <summary> <para> Position.</para> <para>Represents the element tag in schema: a:pos </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar"> <summary> <para>Polar Adjust Handle.</para> <para>When the object is serialized out as xml, its qualified name is a:ahPolar.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Position <a:pos></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.#ctor"> <summary> Initializes a new instance of the AdjustHandlePolar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AdjustHandlePolar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AdjustHandlePolar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.#ctor(System.String)"> <summary> Initializes a new instance of the AdjustHandlePolar class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.RadialAdjustmentGuide"> <summary> <para> Radial Adjustment Guide.</para> <para>Represents the attribte in schema: gdRefR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.MinRadial"> <summary> <para> Minimum Radial Adjustment.</para> <para>Represents the attribte in schema: minR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.MaxRadial"> <summary> <para> Maximum Radial Adjustment.</para> <para>Represents the attribte in schema: maxR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.AngleAdjustmentGuide"> <summary> <para> Angle Adjustment Guide.</para> <para>Represents the attribte in schema: gdRefAng </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.MinAngle"> <summary> <para> Minimum Angle Adjustment.</para> <para>Represents the attribte in schema: minAng </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.MaxAngle"> <summary> <para> Maximum Angle Adjustment.</para> <para>Represents the attribte in schema: maxAng </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandlePolar.Position"> <summary> <para> Shape Position Coordinate.</para> <para>Represents the element tag in schema: a:pos </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ConnectionSite"> <summary> <para>Shape Connection Site.</para> <para>When the object is serialized out as xml, its qualified name is a:cxn.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Position <a:pos></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSite.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSite.#ctor"> <summary> Initializes a new instance of the ConnectionSite class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSite.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConnectionSite class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSite.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConnectionSite class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSite.#ctor(System.String)"> <summary> Initializes a new instance of the ConnectionSite class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSite.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionSite.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionSite.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionSite.Angle"> <summary> <para> Connection Site Angle.</para> <para>Represents the attribte in schema: ang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionSite.Position"> <summary> <para> Position.</para> <para>Represents the element tag in schema: a:pos </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.CloseShapePath"> <summary> <para>Close Shape Path.</para> <para>When the object is serialized out as xml, its qualified name is a:close.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CloseShapePath.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CloseShapePath.#ctor"> <summary> Initializes a new instance of the CloseShapePath class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CloseShapePath.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CloseShapePath.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CloseShapePath.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.MoveTo"> <summary> <para>Move Path To.</para> <para>When the object is serialized out as xml, its qualified name is a:moveTo.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Point <a:pt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MoveTo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MoveTo.#ctor"> <summary> Initializes a new instance of the MoveTo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MoveTo.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MoveTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MoveTo.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MoveTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MoveTo.#ctor(System.String)"> <summary> Initializes a new instance of the MoveTo class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.MoveTo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MoveTo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MoveTo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.MoveTo.Point"> <summary> <para> Move end point.</para> <para>Represents the element tag in schema: a:pt </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineTo"> <summary> <para>Draw Line To.</para> <para>When the object is serialized out as xml, its qualified name is a:lnTo.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Point <a:pt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineTo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineTo.#ctor"> <summary> Initializes a new instance of the LineTo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineTo.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LineTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineTo.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LineTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineTo.#ctor(System.String)"> <summary> Initializes a new instance of the LineTo class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineTo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineTo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineTo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineTo.Point"> <summary> <para> Line end point.</para> <para>Represents the element tag in schema: a:pt </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ArcTo"> <summary> <para>Draw Arc To.</para> <para>When the object is serialized out as xml, its qualified name is a:arcTo.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ArcTo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ArcTo.#ctor"> <summary> Initializes a new instance of the ArcTo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ArcTo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ArcTo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ArcTo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ArcTo.WidthRadius"> <summary> <para> Shape Arc Width Radius.</para> <para>Represents the attribte in schema: wR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ArcTo.HeightRadius"> <summary> <para> Shape Arc Height Radius.</para> <para>Represents the attribte in schema: hR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ArcTo.StartAngle"> <summary> <para> Shape Arc Start Angle.</para> <para>Represents the attribte in schema: stAng </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ArcTo.SwingAngle"> <summary> <para> Shape Arc Swing Angle.</para> <para>Represents the attribte in schema: swAng </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo"> <summary> <para>Draw Quadratic Bezier Curve To.</para> <para>When the object is serialized out as xml, its qualified name is a:quadBezTo.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Point <a:pt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo.#ctor"> <summary> Initializes a new instance of the QuadraticBezierCurveTo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QuadraticBezierCurveTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QuadraticBezierCurveTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo.#ctor(System.String)"> <summary> Initializes a new instance of the QuadraticBezierCurveTo class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.QuadraticBezierCurveTo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo"> <summary> <para>Draw Cubic Bezier Curve To.</para> <para>When the object is serialized out as xml, its qualified name is a:cubicBezTo.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Point <a:pt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo.#ctor"> <summary> Initializes a new instance of the CubicBezierCurveTo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CubicBezierCurveTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CubicBezierCurveTo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo.#ctor(System.String)"> <summary> Initializes a new instance of the CubicBezierCurveTo class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CubicBezierCurveTo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Path"> <summary> <para>Shape Path.</para> <para>When the object is serialized out as xml, its qualified name is a:path.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CloseShapePath <a:close></description></item> <item><description>MoveTo <a:moveTo></description></item> <item><description>LineTo <a:lnTo></description></item> <item><description>ArcTo <a:arcTo></description></item> <item><description>QuadraticBezierCurveTo <a:quadBezTo></description></item> <item><description>CubicBezierCurveTo <a:cubicBezTo></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Path.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Path.#ctor"> <summary> Initializes a new instance of the Path class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Path.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Path class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Path.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Path class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Path.#ctor(System.String)"> <summary> Initializes a new instance of the Path class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Path.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Path.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Path.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Path.Width"> <summary> <para> Path Width.</para> <para>Represents the attribte in schema: w </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Path.Height"> <summary> <para> Path Height.</para> <para>Represents the attribte in schema: h </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Path.Fill"> <summary> <para> Path Fill.</para> <para>Represents the attribte in schema: fill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Path.Stroke"> <summary> <para> Path Stroke.</para> <para>Represents the attribte in schema: stroke </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Path.ExtrusionOk"> <summary> <para> 3D Extrusion Allowed.</para> <para>Represents the attribte in schema: extrusionOk </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AdjustValueList"> <summary> <para>List of Shape Adjust Values.</para> <para>When the object is serialized out as xml, its qualified name is a:avLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeGuide <a:gd></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GeometryGuideListType"> <summary> Defines the GeometryGuideListType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeGuide <a:gd></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GeometryGuideListType.#ctor"> <summary> Initializes a new instance of the GeometryGuideListType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GeometryGuideListType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GeometryGuideListType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GeometryGuideListType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GeometryGuideListType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GeometryGuideListType.#ctor(System.String)"> <summary> Initializes a new instance of the GeometryGuideListType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustValueList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustValueList.#ctor"> <summary> Initializes a new instance of the AdjustValueList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustValueList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AdjustValueList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustValueList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AdjustValueList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustValueList.#ctor(System.String)"> <summary> Initializes a new instance of the AdjustValueList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustValueList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustValueList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustValueList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapeGuideList"> <summary> <para>List of Shape Guides.</para> <para>When the object is serialized out as xml, its qualified name is a:gdLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeGuide <a:gd></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuideList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuideList.#ctor"> <summary> Initializes a new instance of the ShapeGuideList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuideList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeGuideList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuideList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeGuideList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuideList.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeGuideList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeGuideList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeGuideList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeGuideList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AdjustHandleList"> <summary> <para>List of Shape Adjust Handles.</para> <para>When the object is serialized out as xml, its qualified name is a:ahLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AdjustHandleXY <a:ahXY></description></item> <item><description>AdjustHandlePolar <a:ahPolar></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleList.#ctor"> <summary> Initializes a new instance of the AdjustHandleList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AdjustHandleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AdjustHandleList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleList.#ctor(System.String)"> <summary> Initializes a new instance of the AdjustHandleList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.AdjustHandleList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.AdjustHandleList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ConnectionSiteList"> <summary> <para>List of Shape Connection Sites.</para> <para>When the object is serialized out as xml, its qualified name is a:cxnLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ConnectionSite <a:cxn></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSiteList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSiteList.#ctor"> <summary> Initializes a new instance of the ConnectionSiteList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSiteList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConnectionSiteList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSiteList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConnectionSiteList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSiteList.#ctor(System.String)"> <summary> Initializes a new instance of the ConnectionSiteList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionSiteList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionSiteList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionSiteList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Rectangle"> <summary> <para>Shape Text Rectangle.</para> <para>When the object is serialized out as xml, its qualified name is a:rect.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Rectangle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Rectangle.#ctor"> <summary> Initializes a new instance of the Rectangle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Rectangle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rectangle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rectangle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rectangle.Left"> <summary> <para> Left.</para> <para>Represents the attribte in schema: l </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rectangle.Top"> <summary> <para> Top.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rectangle.Right"> <summary> <para> Right.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Rectangle.Bottom"> <summary> <para> Bottom Position.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PathList"> <summary> <para>List of Shape Paths.</para> <para>When the object is serialized out as xml, its qualified name is a:pathLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Path <a:path></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathList.#ctor"> <summary> Initializes a new instance of the PathList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PathList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PathList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathList.#ctor(System.String)"> <summary> Initializes a new instance of the PathList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PathList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PathList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PathList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.DashStop"> <summary> <para>Dash Stop.</para> <para>When the object is serialized out as xml, its qualified name is a:ds.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DashStop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DashStop.#ctor"> <summary> Initializes a new instance of the DashStop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DashStop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DashStop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DashStop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DashStop.DashLength"> <summary> <para> Dash Length.</para> <para>Represents the attribte in schema: d </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DashStop.SpaceLength"> <summary> <para> Space Length.</para> <para>Represents the attribte in schema: sp </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.HeadEnd"> <summary> <para>Line Head/End Style.</para> <para>When the object is serialized out as xml, its qualified name is a:headEnd.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineEndPropertiesType"> <summary> Defines the LineEndPropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineEndPropertiesType.#ctor"> <summary> Initializes a new instance of the LineEndPropertiesType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineEndPropertiesType.Type"> <summary> <para> Line Head/End Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineEndPropertiesType.Width"> <summary> <para> Width of Head/End.</para> <para>Represents the attribte in schema: w </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineEndPropertiesType.Length"> <summary> <para> Length of Head/End.</para> <para>Represents the attribte in schema: len </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HeadEnd.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HeadEnd.#ctor"> <summary> Initializes a new instance of the HeadEnd class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.HeadEnd.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HeadEnd.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.HeadEnd.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TailEnd"> <summary> <para>Tail line end style.</para> <para>When the object is serialized out as xml, its qualified name is a:tailEnd.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TailEnd.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TailEnd.#ctor"> <summary> Initializes a new instance of the TailEnd class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TailEnd.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TailEnd.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TailEnd.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TransformGroup"> <summary> <para>2D Transform for Grouped Objects.</para> <para>When the object is serialized out as xml, its qualified name is a:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Offset <a:off></description></item> <item><description>Extents <a:ext></description></item> <item><description>ChildOffset <a:chOff></description></item> <item><description>ChildExtents <a:chExt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformGroup.#ctor"> <summary> Initializes a new instance of the TransformGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformGroup.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TransformGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformGroup.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TransformGroup class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformGroup.#ctor(System.String)"> <summary> Initializes a new instance of the TransformGroup class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TransformGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.ChildOffset"> <summary> <para> Child Offset.</para> <para>Represents the element tag in schema: a:chOff </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TransformGroup.ChildExtents"> <summary> <para> Child Extents.</para> <para>Represents the element tag in schema: a:chExt </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BodyProperties"> <summary> <para>Defines the BodyProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is a:bodyPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PresetTextWrap <a:prstTxWarp></description></item> <item><description>NoAutoFit <a:noAutofit></description></item> <item><description>NormalAutoFit <a:normAutofit></description></item> <item><description>ShapeAutoFit <a:spAutoFit></description></item> <item><description>Scene3DType <a:scene3d></description></item> <item><description>Shape3DType <a:sp3d></description></item> <item><description>FlatText <a:flatTx></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BodyProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BodyProperties.#ctor"> <summary> Initializes a new instance of the BodyProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BodyProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BodyProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BodyProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BodyProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BodyProperties.#ctor(System.String)"> <summary> Initializes a new instance of the BodyProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BodyProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.UseParagraphSpacing"> <summary> <para> Paragraph Spacing.</para> <para>Represents the attribte in schema: spcFirstLastPara </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.VerticalOverflow"> <summary> <para> Text Vertical Overflow.</para> <para>Represents the attribte in schema: vertOverflow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.HorizontalOverflow"> <summary> <para> Text Horizontal Overflow.</para> <para>Represents the attribte in schema: horzOverflow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.Vertical"> <summary> <para> Vertical Text.</para> <para>Represents the attribte in schema: vert </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.Wrap"> <summary> <para> Text Wrapping Type.</para> <para>Represents the attribte in schema: wrap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.LeftInset"> <summary> <para> Left Inset.</para> <para>Represents the attribte in schema: lIns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.TopInset"> <summary> <para> Top Inset.</para> <para>Represents the attribte in schema: tIns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.RightInset"> <summary> <para> Right Inset.</para> <para>Represents the attribte in schema: rIns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.BottomInset"> <summary> <para> Bottom Inset.</para> <para>Represents the attribte in schema: bIns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.ColumnCount"> <summary> <para> Number of Columns.</para> <para>Represents the attribte in schema: numCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.ColumnSpacing"> <summary> <para> Space Between Columns.</para> <para>Represents the attribte in schema: spcCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.RightToLeftColumns"> <summary> <para> Columns Right-To-Left.</para> <para>Represents the attribte in schema: rtlCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.FromWordArt"> <summary> <para> From WordArt.</para> <para>Represents the attribte in schema: fromWordArt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.Anchor"> <summary> <para> Anchor.</para> <para>Represents the attribte in schema: anchor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.AnchorCenter"> <summary> <para> Anchor Center.</para> <para>Represents the attribte in schema: anchorCtr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.ForceAntiAlias"> <summary> <para> Force Anti-Alias.</para> <para>Represents the attribte in schema: forceAA </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.UpRight"> <summary> <para> Text Upright.</para> <para>Represents the attribte in schema: upright </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.CompatibleLineSpacing"> <summary> <para> Compatible Line Spacing.</para> <para>Represents the attribte in schema: compatLnSpc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BodyProperties.PresetTextWrap"> <summary> <para> Preset Text Shape.</para> <para>Represents the element tag in schema: a:prstTxWarp </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ListStyle"> <summary> <para>Defines the ListStyle Class.</para> <para>When the object is serialized out as xml, its qualified name is a:lstStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DefaultParagraphProperties <a:defPPr></description></item> <item><description>Level1ParagraphProperties <a:lvl1pPr></description></item> <item><description>Level2ParagraphProperties <a:lvl2pPr></description></item> <item><description>Level3ParagraphProperties <a:lvl3pPr></description></item> <item><description>Level4ParagraphProperties <a:lvl4pPr></description></item> <item><description>Level5ParagraphProperties <a:lvl5pPr></description></item> <item><description>Level6ParagraphProperties <a:lvl6pPr></description></item> <item><description>Level7ParagraphProperties <a:lvl7pPr></description></item> <item><description>Level8ParagraphProperties <a:lvl8pPr></description></item> <item><description>Level9ParagraphProperties <a:lvl9pPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ListStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ListStyle.#ctor"> <summary> Initializes a new instance of the ListStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ListStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ListStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ListStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ListStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ListStyle.#ctor(System.String)"> <summary> Initializes a new instance of the ListStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ListStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.DefaultParagraphProperties"> <summary> <para> Default Paragraph Style.</para> <para>Represents the element tag in schema: a:defPPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level1ParagraphProperties"> <summary> <para> List Level 1 Text Style.</para> <para>Represents the element tag in schema: a:lvl1pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level2ParagraphProperties"> <summary> <para> List Level 2 Text Style.</para> <para>Represents the element tag in schema: a:lvl2pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level3ParagraphProperties"> <summary> <para> List Level 3 Text Style.</para> <para>Represents the element tag in schema: a:lvl3pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level4ParagraphProperties"> <summary> <para> List Level 4 Text Style.</para> <para>Represents the element tag in schema: a:lvl4pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level5ParagraphProperties"> <summary> <para> List Level 5 Text Style.</para> <para>Represents the element tag in schema: a:lvl5pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level6ParagraphProperties"> <summary> <para> List Level 6 Text Style.</para> <para>Represents the element tag in schema: a:lvl6pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level7ParagraphProperties"> <summary> <para> List Level 7 Text Style.</para> <para>Represents the element tag in schema: a:lvl7pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level8ParagraphProperties"> <summary> <para> List Level 8 Text Style.</para> <para>Represents the element tag in schema: a:lvl8pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.Level9ParagraphProperties"> <summary> <para> List Level 9 Text Style.</para> <para>Represents the element tag in schema: a:lvl9pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ListStyle.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapeDefault"> <summary> <para>Shape Default.</para> <para>When the object is serialized out as xml, its qualified name is a:spDef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeProperties <a:spPr></description></item> <item><description>BodyProperties <a:bodyPr></description></item> <item><description>ListStyle <a:lstStyle></description></item> <item><description>ShapeStyle <a:style></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType"> <summary> Defines the DefaultShapeDefinitionType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeProperties <a:spPr></description></item> <item><description>BodyProperties <a:bodyPr></description></item> <item><description>ListStyle <a:lstStyle></description></item> <item><description>ShapeStyle <a:style></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.#ctor"> <summary> Initializes a new instance of the DefaultShapeDefinitionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DefaultShapeDefinitionType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DefaultShapeDefinitionType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.#ctor(System.String)"> <summary> Initializes a new instance of the DefaultShapeDefinitionType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.ShapeProperties"> <summary> <para> Visual Properties.</para> <para>Represents the element tag in schema: a:spPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.BodyProperties"> <summary> <para> BodyProperties.</para> <para>Represents the element tag in schema: a:bodyPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.ListStyle"> <summary> <para> ListStyle.</para> <para>Represents the element tag in schema: a:lstStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.ShapeStyle"> <summary> <para> ShapeStyle.</para> <para>Represents the element tag in schema: a:style </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultShapeDefinitionType.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeDefault.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeDefault.#ctor"> <summary> Initializes a new instance of the ShapeDefault class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeDefault.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeDefault class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeDefault.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeDefault class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeDefault.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeDefault class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapeDefault.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeDefault.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapeDefault.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineDefault"> <summary> <para>Line Default.</para> <para>When the object is serialized out as xml, its qualified name is a:lnDef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeProperties <a:spPr></description></item> <item><description>BodyProperties <a:bodyPr></description></item> <item><description>ListStyle <a:lstStyle></description></item> <item><description>ShapeStyle <a:style></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineDefault.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineDefault.#ctor"> <summary> Initializes a new instance of the LineDefault class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineDefault.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LineDefault class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineDefault.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LineDefault class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineDefault.#ctor(System.String)"> <summary> Initializes a new instance of the LineDefault class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineDefault.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineDefault.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineDefault.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextDefault"> <summary> <para>Text Default.</para> <para>When the object is serialized out as xml, its qualified name is a:txDef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeProperties <a:spPr></description></item> <item><description>BodyProperties <a:bodyPr></description></item> <item><description>ListStyle <a:lstStyle></description></item> <item><description>ShapeStyle <a:style></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextDefault.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextDefault.#ctor"> <summary> Initializes a new instance of the TextDefault class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextDefault.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextDefault class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextDefault.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextDefault class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextDefault.#ctor(System.String)"> <summary> Initializes a new instance of the TextDefault class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextDefault.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextDefault.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextDefault.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.OverrideColorMapping"> <summary> <para>Override Color Mapping.</para> <para>When the object is serialized out as xml, its qualified name is a:overrideClrMapping.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorMappingType"> <summary> Defines the ColorMappingType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMappingType.#ctor"> <summary> Initializes a new instance of the ColorMappingType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMappingType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorMappingType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMappingType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorMappingType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMappingType.#ctor(System.String)"> <summary> Initializes a new instance of the ColorMappingType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Background1"> <summary> <para> Background 1.</para> <para>Represents the attribte in schema: bg1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Text1"> <summary> <para> Text 1.</para> <para>Represents the attribte in schema: tx1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Background2"> <summary> <para> Background 2.</para> <para>Represents the attribte in schema: bg2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Text2"> <summary> <para> Text 2.</para> <para>Represents the attribte in schema: tx2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Accent1"> <summary> <para> Accent 1.</para> <para>Represents the attribte in schema: accent1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Accent2"> <summary> <para> Accent 2.</para> <para>Represents the attribte in schema: accent2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Accent3"> <summary> <para> Accent 3.</para> <para>Represents the attribte in schema: accent3 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Accent4"> <summary> <para> Accent 4.</para> <para>Represents the attribte in schema: accent4 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Accent5"> <summary> <para> Accent 5.</para> <para>Represents the attribte in schema: accent5 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Accent6"> <summary> <para> Accent 6.</para> <para>Represents the attribte in schema: accent6 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.Hyperlink"> <summary> <para> Hyperlink.</para> <para>Represents the attribte in schema: hlink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.FollowedHyperlink"> <summary> <para> Followed Hyperlink.</para> <para>Represents the attribte in schema: folHlink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMappingType.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OverrideColorMapping.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OverrideColorMapping.#ctor"> <summary> Initializes a new instance of the OverrideColorMapping class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OverrideColorMapping.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OverrideColorMapping class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OverrideColorMapping.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OverrideColorMapping class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OverrideColorMapping.#ctor(System.String)"> <summary> Initializes a new instance of the OverrideColorMapping class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.OverrideColorMapping.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OverrideColorMapping.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.OverrideColorMapping.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorMap"> <summary> <para>Defines the ColorMap Class.</para> <para>When the object is serialized out as xml, its qualified name is a:clrMap.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMap.#ctor"> <summary> Initializes a new instance of the ColorMap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMap.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMap.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMap.#ctor(System.String)"> <summary> Initializes a new instance of the ColorMap class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ColorMap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ColorMap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ExtraColorScheme"> <summary> <para>Extra Color Scheme.</para> <para>When the object is serialized out as xml, its qualified name is a:extraClrScheme.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColorScheme <a:clrScheme></description></item> <item><description>ColorMap <a:clrMap></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.#ctor"> <summary> Initializes a new instance of the ExtraColorScheme class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtraColorScheme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtraColorScheme class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.#ctor(System.String)"> <summary> Initializes a new instance of the ExtraColorScheme class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.ColorScheme"> <summary> <para> ColorScheme.</para> <para>Represents the element tag in schema: a:clrScheme </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtraColorScheme.ColorMap"> <summary> <para> ColorMap.</para> <para>Represents the element tag in schema: a:clrMap </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ThemeElements"> <summary> <para>Theme Elements.</para> <para>When the object is serialized out as xml, its qualified name is a:themeElements.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColorScheme <a:clrScheme></description></item> <item><description>FontScheme <a:fontScheme></description></item> <item><description>FormatScheme <a:fmtScheme></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeElements.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeElements.#ctor"> <summary> Initializes a new instance of the ThemeElements class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeElements.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ThemeElements class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeElements.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ThemeElements class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeElements.#ctor(System.String)"> <summary> Initializes a new instance of the ThemeElements class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeElements.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeElements.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeElements.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeElements.ColorScheme"> <summary> <para> ColorScheme.</para> <para>Represents the element tag in schema: a:clrScheme </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeElements.FontScheme"> <summary> <para> Font Scheme.</para> <para>Represents the element tag in schema: a:fontScheme </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeElements.FormatScheme"> <summary> <para> Format Scheme.</para> <para>Represents the element tag in schema: a:fmtScheme </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeElements.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ObjectDefaults"> <summary> <para>Object Defaults.</para> <para>When the object is serialized out as xml, its qualified name is a:objectDefaults.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapeDefault <a:spDef></description></item> <item><description>LineDefault <a:lnDef></description></item> <item><description>TextDefault <a:txDef></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ObjectDefaults.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ObjectDefaults.#ctor"> <summary> Initializes a new instance of the ObjectDefaults class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ObjectDefaults.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ObjectDefaults class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ObjectDefaults.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ObjectDefaults class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ObjectDefaults.#ctor(System.String)"> <summary> Initializes a new instance of the ObjectDefaults class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ObjectDefaults.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ObjectDefaults.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ObjectDefaults.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ObjectDefaults.ShapeDefault"> <summary> <para> Shape Default.</para> <para>Represents the element tag in schema: a:spDef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ObjectDefaults.LineDefault"> <summary> <para> Line Default.</para> <para>Represents the element tag in schema: a:lnDef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ObjectDefaults.TextDefault"> <summary> <para> Text Default.</para> <para>Represents the element tag in schema: a:txDef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ObjectDefaults.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList"> <summary> <para>Extra Color Scheme List.</para> <para>When the object is serialized out as xml, its qualified name is a:extraClrSchemeLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtraColorScheme <a:extraClrScheme></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList.#ctor"> <summary> Initializes a new instance of the ExtraColorSchemeList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtraColorSchemeList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtraColorSchemeList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList.#ctor(System.String)"> <summary> Initializes a new instance of the ExtraColorSchemeList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ExtraColorSchemeList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.CustomColorList"> <summary> <para>Custom Color List.</para> <para>When the object is serialized out as xml, its qualified name is a:custClrLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CustomColor <a:custClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColorList.#ctor"> <summary> Initializes a new instance of the CustomColorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomColorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColorList.#ctor(System.String)"> <summary> Initializes a new instance of the CustomColorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.CustomColorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.CustomColorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Cell3DProperties"> <summary> <para>Cell 3-D.</para> <para>When the object is serialized out as xml, its qualified name is a:cell3D.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Bevel <a:bevel></description></item> <item><description>LightRig <a:lightRig></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Cell3DProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Cell3DProperties.#ctor"> <summary> Initializes a new instance of the Cell3DProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Cell3DProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Cell3DProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Cell3DProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Cell3DProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Cell3DProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Cell3DProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Cell3DProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Cell3DProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Cell3DProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Cell3DProperties.PresetMaterial"> <summary> <para> Preset Material.</para> <para>Represents the attribte in schema: prstMaterial </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Cell3DProperties.Bevel"> <summary> <para> Bevel.</para> <para>Represents the element tag in schema: a:bevel </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Cell3DProperties.LightRig"> <summary> <para> Light Rig.</para> <para>Represents the element tag in schema: a:lightRig </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Cell3DProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableCellProperties"> <summary> <para>Table Cell Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:tcPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LeftBorderLineProperties <a:lnL></description></item> <item><description>RightBorderLineProperties <a:lnR></description></item> <item><description>TopBorderLineProperties <a:lnT></description></item> <item><description>BottomBorderLineProperties <a:lnB></description></item> <item><description>TopLeftToBottomRightBorderLineProperties <a:lnTlToBr></description></item> <item><description>BottomLeftToTopRightBorderLineProperties <a:lnBlToTr></description></item> <item><description>Cell3DProperties <a:cell3D></description></item> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellProperties.#ctor"> <summary> Initializes a new instance of the TableCellProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableCellProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableCellProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellProperties.#ctor(System.String)"> <summary> Initializes a new instance of the TableCellProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.LeftMargin"> <summary> <para> Left Margin.</para> <para>Represents the attribte in schema: marL </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.RightMargin"> <summary> <para> Right Margin.</para> <para>Represents the attribte in schema: marR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.TopMargin"> <summary> <para> Top Margin.</para> <para>Represents the attribte in schema: marT </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.BottomMargin"> <summary> <para> Bottom Margin.</para> <para>Represents the attribte in schema: marB </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.Vertical"> <summary> <para> Text Direction.</para> <para>Represents the attribte in schema: vert </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.Anchor"> <summary> <para> Anchor.</para> <para>Represents the attribte in schema: anchor </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.AnchorCenter"> <summary> <para> Anchor Center.</para> <para>Represents the attribte in schema: anchorCtr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.HorizontalOverflow"> <summary> <para> Horizontal Overflow.</para> <para>Represents the attribte in schema: horzOverflow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.LeftBorderLineProperties"> <summary> <para> Left Border Line Properties.</para> <para>Represents the element tag in schema: a:lnL </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.RightBorderLineProperties"> <summary> <para> Right Border Line Properties.</para> <para>Represents the element tag in schema: a:lnR </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.TopBorderLineProperties"> <summary> <para> Top Border Line Properties.</para> <para>Represents the element tag in schema: a:lnT </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.BottomBorderLineProperties"> <summary> <para> Bottom Border Line Properties.</para> <para>Represents the element tag in schema: a:lnB </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.TopLeftToBottomRightBorderLineProperties"> <summary> <para> Top-Left to Bottom-Right Border Line Properties.</para> <para>Represents the element tag in schema: a:lnTlToBr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.BottomLeftToTopRightBorderLineProperties"> <summary> <para> Bottom-Left to Top-Right Border Line Properties.</para> <para>Represents the element tag in schema: a:lnBlToTr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellProperties.Cell3DProperties"> <summary> <para> Cell 3-D.</para> <para>Represents the element tag in schema: a:cell3D </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableCell"> <summary> <para>Table Cell.</para> <para>When the object is serialized out as xml, its qualified name is a:tc.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TextBody <a:txBody></description></item> <item><description>TableCellProperties <a:tcPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCell.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCell.#ctor"> <summary> Initializes a new instance of the TableCell class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCell.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCell.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCell.#ctor(System.String)"> <summary> Initializes a new instance of the TableCell class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCell.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.RowSpan"> <summary> <para> Row Span.</para> <para>Represents the attribte in schema: rowSpan </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.GridSpan"> <summary> <para> Grid Span.</para> <para>Represents the attribte in schema: gridSpan </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.HorizontalMerge"> <summary> <para> Horizontal Merge.</para> <para>Represents the attribte in schema: hMerge </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.VerticalMerge"> <summary> <para> Vertical Merge.</para> <para>Represents the attribte in schema: vMerge </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.TextBody"> <summary> <para> Text Body.</para> <para>Represents the element tag in schema: a:txBody </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.TableCellProperties"> <summary> <para> Table Cell Properties.</para> <para>Represents the element tag in schema: a:tcPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCell.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableStyle"> <summary> <para>Table Style.</para> <para>When the object is serialized out as xml, its qualified name is a:tableStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableBackground <a:tblBg></description></item> <item><description>WholeTable <a:wholeTbl></description></item> <item><description>Band1Horizontal <a:band1H></description></item> <item><description>Band2Horizontal <a:band2H></description></item> <item><description>Band1Vertical <a:band1V></description></item> <item><description>Band2Vertical <a:band2V></description></item> <item><description>LastColumn <a:lastCol></description></item> <item><description>FirstColumn <a:firstCol></description></item> <item><description>LastRow <a:lastRow></description></item> <item><description>SoutheastCell <a:seCell></description></item> <item><description>SouthwestCell <a:swCell></description></item> <item><description>FirstRow <a:firstRow></description></item> <item><description>NortheastCell <a:neCell></description></item> <item><description>NorthwestCell <a:nwCell></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableStyleType"> <summary> Defines the TableStyleType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableBackground <a:tblBg></description></item> <item><description>WholeTable <a:wholeTbl></description></item> <item><description>Band1Horizontal <a:band1H></description></item> <item><description>Band2Horizontal <a:band2H></description></item> <item><description>Band1Vertical <a:band1V></description></item> <item><description>Band2Vertical <a:band2V></description></item> <item><description>LastColumn <a:lastCol></description></item> <item><description>FirstColumn <a:firstCol></description></item> <item><description>LastRow <a:lastRow></description></item> <item><description>SoutheastCell <a:seCell></description></item> <item><description>SouthwestCell <a:swCell></description></item> <item><description>FirstRow <a:firstRow></description></item> <item><description>NortheastCell <a:neCell></description></item> <item><description>NorthwestCell <a:nwCell></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleType.#ctor"> <summary> Initializes a new instance of the TableStyleType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableStyleType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableStyleType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleType.#ctor(System.String)"> <summary> Initializes a new instance of the TableStyleType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.StyleId"> <summary> <para> Style ID.</para> <para>Represents the attribte in schema: styleId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.StyleName"> <summary> <para> Name.</para> <para>Represents the attribte in schema: styleName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.TableBackground"> <summary> <para> Table Background.</para> <para>Represents the element tag in schema: a:tblBg </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.WholeTable"> <summary> <para> Whole Table.</para> <para>Represents the element tag in schema: a:wholeTbl </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.Band1Horizontal"> <summary> <para> Band 1 Horizontal.</para> <para>Represents the element tag in schema: a:band1H </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.Band2Horizontal"> <summary> <para> Band 2 Horizontal.</para> <para>Represents the element tag in schema: a:band2H </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.Band1Vertical"> <summary> <para> Band 1 Vertical.</para> <para>Represents the element tag in schema: a:band1V </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.Band2Vertical"> <summary> <para> Band 2 Vertical.</para> <para>Represents the element tag in schema: a:band2V </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.LastColumn"> <summary> <para> Last Column.</para> <para>Represents the element tag in schema: a:lastCol </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.FirstColumn"> <summary> <para> First Column.</para> <para>Represents the element tag in schema: a:firstCol </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.LastRow"> <summary> <para> Last Row.</para> <para>Represents the element tag in schema: a:lastRow </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.SoutheastCell"> <summary> <para> Southeast Cell.</para> <para>Represents the element tag in schema: a:seCell </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.SouthwestCell"> <summary> <para> Southwest Cell.</para> <para>Represents the element tag in schema: a:swCell </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.FirstRow"> <summary> <para> First Row.</para> <para>Represents the element tag in schema: a:firstRow </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.NortheastCell"> <summary> <para> Northeast Cell.</para> <para>Represents the element tag in schema: a:neCell </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.NorthwestCell"> <summary> <para> Northwest Cell.</para> <para>Represents the element tag in schema: a:nwCell </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleType.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyle.#ctor"> <summary> Initializes a new instance of the TableStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyle.#ctor(System.String)"> <summary> Initializes a new instance of the TableStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableStyleEntry"> <summary> <para>Table Style.</para> <para>When the object is serialized out as xml, its qualified name is a:tblStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableBackground <a:tblBg></description></item> <item><description>WholeTable <a:wholeTbl></description></item> <item><description>Band1Horizontal <a:band1H></description></item> <item><description>Band2Horizontal <a:band2H></description></item> <item><description>Band1Vertical <a:band1V></description></item> <item><description>Band2Vertical <a:band2V></description></item> <item><description>LastColumn <a:lastCol></description></item> <item><description>FirstColumn <a:firstCol></description></item> <item><description>LastRow <a:lastRow></description></item> <item><description>SoutheastCell <a:seCell></description></item> <item><description>SouthwestCell <a:swCell></description></item> <item><description>FirstRow <a:firstRow></description></item> <item><description>NortheastCell <a:neCell></description></item> <item><description>NorthwestCell <a:nwCell></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleEntry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleEntry.#ctor"> <summary> Initializes a new instance of the TableStyleEntry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleEntry.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableStyleEntry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleEntry.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableStyleEntry class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleEntry.#ctor(System.String)"> <summary> Initializes a new instance of the TableStyleEntry class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleEntry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleEntry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleEntry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableStyleId"> <summary> <para>Table Style ID.</para> <para>When the object is serialized out as xml, its qualified name is a:tableStyleId.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleId.#ctor"> <summary> Initializes a new instance of the TableStyleId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleId.#ctor(System.String)"> <summary> Initializes a new instance of the TableStyleId class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableStyleId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableStyleId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GridColumn"> <summary> <para>Table Grid Column.</para> <para>When the object is serialized out as xml, its qualified name is a:gridCol.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GridColumn.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GridColumn.#ctor"> <summary> Initializes a new instance of the GridColumn class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GridColumn.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GridColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GridColumn.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GridColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GridColumn.#ctor(System.String)"> <summary> Initializes a new instance of the GridColumn class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GridColumn.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GridColumn.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GridColumn.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GridColumn.Width"> <summary> <para> Width.</para> <para>Represents the attribte in schema: w </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GridColumn.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableProperties"> <summary> <para>Table Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:tblPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> <item><description>TableStyle <a:tableStyle></description></item> <item><description>TableStyleId <a:tableStyleId></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableProperties.#ctor"> <summary> Initializes a new instance of the TableProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableProperties.#ctor(System.String)"> <summary> Initializes a new instance of the TableProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.RightToLeft"> <summary> <para> Right-to-Left.</para> <para>Represents the attribte in schema: rtl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.FirstRow"> <summary> <para> First Row.</para> <para>Represents the attribte in schema: firstRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.FirstColumn"> <summary> <para> First Column.</para> <para>Represents the attribte in schema: firstCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.LastRow"> <summary> <para> Last Row.</para> <para>Represents the attribte in schema: lastRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.LastColumn"> <summary> <para> Last Column.</para> <para>Represents the attribte in schema: lastCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.BandRow"> <summary> <para> Banded Rows.</para> <para>Represents the attribte in schema: bandRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableProperties.BandColumn"> <summary> <para> Banded Columns.</para> <para>Represents the attribte in schema: bandCol </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableGrid"> <summary> <para>Table Grid.</para> <para>When the object is serialized out as xml, its qualified name is a:tblGrid.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GridColumn <a:gridCol></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableGrid.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableGrid.#ctor"> <summary> Initializes a new instance of the TableGrid class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableGrid.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableGrid class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableGrid.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableGrid class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableGrid.#ctor(System.String)"> <summary> Initializes a new instance of the TableGrid class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableGrid.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableGrid.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableGrid.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableRow"> <summary> <para>Table Row.</para> <para>When the object is serialized out as xml, its qualified name is a:tr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCell <a:tc></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableRow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableRow.#ctor"> <summary> Initializes a new instance of the TableRow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableRow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableRow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableRow.#ctor(System.String)"> <summary> Initializes a new instance of the TableRow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableRow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableRow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableRow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableRow.Height"> <summary> <para> Height.</para> <para>Represents the attribte in schema: h </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LeftBorder"> <summary> <para>Left Border.</para> <para>When the object is serialized out as xml, its qualified name is a:left.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ThemeableLineStyleType"> <summary> Defines the ThemeableLineStyleType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeableLineStyleType.#ctor"> <summary> Initializes a new instance of the ThemeableLineStyleType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeableLineStyleType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ThemeableLineStyleType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeableLineStyleType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ThemeableLineStyleType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ThemeableLineStyleType.#ctor(System.String)"> <summary> Initializes a new instance of the ThemeableLineStyleType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeableLineStyleType.Outline"> <summary> <para> Outline.</para> <para>Represents the element tag in schema: a:ln </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ThemeableLineStyleType.LineReference"> <summary> <para> Line Reference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorder.#ctor"> <summary> Initializes a new instance of the LeftBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorder.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LeftBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorder.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LeftBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorder.#ctor(System.String)"> <summary> Initializes a new instance of the LeftBorder class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LeftBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LeftBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LeftBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RightBorder"> <summary> <para>Right Border.</para> <para>When the object is serialized out as xml, its qualified name is a:right.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorder.#ctor"> <summary> Initializes a new instance of the RightBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorder.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RightBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorder.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RightBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorder.#ctor(System.String)"> <summary> Initializes a new instance of the RightBorder class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RightBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RightBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TopBorder"> <summary> <para>Top Border.</para> <para>When the object is serialized out as xml, its qualified name is a:top.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorder.#ctor"> <summary> Initializes a new instance of the TopBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorder.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TopBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorder.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TopBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorder.#ctor(System.String)"> <summary> Initializes a new instance of the TopBorder class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BottomBorder"> <summary> <para>Bottom Border.</para> <para>When the object is serialized out as xml, its qualified name is a:bottom.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorder.#ctor"> <summary> Initializes a new instance of the BottomBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorder.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BottomBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorder.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BottomBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorder.#ctor(System.String)"> <summary> Initializes a new instance of the BottomBorder class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BottomBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BottomBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BottomBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder"> <summary> <para>Inside Horizontal Border.</para> <para>When the object is serialized out as xml, its qualified name is a:insideH.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder.#ctor"> <summary> Initializes a new instance of the InsideHorizontalBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the InsideHorizontalBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the InsideHorizontalBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder.#ctor(System.String)"> <summary> Initializes a new instance of the InsideHorizontalBorder class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InsideHorizontalBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder"> <summary> <para>Inside Vertical Border.</para> <para>When the object is serialized out as xml, its qualified name is a:insideV.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder.#ctor"> <summary> Initializes a new instance of the InsideVerticalBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the InsideVerticalBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the InsideVerticalBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder.#ctor(System.String)"> <summary> Initializes a new instance of the InsideVerticalBorder class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.InsideVerticalBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder"> <summary> <para>Top Left to Bottom Right Border.</para> <para>When the object is serialized out as xml, its qualified name is a:tl2br.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder.#ctor"> <summary> Initializes a new instance of the TopLeftToBottomRightBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TopLeftToBottomRightBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TopLeftToBottomRightBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder.#ctor(System.String)"> <summary> Initializes a new instance of the TopLeftToBottomRightBorder class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopLeftToBottomRightBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder"> <summary> <para>Top Right to Bottom Left Border.</para> <para>When the object is serialized out as xml, its qualified name is a:tr2bl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>LineReference <a:lnRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder.#ctor"> <summary> Initializes a new instance of the TopRightToBottomLeftBorder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TopRightToBottomLeftBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TopRightToBottomLeftBorder class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder.#ctor(System.String)"> <summary> Initializes a new instance of the TopRightToBottomLeftBorder class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TopRightToBottomLeftBorder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableCellBorders"> <summary> <para>Table Cell Borders.</para> <para>When the object is serialized out as xml, its qualified name is a:tcBdr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LeftBorder <a:left></description></item> <item><description>RightBorder <a:right></description></item> <item><description>TopBorder <a:top></description></item> <item><description>BottomBorder <a:bottom></description></item> <item><description>InsideHorizontalBorder <a:insideH></description></item> <item><description>InsideVerticalBorder <a:insideV></description></item> <item><description>TopLeftToBottomRightBorder <a:tl2br></description></item> <item><description>TopRightToBottomLeftBorder <a:tr2bl></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellBorders.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellBorders.#ctor"> <summary> Initializes a new instance of the TableCellBorders class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellBorders.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableCellBorders class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellBorders.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableCellBorders class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellBorders.#ctor(System.String)"> <summary> Initializes a new instance of the TableCellBorders class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellBorders.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.LeftBorder"> <summary> <para> Left Border.</para> <para>Represents the element tag in schema: a:left </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.RightBorder"> <summary> <para> Right Border.</para> <para>Represents the element tag in schema: a:right </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.TopBorder"> <summary> <para> Top Border.</para> <para>Represents the element tag in schema: a:top </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.BottomBorder"> <summary> <para> Bottom Border.</para> <para>Represents the element tag in schema: a:bottom </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.InsideHorizontalBorder"> <summary> <para> Inside Horizontal Border.</para> <para>Represents the element tag in schema: a:insideH </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.InsideVerticalBorder"> <summary> <para> Inside Vertical Border.</para> <para>Represents the element tag in schema: a:insideV </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.TopLeftToBottomRightBorder"> <summary> <para> Top Left to Bottom Right Border.</para> <para>Represents the element tag in schema: a:tl2br </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.TopRightToBottomLeftBorder"> <summary> <para> Top Right to Bottom Left Border.</para> <para>Represents the element tag in schema: a:tr2bl </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellBorders.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableCellTextStyle"> <summary> <para>Table Cell Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:tcTxStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Fonts <a:font></description></item> <item><description>FontReference <a:fontRef></description></item> <item><description>RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>RgbColorModelHex <a:srgbClr></description></item> <item><description>HslColor <a:hslClr></description></item> <item><description>SystemColor <a:sysClr></description></item> <item><description>SchemeColor <a:schemeClr></description></item> <item><description>PresetColor <a:prstClr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.#ctor"> <summary> Initializes a new instance of the TableCellTextStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableCellTextStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableCellTextStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.#ctor(System.String)"> <summary> Initializes a new instance of the TableCellTextStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.Bold"> <summary> <para> Bold.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellTextStyle.Italic"> <summary> <para> Italic.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableCellStyle"> <summary> <para>Table Cell Style.</para> <para>When the object is serialized out as xml, its qualified name is a:tcStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellBorders <a:tcBdr></description></item> <item><description>FillProperties <a:fill></description></item> <item><description>FillReference <a:fillRef></description></item> <item><description>Cell3DProperties <a:cell3D></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellStyle.#ctor"> <summary> Initializes a new instance of the TableCellStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableCellStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableCellStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellStyle.#ctor(System.String)"> <summary> Initializes a new instance of the TableCellStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableCellStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableCellStyle.TableCellBorders"> <summary> <para> Table Cell Borders.</para> <para>Represents the element tag in schema: a:tcBdr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TableBackground"> <summary> <para>Table Background.</para> <para>When the object is serialized out as xml, its qualified name is a:tblBg.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FillProperties <a:fill></description></item> <item><description>FillReference <a:fillRef></description></item> <item><description>EffectPropertiesType <a:effect></description></item> <item><description>EffectReference <a:effectRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableBackground.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableBackground.#ctor"> <summary> Initializes a new instance of the TableBackground class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableBackground.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TableBackground class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableBackground.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TableBackground class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableBackground.#ctor(System.String)"> <summary> Initializes a new instance of the TableBackground class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TableBackground.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableBackground.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TableBackground.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.WholeTable"> <summary> <para>Whole Table.</para> <para>When the object is serialized out as xml, its qualified name is a:wholeTbl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TablePartStyleType"> <summary> Defines the TablePartStyleType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TablePartStyleType.#ctor"> <summary> Initializes a new instance of the TablePartStyleType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TablePartStyleType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TablePartStyleType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TablePartStyleType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TablePartStyleType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TablePartStyleType.#ctor(System.String)"> <summary> Initializes a new instance of the TablePartStyleType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TablePartStyleType.TableCellTextStyle"> <summary> <para> Table Cell Text Style.</para> <para>Represents the element tag in schema: a:tcTxStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TablePartStyleType.TableCellStyle"> <summary> <para> Table Cell Style.</para> <para>Represents the element tag in schema: a:tcStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WholeTable.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WholeTable.#ctor"> <summary> Initializes a new instance of the WholeTable class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WholeTable.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WholeTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WholeTable.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WholeTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WholeTable.#ctor(System.String)"> <summary> Initializes a new instance of the WholeTable class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.WholeTable.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.WholeTable.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.WholeTable.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Band1Horizontal"> <summary> <para>Band 1 Horizontal.</para> <para>When the object is serialized out as xml, its qualified name is a:band1H.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Horizontal.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Horizontal.#ctor"> <summary> Initializes a new instance of the Band1Horizontal class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Horizontal.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Band1Horizontal class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Horizontal.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Band1Horizontal class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Horizontal.#ctor(System.String)"> <summary> Initializes a new instance of the Band1Horizontal class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Horizontal.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Band1Horizontal.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Band1Horizontal.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Band2Horizontal"> <summary> <para>Band 2 Horizontal.</para> <para>When the object is serialized out as xml, its qualified name is a:band2H.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Horizontal.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Horizontal.#ctor"> <summary> Initializes a new instance of the Band2Horizontal class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Horizontal.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Band2Horizontal class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Horizontal.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Band2Horizontal class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Horizontal.#ctor(System.String)"> <summary> Initializes a new instance of the Band2Horizontal class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Horizontal.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Band2Horizontal.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Band2Horizontal.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Band1Vertical"> <summary> <para>Band 1 Vertical.</para> <para>When the object is serialized out as xml, its qualified name is a:band1V.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Vertical.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Vertical.#ctor"> <summary> Initializes a new instance of the Band1Vertical class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Vertical.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Band1Vertical class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Vertical.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Band1Vertical class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Vertical.#ctor(System.String)"> <summary> Initializes a new instance of the Band1Vertical class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band1Vertical.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Band1Vertical.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Band1Vertical.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Band2Vertical"> <summary> <para>Band 2 Vertical.</para> <para>When the object is serialized out as xml, its qualified name is a:band2V.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Vertical.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Vertical.#ctor"> <summary> Initializes a new instance of the Band2Vertical class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Vertical.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Band2Vertical class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Vertical.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Band2Vertical class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Vertical.#ctor(System.String)"> <summary> Initializes a new instance of the Band2Vertical class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Band2Vertical.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Band2Vertical.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Band2Vertical.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LastColumn"> <summary> <para>Last Column.</para> <para>When the object is serialized out as xml, its qualified name is a:lastCol.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastColumn.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastColumn.#ctor"> <summary> Initializes a new instance of the LastColumn class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastColumn.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LastColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastColumn.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LastColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastColumn.#ctor(System.String)"> <summary> Initializes a new instance of the LastColumn class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastColumn.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LastColumn.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LastColumn.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FirstColumn"> <summary> <para>First Column.</para> <para>When the object is serialized out as xml, its qualified name is a:firstCol.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstColumn.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstColumn.#ctor"> <summary> Initializes a new instance of the FirstColumn class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstColumn.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FirstColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstColumn.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FirstColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstColumn.#ctor(System.String)"> <summary> Initializes a new instance of the FirstColumn class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstColumn.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FirstColumn.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FirstColumn.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LastRow"> <summary> <para>Last Row.</para> <para>When the object is serialized out as xml, its qualified name is a:lastRow.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastRow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastRow.#ctor"> <summary> Initializes a new instance of the LastRow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastRow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LastRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastRow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LastRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastRow.#ctor(System.String)"> <summary> Initializes a new instance of the LastRow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LastRow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LastRow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LastRow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SoutheastCell"> <summary> <para>Southeast Cell.</para> <para>When the object is serialized out as xml, its qualified name is a:seCell.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoutheastCell.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoutheastCell.#ctor"> <summary> Initializes a new instance of the SoutheastCell class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoutheastCell.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SoutheastCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoutheastCell.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SoutheastCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoutheastCell.#ctor(System.String)"> <summary> Initializes a new instance of the SoutheastCell class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SoutheastCell.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SoutheastCell.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SoutheastCell.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SouthwestCell"> <summary> <para>Southwest Cell.</para> <para>When the object is serialized out as xml, its qualified name is a:swCell.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SouthwestCell.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SouthwestCell.#ctor"> <summary> Initializes a new instance of the SouthwestCell class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SouthwestCell.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SouthwestCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SouthwestCell.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SouthwestCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SouthwestCell.#ctor(System.String)"> <summary> Initializes a new instance of the SouthwestCell class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SouthwestCell.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SouthwestCell.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SouthwestCell.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FirstRow"> <summary> <para>First Row.</para> <para>When the object is serialized out as xml, its qualified name is a:firstRow.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstRow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstRow.#ctor"> <summary> Initializes a new instance of the FirstRow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstRow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FirstRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstRow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FirstRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstRow.#ctor(System.String)"> <summary> Initializes a new instance of the FirstRow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.FirstRow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FirstRow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.FirstRow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NortheastCell"> <summary> <para>Northeast Cell.</para> <para>When the object is serialized out as xml, its qualified name is a:neCell.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NortheastCell.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NortheastCell.#ctor"> <summary> Initializes a new instance of the NortheastCell class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NortheastCell.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NortheastCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NortheastCell.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NortheastCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NortheastCell.#ctor(System.String)"> <summary> Initializes a new instance of the NortheastCell class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NortheastCell.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NortheastCell.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NortheastCell.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NorthwestCell"> <summary> <para>Northwest Cell.</para> <para>When the object is serialized out as xml, its qualified name is a:nwCell.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TableCellTextStyle <a:tcTxStyle></description></item> <item><description>TableCellStyle <a:tcStyle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NorthwestCell.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NorthwestCell.#ctor"> <summary> Initializes a new instance of the NorthwestCell class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NorthwestCell.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NorthwestCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NorthwestCell.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NorthwestCell class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NorthwestCell.#ctor(System.String)"> <summary> Initializes a new instance of the NorthwestCell class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NorthwestCell.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NorthwestCell.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NorthwestCell.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ParagraphProperties"> <summary> <para>Text Paragraph Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType"> <summary> Defines the TextParagraphPropertiesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.#ctor"> <summary> Initializes a new instance of the TextParagraphPropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextParagraphPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextParagraphPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.#ctor(System.String)"> <summary> Initializes a new instance of the TextParagraphPropertiesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.LeftMargin"> <summary> <para> Left Margin.</para> <para>Represents the attribte in schema: marL </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.RightMargin"> <summary> <para> Right Margin.</para> <para>Represents the attribte in schema: marR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.Level"> <summary> <para> Level.</para> <para>Represents the attribte in schema: lvl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.Indent"> <summary> <para> Indent.</para> <para>Represents the attribte in schema: indent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.Alignment"> <summary> <para> Alignment.</para> <para>Represents the attribte in schema: algn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.DefaultTabSize"> <summary> <para> Default Tab Size.</para> <para>Represents the attribte in schema: defTabSz </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.RightToLeft"> <summary> <para> Right To Left.</para> <para>Represents the attribte in schema: rtl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.EastAsianLineBreak"> <summary> <para> East Asian Line Break.</para> <para>Represents the attribte in schema: eaLnBrk </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.FontAlignment"> <summary> <para> Font Alignment.</para> <para>Represents the attribte in schema: fontAlgn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.LatinLineBreak"> <summary> <para> Latin Line Break.</para> <para>Represents the attribte in schema: latinLnBrk </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.Height"> <summary> <para> Hanging Punctuation.</para> <para>Represents the attribte in schema: hangingPunct </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.LineSpacing"> <summary> <para> Line Spacing.</para> <para>Represents the element tag in schema: a:lnSpc </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.SpaceBefore"> <summary> <para> Space Before.</para> <para>Represents the element tag in schema: a:spcBef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextParagraphPropertiesType.SpaceAfter"> <summary> <para> Space After.</para> <para>Represents the element tag in schema: a:spcAft </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ParagraphProperties.#ctor"> <summary> Initializes a new instance of the ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties"> <summary> <para>Default Paragraph Style.</para> <para>When the object is serialized out as xml, its qualified name is a:defPPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties.#ctor"> <summary> Initializes a new instance of the DefaultParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DefaultParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DefaultParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the DefaultParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties"> <summary> <para>List Level 1 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl1pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level1ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level1ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level1ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level1ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties"> <summary> <para>List Level 2 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl2pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level2ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level2ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level2ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level2ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties"> <summary> <para>List Level 3 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl3pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level3ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level3ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level3ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level3ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties"> <summary> <para>List Level 4 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl4pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level4ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level4ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level4ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level4ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties"> <summary> <para>List Level 5 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl5pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level5ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level5ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level5ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level5ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties"> <summary> <para>List Level 6 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl6pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level6ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level6ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level6ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level6ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties"> <summary> <para>List Level 7 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl7pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level7ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level7ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level7ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level7ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties"> <summary> <para>List Level 8 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl8pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level8ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level8ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level8ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level8ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties"> <summary> <para>List Level 9 Text Style.</para> <para>When the object is serialized out as xml, its qualified name is a:lvl9pPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LineSpacing <a:lnSpc></description></item> <item><description>SpaceBefore <a:spcBef></description></item> <item><description>SpaceAfter <a:spcAft></description></item> <item><description>BulletColorText <a:buClrTx></description></item> <item><description>BulletColor <a:buClr></description></item> <item><description>BulletSizeText <a:buSzTx></description></item> <item><description>BulletSizePercentage <a:buSzPct></description></item> <item><description>BulletSizePoints <a:buSzPts></description></item> <item><description>BulletFontText <a:buFontTx></description></item> <item><description>BulletFont <a:buFont></description></item> <item><description>NoBullet <a:buNone></description></item> <item><description>AutoNumberedBullet <a:buAutoNum></description></item> <item><description>CharacterBullet <a:buChar></description></item> <item><description>PictureBullet <a:buBlip></description></item> <item><description>TabStopList <a:tabLst></description></item> <item><description>DefaultRunProperties <a:defRPr></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties.#ctor"> <summary> Initializes a new instance of the Level9ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Level9ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Level9ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the Level9ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties"> <summary> <para>End Paragraph Run Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:endParaRPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> <item><description>Highlight <a:highlight></description></item> <item><description>UnderlineFollowsText <a:uLnTx></description></item> <item><description>Underline <a:uLn></description></item> <item><description>UnderlineFillText <a:uFillTx></description></item> <item><description>UnderlineFill <a:uFill></description></item> <item><description>LatinFont <a:latin></description></item> <item><description>EastAsianFont <a:ea></description></item> <item><description>ComplexScriptFont <a:cs></description></item> <item><description>SymbolFont <a:sym></description></item> <item><description>HyperlinkOnClick <a:hlinkClick></description></item> <item><description>HyperlinkOnMouseOver <a:hlinkMouseOver></description></item> <item><description>RightToLeft <a:rtl></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType"> <summary> Defines the TextCharacterPropertiesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> <item><description>Highlight <a:highlight></description></item> <item><description>UnderlineFollowsText <a:uLnTx></description></item> <item><description>Underline <a:uLn></description></item> <item><description>UnderlineFillText <a:uFillTx></description></item> <item><description>UnderlineFill <a:uFill></description></item> <item><description>LatinFont <a:latin></description></item> <item><description>EastAsianFont <a:ea></description></item> <item><description>ComplexScriptFont <a:cs></description></item> <item><description>SymbolFont <a:sym></description></item> <item><description>HyperlinkOnClick <a:hlinkClick></description></item> <item><description>HyperlinkOnMouseOver <a:hlinkMouseOver></description></item> <item><description>RightToLeft <a:rtl></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.#ctor"> <summary> Initializes a new instance of the TextCharacterPropertiesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextCharacterPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextCharacterPropertiesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.#ctor(System.String)"> <summary> Initializes a new instance of the TextCharacterPropertiesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Kumimoji"> <summary> <para> Kumimoji.</para> <para>Represents the attribte in schema: kumimoji </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Language"> <summary> <para> Language ID.</para> <para>Represents the attribte in schema: lang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.AlternativeLanguage"> <summary> <para> Alternative Language.</para> <para>Represents the attribte in schema: altLang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.FontSize"> <summary> <para> Font Size.</para> <para>Represents the attribte in schema: sz </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Bold"> <summary> <para> Bold.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Italic"> <summary> <para> Italics.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Underline"> <summary> <para> Underline.</para> <para>Represents the attribte in schema: u </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Strike"> <summary> <para> Strikethrough.</para> <para>Represents the attribte in schema: strike </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Kerning"> <summary> <para> Kerning.</para> <para>Represents the attribte in schema: kern </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Capital"> <summary> <para> Capitalization.</para> <para>Represents the attribte in schema: cap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Spacing"> <summary> <para> Spacing.</para> <para>Represents the attribte in schema: spc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.NormalizeHeight"> <summary> <para> Normalize Heights.</para> <para>Represents the attribte in schema: normalizeH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Baseline"> <summary> <para> Baseline.</para> <para>Represents the attribte in schema: baseline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.NoProof"> <summary> <para> No Proofing.</para> <para>Represents the attribte in schema: noProof </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Dirty"> <summary> <para> Dirty.</para> <para>Represents the attribte in schema: dirty </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.SpellingError"> <summary> <para> Spelling Error.</para> <para>Represents the attribte in schema: err </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.SmartTagClean"> <summary> <para> SmartTag Clean.</para> <para>Represents the attribte in schema: smtClean </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.SmartTagId"> <summary> <para> SmartTag ID.</para> <para>Represents the attribte in schema: smtId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Bookmark"> <summary> <para> Bookmark Link Target.</para> <para>Represents the attribte in schema: bmk </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextCharacterPropertiesType.Outline"> <summary> <para> Line.</para> <para>Represents the element tag in schema: a:ln </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties.#ctor"> <summary> Initializes a new instance of the EndParagraphRunProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EndParagraphRunProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EndParagraphRunProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties.#ctor(System.String)"> <summary> Initializes a new instance of the EndParagraphRunProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.EndParagraphRunProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RunProperties"> <summary> <para>Text Run Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:rPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> <item><description>Highlight <a:highlight></description></item> <item><description>UnderlineFollowsText <a:uLnTx></description></item> <item><description>Underline <a:uLn></description></item> <item><description>UnderlineFillText <a:uFillTx></description></item> <item><description>UnderlineFill <a:uFill></description></item> <item><description>LatinFont <a:latin></description></item> <item><description>EastAsianFont <a:ea></description></item> <item><description>ComplexScriptFont <a:cs></description></item> <item><description>SymbolFont <a:sym></description></item> <item><description>HyperlinkOnClick <a:hlinkClick></description></item> <item><description>HyperlinkOnMouseOver <a:hlinkMouseOver></description></item> <item><description>RightToLeft <a:rtl></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RunProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RunProperties.#ctor"> <summary> Initializes a new instance of the RunProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RunProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RunProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RunProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RunProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RunProperties.#ctor(System.String)"> <summary> Initializes a new instance of the RunProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RunProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RunProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RunProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.DefaultRunProperties"> <summary> <para>Default Text Run Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:defRPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Outline <a:ln></description></item> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> <item><description>Highlight <a:highlight></description></item> <item><description>UnderlineFollowsText <a:uLnTx></description></item> <item><description>Underline <a:uLn></description></item> <item><description>UnderlineFillText <a:uFillTx></description></item> <item><description>UnderlineFill <a:uFill></description></item> <item><description>LatinFont <a:latin></description></item> <item><description>EastAsianFont <a:ea></description></item> <item><description>ComplexScriptFont <a:cs></description></item> <item><description>SymbolFont <a:sym></description></item> <item><description>HyperlinkOnClick <a:hlinkClick></description></item> <item><description>HyperlinkOnMouseOver <a:hlinkMouseOver></description></item> <item><description>RightToLeft <a:rtl></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultRunProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultRunProperties.#ctor"> <summary> Initializes a new instance of the DefaultRunProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultRunProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DefaultRunProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultRunProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DefaultRunProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultRunProperties.#ctor(System.String)"> <summary> Initializes a new instance of the DefaultRunProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DefaultRunProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultRunProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DefaultRunProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Paragraph"> <summary> <para>Text Paragraphs.</para> <para>When the object is serialized out as xml, its qualified name is a:p.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ParagraphProperties <a:pPr></description></item> <item><description>Run <a:r></description></item> <item><description>Break <a:br></description></item> <item><description>Field <a:fld></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.TextMath <a14:m></description></item> <item><description>EndParagraphRunProperties <a:endParaRPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Paragraph.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Paragraph.#ctor"> <summary> Initializes a new instance of the Paragraph class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Paragraph.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Paragraph class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Paragraph.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Paragraph class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Paragraph.#ctor(System.String)"> <summary> Initializes a new instance of the Paragraph class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Paragraph.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Paragraph.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Paragraph.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Paragraph.ParagraphProperties"> <summary> <para> Text Paragraph Properties.</para> <para>Represents the element tag in schema: a:pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TabStop"> <summary> <para>Tab Stop.</para> <para>When the object is serialized out as xml, its qualified name is a:tab.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStop.#ctor"> <summary> Initializes a new instance of the TabStop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TabStop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TabStop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TabStop.Position"> <summary> <para> Tab Position.</para> <para>Represents the attribte in schema: pos </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TabStop.Alignment"> <summary> <para> Tab Alignment.</para> <para>Represents the attribte in schema: algn </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SpacingPercent"> <summary> <para>Spacing Percent.</para> <para>When the object is serialized out as xml, its qualified name is a:spcPct.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpacingPercent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpacingPercent.#ctor"> <summary> Initializes a new instance of the SpacingPercent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpacingPercent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpacingPercent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpacingPercent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpacingPercent.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SpacingPoints"> <summary> <para>Spacing Points.</para> <para>When the object is serialized out as xml, its qualified name is a:spcPts.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpacingPoints.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpacingPoints.#ctor"> <summary> Initializes a new instance of the SpacingPoints class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpacingPoints.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpacingPoints.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpacingPoints.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpacingPoints.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineSpacing"> <summary> <para>Line Spacing.</para> <para>When the object is serialized out as xml, its qualified name is a:lnSpc.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SpacingPercent <a:spcPct></description></item> <item><description>SpacingPoints <a:spcPts></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextSpacingType"> <summary> Defines the TextSpacingType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SpacingPercent <a:spcPct></description></item> <item><description>SpacingPoints <a:spcPts></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextSpacingType.#ctor"> <summary> Initializes a new instance of the TextSpacingType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextSpacingType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextSpacingType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextSpacingType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextSpacingType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TextSpacingType.#ctor(System.String)"> <summary> Initializes a new instance of the TextSpacingType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextSpacingType.SpacingPercent"> <summary> <para> Spacing Percent.</para> <para>Represents the element tag in schema: a:spcPct </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TextSpacingType.SpacingPoints"> <summary> <para> Spacing Points.</para> <para>Represents the element tag in schema: a:spcPts </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineSpacing.#ctor"> <summary> Initializes a new instance of the LineSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineSpacing.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LineSpacing class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineSpacing.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LineSpacing class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineSpacing.#ctor(System.String)"> <summary> Initializes a new instance of the LineSpacing class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.LineSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.LineSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SpaceBefore"> <summary> <para>Space Before.</para> <para>When the object is serialized out as xml, its qualified name is a:spcBef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SpacingPercent <a:spcPct></description></item> <item><description>SpacingPoints <a:spcPts></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceBefore.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceBefore.#ctor"> <summary> Initializes a new instance of the SpaceBefore class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceBefore.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SpaceBefore class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceBefore.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SpaceBefore class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceBefore.#ctor(System.String)"> <summary> Initializes a new instance of the SpaceBefore class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceBefore.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpaceBefore.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpaceBefore.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SpaceAfter"> <summary> <para>Space After.</para> <para>When the object is serialized out as xml, its qualified name is a:spcAft.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SpacingPercent <a:spcPct></description></item> <item><description>SpacingPoints <a:spcPts></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceAfter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceAfter.#ctor"> <summary> Initializes a new instance of the SpaceAfter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceAfter.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SpaceAfter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceAfter.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SpaceAfter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceAfter.#ctor(System.String)"> <summary> Initializes a new instance of the SpaceAfter class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.SpaceAfter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpaceAfter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.SpaceAfter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TabStopList"> <summary> <para>Tab List.</para> <para>When the object is serialized out as xml, its qualified name is a:tabLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TabStop <a:tab></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStopList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStopList.#ctor"> <summary> Initializes a new instance of the TabStopList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStopList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TabStopList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStopList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TabStopList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStopList.#ctor(System.String)"> <summary> Initializes a new instance of the TabStopList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.TabStopList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TabStopList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.TabStopList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Text"> <summary> <para>Defines the Text Class.</para> <para>When the object is serialized out as xml, its qualified name is a:t.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Text.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Text.#ctor"> <summary> Initializes a new instance of the Text class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Text.#ctor(System.String)"> <summary> Initializes a new instance of the Text class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Text.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Text.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Text.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.DataModelExtension"> <summary> <para>Defines the DataModelExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office.Drawing.DataModelExtensionBlock <dsp:dataModelExt></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Diagram.RecolorImages <dgm14:recolorImg></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DataModelExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DataModelExtension.#ctor"> <summary> Initializes a new instance of the DataModelExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DataModelExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataModelExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DataModelExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataModelExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DataModelExtension.#ctor(System.String)"> <summary> Initializes a new instance of the DataModelExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.DataModelExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DataModelExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DataModelExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.DataModelExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PtExtension"> <summary> <para>Defines the PtExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Diagram.NonVisualDrawingProperties <dgm14:cNvPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PtExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PtExtension.#ctor"> <summary> Initializes a new instance of the PtExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PtExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PtExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PtExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PtExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PtExtension.#ctor(System.String)"> <summary> Initializes a new instance of the PtExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PtExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PtExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PtExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PtExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension"> <summary> <para>Defines the ShapePropertiesExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenFillProperties <a14:hiddenFill></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenLineProperties <a14:hiddenLine></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenEffectsProperties <a14:hiddenEffects></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenScene3D <a14:hiddenScene3d></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.HiddenShape3D <a14:hiddenSp3d></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ShadowObscured <a14:shadowObscured></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.#ctor"> <summary> Initializes a new instance of the ShapePropertiesExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapePropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapePropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.#ctor(System.String)"> <summary> Initializes a new instance of the ShapePropertiesExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BlipExtension"> <summary> <para>Defines the BlipExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.ImageProperties <a14:imgProps></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.UseLocalDpi <a14:useLocalDpi></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtension.#ctor"> <summary> Initializes a new instance of the BlipExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BlipExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BlipExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtension.#ctor(System.String)"> <summary> Initializes a new instance of the BlipExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension"> <summary> <para>Defines the GvmlGroupShapeExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.IsCanvas <a14:isCanvas></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.#ctor"> <summary> Initializes a new instance of the GvmlGroupShapeExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GvmlGroupShapeExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GvmlGroupShapeExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.#ctor(System.String)"> <summary> Initializes a new instance of the GvmlGroupShapeExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension"> <summary> <para>Defines the NonVisualPicturePropertiesExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.CameraTool <a14:cameraTool></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.#ctor"> <summary> Initializes a new instance of the NonVisualPicturePropertiesExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPicturePropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPicturePropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPicturePropertiesExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension"> <summary> <para>Defines the NonVisualDrawingPropertiesExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is a:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.CompatExtension <a14:compatExt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingPropertiesExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingPropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingPropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingPropertiesExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RightToLeft"> <summary> <para>Defines the RightToLeft Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is a:rtl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightToLeft.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightToLeft.#ctor"> <summary> Initializes a new instance of the RightToLeft class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.RightToLeft.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RightToLeft.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RightToLeft.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.RightToLeft.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList"> <summary> <para>Defines the ShapePropertiesExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is a:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShapePropertiesExtension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList.#ctor"> <summary> Initializes a new instance of the ShapePropertiesExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapePropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapePropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ShapePropertiesExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BlipExtensionList"> <summary> <para>Defines the BlipExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is a:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BlipExtension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtensionList.#ctor"> <summary> Initializes a new instance of the BlipExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BlipExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BlipExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the BlipExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.BlipExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.BlipExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties"> <summary> <para>Non-Visual Properties for a Group Shape.</para> <para>When the object is serialized out as xml, its qualified name is a:nvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <a:cNvPr></description></item> <item><description>NonVisualGroupShapeDrawingProperties <a:cNvGrpSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: a:cNvPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualGroupShapeProperties.NonVisualGroupShapeDrawingProperties"> <summary> <para> Non-Visual Group Shape Drawing Properties.</para> <para>Represents the element tag in schema: a:cNvGrpSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties"> <summary> <para>Visual Group Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is a:grpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TransformGroup <a:xfrm></description></item> <item><description>NoFill <a:noFill></description></item> <item><description>SolidFill <a:solidFill></description></item> <item><description>GradientFill <a:gradFill></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>PatternFill <a:pattFill></description></item> <item><description>GroupFill <a:grpFill></description></item> <item><description>EffectList <a:effectLst></description></item> <item><description>EffectDag <a:effectDag></description></item> <item><description>Scene3DType <a:scene3d></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.#ctor"> <summary> Initializes a new instance of the VisualGroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the VisualGroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.VisualGroupShapeProperties.TransformGroup"> <summary> <para> 2D Transform for Grouped Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Shape"> <summary> <para>Shape.</para> <para>When the object is serialized out as xml, its qualified name is a:sp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualShapeProperties <a:nvSpPr></description></item> <item><description>ShapeProperties <a:spPr></description></item> <item><description>TextShape <a:txSp></description></item> <item><description>ShapeStyle <a:style></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape.#ctor(System.String)"> <summary> Initializes a new instance of the Shape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape.NonVisualShapeProperties"> <summary> <para> Non-Visual Properties for a Shape.</para> <para>Represents the element tag in schema: a:nvSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape.ShapeProperties"> <summary> <para> Visual Properties.</para> <para>Represents the element tag in schema: a:spPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape.TextShape"> <summary> <para> Text Shape.</para> <para>Represents the element tag in schema: a:txSp </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape.ShapeStyle"> <summary> <para> Style.</para> <para>Represents the element tag in schema: a:style </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Shape.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ConnectionShape"> <summary> <para>Connection Shape.</para> <para>When the object is serialized out as xml, its qualified name is a:cxnSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualConnectionShapeProperties <a:nvCxnSpPr></description></item> <item><description>ShapeProperties <a:spPr></description></item> <item><description>ShapeStyle <a:style></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShape.#ctor"> <summary> Initializes a new instance of the ConnectionShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConnectionShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConnectionShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShape.#ctor(System.String)"> <summary> Initializes a new instance of the ConnectionShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.ConnectionShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShape.NonVisualConnectionShapeProperties"> <summary> <para> Non-Visual Properties for a Connection Shape.</para> <para>Represents the element tag in schema: a:nvCxnSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShape.ShapeProperties"> <summary> <para> Visual Properties.</para> <para>Represents the element tag in schema: a:spPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShape.ShapeStyle"> <summary> <para> Shape Style.</para> <para>Represents the element tag in schema: a:style </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.ConnectionShape.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Picture"> <summary> <para>Picture.</para> <para>When the object is serialized out as xml, its qualified name is a:pic.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualPictureProperties <a:nvPicPr></description></item> <item><description>BlipFill <a:blipFill></description></item> <item><description>ShapeProperties <a:spPr></description></item> <item><description>ShapeStyle <a:style></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Picture.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Picture.#ctor"> <summary> Initializes a new instance of the Picture class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Picture.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Picture.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Picture.#ctor(System.String)"> <summary> Initializes a new instance of the Picture class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Picture.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Picture.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Picture.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Picture.NonVisualPictureProperties"> <summary> <para> Non-Visual Properties for a Picture.</para> <para>Represents the element tag in schema: a:nvPicPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Picture.BlipFill"> <summary> <para> Picture Fill.</para> <para>Represents the element tag in schema: a:blipFill </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Picture.ShapeProperties"> <summary> <para> Shape Properties.</para> <para>Represents the element tag in schema: a:spPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Picture.ShapeStyle"> <summary> <para> ShapeStyle.</para> <para>Represents the element tag in schema: a:style </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Picture.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GraphicFrame"> <summary> <para>Graphic Frame.</para> <para>When the object is serialized out as xml, its qualified name is a:graphicFrame.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGraphicFrameProperties <a:nvGraphicFramePr></description></item> <item><description>Graphic <a:graphic></description></item> <item><description>Transform2D <a:xfrm></description></item> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrame.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrame.#ctor"> <summary> Initializes a new instance of the GraphicFrame class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrame.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrame.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrame.#ctor(System.String)"> <summary> Initializes a new instance of the GraphicFrame class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GraphicFrame.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrame.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrame.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrame.NonVisualGraphicFrameProperties"> <summary> <para> Non-Visual Properties for a Graphic Frame.</para> <para>Represents the element tag in schema: a:nvGraphicFramePr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrame.Graphic"> <summary> <para> Graphic.</para> <para>Represents the element tag in schema: a:graphic </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrame.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GraphicFrame.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GroupShape"> <summary> <para>Group shape.</para> <para>When the object is serialized out as xml, its qualified name is a:grpSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGroupShapeProperties <a:nvGrpSpPr></description></item> <item><description>VisualGroupShapeProperties <a:grpSpPr></description></item> <item><description>TextShape <a:txSp></description></item> <item><description>Shape <a:sp></description></item> <item><description>ConnectionShape <a:cxnSp></description></item> <item><description>Picture <a:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.GvmlContentPart <a14:contentPart></description></item> <item><description>GraphicFrame <a:graphicFrame></description></item> <item><description>GroupShape <a:grpSp></description></item> <item><description>GvmlGroupShapeExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShape.#ctor"> <summary> Initializes a new instance of the GroupShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShape.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GroupShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShape.NonVisualGroupShapeProperties"> <summary> <para> Non-Visual Properties for a Group Shape.</para> <para>Represents the element tag in schema: a:nvGrpSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GroupShape.VisualGroupShapeProperties"> <summary> <para> Visual Group Shape Properties.</para> <para>Represents the element tag in schema: a:grpSpPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList"> <summary> <para>Defines the GvmlGroupShapeExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is a:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GvmlGroupShapeExtension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList.#ctor"> <summary> Initializes a new instance of the GvmlGroupShapeExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GvmlGroupShapeExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GvmlGroupShapeExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the GvmlGroupShapeExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.GvmlGroupShapeExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PictureLocks"> <summary> <para>Picture Locks.</para> <para>When the object is serialized out as xml, its qualified name is a:picLocks.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureLocks.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureLocks.#ctor"> <summary> Initializes a new instance of the PictureLocks class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureLocks.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PictureLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureLocks.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PictureLocks class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureLocks.#ctor(System.String)"> <summary> Initializes a new instance of the PictureLocks class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.PictureLocks.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoGrouping"> <summary> <para> Disallow Shape Grouping.</para> <para>Represents the attribte in schema: noGrp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoSelection"> <summary> <para> Disallow Shape Selection.</para> <para>Represents the attribte in schema: noSelect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoRotation"> <summary> <para> Disallow Shape Rotation.</para> <para>Represents the attribte in schema: noRot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoChangeAspect"> <summary> <para> Disallow Aspect Ratio Change.</para> <para>Represents the attribte in schema: noChangeAspect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoMove"> <summary> <para> Disallow Shape Movement.</para> <para>Represents the attribte in schema: noMove </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoResize"> <summary> <para> Disallow Shape Resize.</para> <para>Represents the attribte in schema: noResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoEditPoints"> <summary> <para> Disallow Shape Point Editing.</para> <para>Represents the attribte in schema: noEditPoints </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoAdjustHandles"> <summary> <para> Disallow Showing Adjust Handles.</para> <para>Represents the attribte in schema: noAdjustHandles </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoChangeArrowheads"> <summary> <para> Disallow Arrowhead Changes.</para> <para>Represents the attribte in schema: noChangeArrowheads </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoChangeShapeType"> <summary> <para> Disallow Shape Type Change.</para> <para>Represents the attribte in schema: noChangeShapeType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.NoCrop"> <summary> <para> Disallow Crop Changes.</para> <para>Represents the attribte in schema: noCrop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.PictureLocks.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList"> <summary> <para>Defines the NonVisualPicturePropertiesExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is a:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualPicturePropertiesExtension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList.#ctor"> <summary> Initializes a new instance of the NonVisualPicturePropertiesExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPicturePropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPicturePropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPicturePropertiesExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList"> <summary> <para>Defines the NonVisualDrawingPropertiesExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is a:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingPropertiesExtension <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingPropertiesExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingPropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingPropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingPropertiesExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.FontCollectionIndexValues"> <summary> Font Collection Index </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.FontCollectionIndexValues.Major"> <summary> Major Font. <para>When the item is serialized out as xml, its value is "major".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.FontCollectionIndexValues.Minor"> <summary> Minor Font. <para>When the item is serialized out as xml, its value is "minor".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.FontCollectionIndexValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues"> <summary> Theme Color Reference </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Dark1"> <summary> Dark 1. <para>When the item is serialized out as xml, its value is "dk1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Light1"> <summary> Light 1. <para>When the item is serialized out as xml, its value is "lt1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Dark2"> <summary> Dark 2. <para>When the item is serialized out as xml, its value is "dk2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Light2"> <summary> Light 2. <para>When the item is serialized out as xml, its value is "lt2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Accent1"> <summary> Accent 1. <para>When the item is serialized out as xml, its value is "accent1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Accent2"> <summary> Accent 2. <para>When the item is serialized out as xml, its value is "accent2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Accent3"> <summary> Accent 3. <para>When the item is serialized out as xml, its value is "accent3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Accent4"> <summary> Accent 4. <para>When the item is serialized out as xml, its value is "accent4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Accent5"> <summary> Accent 5. <para>When the item is serialized out as xml, its value is "accent5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Accent6"> <summary> Accent 6. <para>When the item is serialized out as xml, its value is "accent6".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.Hyperlink"> <summary> Hyperlink. <para>When the item is serialized out as xml, its value is "hlink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ColorSchemeIndexValues.FollowedHyperlink"> <summary> Followed Hyperlink. <para>When the item is serialized out as xml, its value is "folHlink".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SystemColorValues"> <summary> System Color Value </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ScrollBar"> <summary> Scroll Bar System Color. <para>When the item is serialized out as xml, its value is "scrollBar".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.Background"> <summary> Background System Color. <para>When the item is serialized out as xml, its value is "background".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ActiveCaption"> <summary> Active Caption System Color. <para>When the item is serialized out as xml, its value is "activeCaption".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.InactiveCaption"> <summary> Inactive Caption System Color. <para>When the item is serialized out as xml, its value is "inactiveCaption".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.Menu"> <summary> Menu System Color. <para>When the item is serialized out as xml, its value is "menu".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.Window"> <summary> Window System Color. <para>When the item is serialized out as xml, its value is "window".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.WindowFrame"> <summary> Window Frame System Color. <para>When the item is serialized out as xml, its value is "windowFrame".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.MenuText"> <summary> Menu Text System Color. <para>When the item is serialized out as xml, its value is "menuText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.WindowText"> <summary> Window Text System Color. <para>When the item is serialized out as xml, its value is "windowText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.CaptionText"> <summary> Caption Text System Color. <para>When the item is serialized out as xml, its value is "captionText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ActiveBorder"> <summary> Active Border System Color. <para>When the item is serialized out as xml, its value is "activeBorder".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.InactiveBorder"> <summary> Inactive Border System Color. <para>When the item is serialized out as xml, its value is "inactiveBorder".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ApplicationWorkspace"> <summary> Application Workspace System Color. <para>When the item is serialized out as xml, its value is "appWorkspace".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.Highlight"> <summary> Highlight System Color. <para>When the item is serialized out as xml, its value is "highlight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.HighlightText"> <summary> Highlight Text System Color. <para>When the item is serialized out as xml, its value is "highlightText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ButtonFace"> <summary> Button Face System Color. <para>When the item is serialized out as xml, its value is "btnFace".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ButtonShadow"> <summary> Button Shadow System Color. <para>When the item is serialized out as xml, its value is "btnShadow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.GrayText"> <summary> Gray Text System Color. <para>When the item is serialized out as xml, its value is "grayText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ButtonText"> <summary> Button Text System Color. <para>When the item is serialized out as xml, its value is "btnText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.InactiveCaptionText"> <summary> Inactive Caption Text System Color. <para>When the item is serialized out as xml, its value is "inactiveCaptionText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ButtonHighlight"> <summary> Button Highlight System Color. <para>When the item is serialized out as xml, its value is "btnHighlight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ThreeDDarkShadow"> <summary> 3D Dark System Color. <para>When the item is serialized out as xml, its value is "3dDkShadow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.ThreeDLight"> <summary> 3D Light System Color. <para>When the item is serialized out as xml, its value is "3dLight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.InfoText"> <summary> Info Text System Color. <para>When the item is serialized out as xml, its value is "infoText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.InfoBack"> <summary> Info Back System Color. <para>When the item is serialized out as xml, its value is "infoBk".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.HotLight"> <summary> Hot Light System Color. <para>When the item is serialized out as xml, its value is "hotLight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.GradientActiveCaption"> <summary> Gradient Active Caption System Color. <para>When the item is serialized out as xml, its value is "gradientActiveCaption".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.GradientInactiveCaption"> <summary> Gradient Inactive Caption System Color. <para>When the item is serialized out as xml, its value is "gradientInactiveCaption".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.MenuHighlight"> <summary> Menu Highlight System Color. <para>When the item is serialized out as xml, its value is "menuHighlight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SystemColorValues.MenuBar"> <summary> Menu Bar System Color. <para>When the item is serialized out as xml, its value is "menuBar".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.SchemeColorValues"> <summary> Scheme Color </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Background1"> <summary> Background Color 1. <para>When the item is serialized out as xml, its value is "bg1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Text1"> <summary> Text Color 1. <para>When the item is serialized out as xml, its value is "tx1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Background2"> <summary> Background Color 2. <para>When the item is serialized out as xml, its value is "bg2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Text2"> <summary> Text Color 2. <para>When the item is serialized out as xml, its value is "tx2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Accent1"> <summary> Accent Color 1. <para>When the item is serialized out as xml, its value is "accent1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Accent2"> <summary> Accent Color 2. <para>When the item is serialized out as xml, its value is "accent2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Accent3"> <summary> Accent Color 3. <para>When the item is serialized out as xml, its value is "accent3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Accent4"> <summary> Accent Color 4. <para>When the item is serialized out as xml, its value is "accent4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Accent5"> <summary> Accent Color 5. <para>When the item is serialized out as xml, its value is "accent5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Accent6"> <summary> Accent Color 6. <para>When the item is serialized out as xml, its value is "accent6".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Hyperlink"> <summary> Hyperlink Color. <para>When the item is serialized out as xml, its value is "hlink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.FollowedHyperlink"> <summary> Followed Hyperlink Color. <para>When the item is serialized out as xml, its value is "folHlink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.PhColor"> <summary> Style Color. <para>When the item is serialized out as xml, its value is "phClr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Dark1"> <summary> Dark Color 1. <para>When the item is serialized out as xml, its value is "dk1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Light1"> <summary> Light Color 1. <para>When the item is serialized out as xml, its value is "lt1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Dark2"> <summary> Dark Color 2. <para>When the item is serialized out as xml, its value is "dk2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.SchemeColorValues.Light2"> <summary> Light Color 2. <para>When the item is serialized out as xml, its value is "lt2".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues"> <summary> Rectangle Alignments </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.TopLeft"> <summary> Rectangle Alignment Enum ( Top Left ). <para>When the item is serialized out as xml, its value is "tl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.Top"> <summary> Rectangle Alignment Enum ( Top ). <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.TopRight"> <summary> Rectangle Alignment Enum ( Top Right ). <para>When the item is serialized out as xml, its value is "tr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.Left"> <summary> Rectangle Alignment Enum ( Left ). <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.Center"> <summary> Rectangle Alignment Enum ( Center ). <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.Right"> <summary> Rectangle Alignment Enum ( Right ). <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.BottomLeft"> <summary> Rectangle Alignment Enum ( Bottom Left ). <para>When the item is serialized out as xml, its value is "bl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.Bottom"> <summary> Rectangle Alignment Enum ( Bottom ). <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.RectangleAlignmentValues.BottomRight"> <summary> Rectangle Alignment Enum ( Bottom Right ). <para>When the item is serialized out as xml, its value is "br".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues"> <summary> Black and White Mode </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.Color"> <summary> Color. <para>When the item is serialized out as xml, its value is "clr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.Auto"> <summary> Automatic. <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.Gray"> <summary> Gray. <para>When the item is serialized out as xml, its value is "gray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.LightGray"> <summary> Light Gray. <para>When the item is serialized out as xml, its value is "ltGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.InvGray"> <summary> Inverse Gray. <para>When the item is serialized out as xml, its value is "invGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.GrayWhite"> <summary> Gray and White. <para>When the item is serialized out as xml, its value is "grayWhite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.BlackGray"> <summary> Black and Gray. <para>When the item is serialized out as xml, its value is "blackGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.BlackWhite"> <summary> Black and White. <para>When the item is serialized out as xml, its value is "blackWhite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.Black"> <summary> Black. <para>When the item is serialized out as xml, its value is "black".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.White"> <summary> White. <para>When the item is serialized out as xml, its value is "white".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlackWhiteModeValues.Hidden"> <summary> Hidden. <para>When the item is serialized out as xml, its value is "hidden".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ChartBuildStepValues"> <summary> Chart Animation Build Step </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ChartBuildStepValues.Category"> <summary> Category. <para>When the item is serialized out as xml, its value is "category".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ChartBuildStepValues.CategoryPoints"> <summary> Category Points. <para>When the item is serialized out as xml, its value is "ptInCategory".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ChartBuildStepValues.Series"> <summary> Series. <para>When the item is serialized out as xml, its value is "series".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ChartBuildStepValues.SeriesPoints"> <summary> Series Points. <para>When the item is serialized out as xml, its value is "ptInSeries".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ChartBuildStepValues.AllPoints"> <summary> All Points. <para>When the item is serialized out as xml, its value is "allPts".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ChartBuildStepValues.GridLegend"> <summary> Grid and Legend. <para>When the item is serialized out as xml, its value is "gridLegend".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.DiagramBuildStepValues"> <summary> Diagram Animation Build Steps </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.DiagramBuildStepValues.Shape"> <summary> Shape. <para>When the item is serialized out as xml, its value is "sp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.DiagramBuildStepValues.Background"> <summary> Background. <para>When the item is serialized out as xml, its value is "bg".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AnimationBuildValues"> <summary> Animation Build Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.AnimationBuildValues.AllAtOnce"> <summary> Animate At Once. <para>When the item is serialized out as xml, its value is "allAtOnce".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AnimationDiagramOnlyBuildValues"> <summary> Diagram only Animation Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.AnimationDiagramOnlyBuildValues.One"> <summary> Elements One-by-One. <para>When the item is serialized out as xml, its value is "one".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.AnimationDiagramOnlyBuildValues.LevelOne"> <summary> Level One-by-One. <para>When the item is serialized out as xml, its value is "lvlOne".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.AnimationDiagramOnlyBuildValues.LevelAtOnce"> <summary> Each Level at Once. <para>When the item is serialized out as xml, its value is "lvlAtOnce".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.AnimationChartOnlyBuildValues"> <summary> Chart only Animation Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.AnimationChartOnlyBuildValues.Series"> <summary> Series. <para>When the item is serialized out as xml, its value is "series".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.AnimationChartOnlyBuildValues.Category"> <summary> Catefory. <para>When the item is serialized out as xml, its value is "category".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.AnimationChartOnlyBuildValues.SeriesElement"> <summary> Series Element. <para>When the item is serialized out as xml, its value is "seriesEl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.AnimationChartOnlyBuildValues.CategoryElement"> <summary> Category Element. <para>When the item is serialized out as xml, its value is "categoryEl".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetCameraValues"> <summary> Preset Camera Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueTopLeft"> <summary> Legacy Oblique Top Left. <para>When the item is serialized out as xml, its value is "legacyObliqueTopLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueTop"> <summary> Legacy Oblique Top. <para>When the item is serialized out as xml, its value is "legacyObliqueTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueTopRight"> <summary> Legacy Oblique Top Right. <para>When the item is serialized out as xml, its value is "legacyObliqueTopRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueLeft"> <summary> Legacy Oblique Left. <para>When the item is serialized out as xml, its value is "legacyObliqueLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueFront"> <summary> Legacy Oblique Front. <para>When the item is serialized out as xml, its value is "legacyObliqueFront".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueRight"> <summary> Legacy Oblique Right. <para>When the item is serialized out as xml, its value is "legacyObliqueRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueBottomLeft"> <summary> Legacy Oblique Bottom Left. <para>When the item is serialized out as xml, its value is "legacyObliqueBottomLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueBottom"> <summary> Legacy Oblique Bottom. <para>When the item is serialized out as xml, its value is "legacyObliqueBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyObliqueBottomRight"> <summary> Legacy Oblique Bottom Right. <para>When the item is serialized out as xml, its value is "legacyObliqueBottomRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveTopLeft"> <summary> Legacy Perspective Top Left. <para>When the item is serialized out as xml, its value is "legacyPerspectiveTopLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveTop"> <summary> Legacy Perspective Top. <para>When the item is serialized out as xml, its value is "legacyPerspectiveTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveTopRight"> <summary> Legacy Perspective Top Right. <para>When the item is serialized out as xml, its value is "legacyPerspectiveTopRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveLeft"> <summary> Legacy Perspective Left. <para>When the item is serialized out as xml, its value is "legacyPerspectiveLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveFront"> <summary> Legacy Perspective Front. <para>When the item is serialized out as xml, its value is "legacyPerspectiveFront".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveRight"> <summary> Legacy Perspective Right. <para>When the item is serialized out as xml, its value is "legacyPerspectiveRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveBottomLeft"> <summary> Legacy Perspective Bottom Left. <para>When the item is serialized out as xml, its value is "legacyPerspectiveBottomLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveBottom"> <summary> Legacy Perspective Bottom. <para>When the item is serialized out as xml, its value is "legacyPerspectiveBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.LegacyPerspectiveBottomRight"> <summary> Legacy Perspective Bottom Right. <para>When the item is serialized out as xml, its value is "legacyPerspectiveBottomRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.OrthographicFront"> <summary> Orthographic Front. <para>When the item is serialized out as xml, its value is "orthographicFront".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricTopUp"> <summary> Isometric Top Up. <para>When the item is serialized out as xml, its value is "isometricTopUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricTopDown"> <summary> Isometric Top Down. <para>When the item is serialized out as xml, its value is "isometricTopDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricBottomUp"> <summary> Isometric Bottom Up. <para>When the item is serialized out as xml, its value is "isometricBottomUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricBottomDown"> <summary> Isometric Bottom Down. <para>When the item is serialized out as xml, its value is "isometricBottomDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricLeftUp"> <summary> Isometric Left Up. <para>When the item is serialized out as xml, its value is "isometricLeftUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricLeftDown"> <summary> Isometric Left Down. <para>When the item is serialized out as xml, its value is "isometricLeftDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricRightUp"> <summary> Isometric Right Up. <para>When the item is serialized out as xml, its value is "isometricRightUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricRightDown"> <summary> Isometric Right Down. <para>When the item is serialized out as xml, its value is "isometricRightDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis1Left"> <summary> Isometric Off Axis 1 Left. <para>When the item is serialized out as xml, its value is "isometricOffAxis1Left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis1Right"> <summary> Isometric Off Axis 1 Right. <para>When the item is serialized out as xml, its value is "isometricOffAxis1Right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis1Top"> <summary> Isometric Off Axis 1 Top. <para>When the item is serialized out as xml, its value is "isometricOffAxis1Top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis2Left"> <summary> Isometric Off Axis 2 Left. <para>When the item is serialized out as xml, its value is "isometricOffAxis2Left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis2Right"> <summary> Isometric Off Axis 2 Right. <para>When the item is serialized out as xml, its value is "isometricOffAxis2Right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis2Top"> <summary> Isometric Off Axis 2 Top. <para>When the item is serialized out as xml, its value is "isometricOffAxis2Top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis3Left"> <summary> Isometric Off Axis 3 Left. <para>When the item is serialized out as xml, its value is "isometricOffAxis3Left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis3Right"> <summary> Isometric Off Axis 3 Right. <para>When the item is serialized out as xml, its value is "isometricOffAxis3Right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis3Bottom"> <summary> Isometric Off Axis 3 Bottom. <para>When the item is serialized out as xml, its value is "isometricOffAxis3Bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis4Left"> <summary> Isometric Off Axis 4 Left. <para>When the item is serialized out as xml, its value is "isometricOffAxis4Left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis4Right"> <summary> Isometric Off Axis 4 Right. <para>When the item is serialized out as xml, its value is "isometricOffAxis4Right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.IsometricOffAxis4Bottom"> <summary> Isometric Off Axis 4 Bottom. <para>When the item is serialized out as xml, its value is "isometricOffAxis4Bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.ObliqueTopLeft"> <summary> Oblique Top Left. <para>When the item is serialized out as xml, its value is "obliqueTopLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.ObliqueTop"> <summary> Oblique Top. <para>When the item is serialized out as xml, its value is "obliqueTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.ObliqueTopRight"> <summary> Oblique Top Right. <para>When the item is serialized out as xml, its value is "obliqueTopRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.ObliqueLeft"> <summary> Oblique Left. <para>When the item is serialized out as xml, its value is "obliqueLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.ObliqueRight"> <summary> Oblique Right. <para>When the item is serialized out as xml, its value is "obliqueRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.ObliqueBottomLeft"> <summary> Oblique Bottom Left. <para>When the item is serialized out as xml, its value is "obliqueBottomLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.ObliqueBottom"> <summary> Oblique Bottom. <para>When the item is serialized out as xml, its value is "obliqueBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.ObliqueBottomRight"> <summary> Oblique Bottom Right. <para>When the item is serialized out as xml, its value is "obliqueBottomRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveFront"> <summary> Perspective Front. <para>When the item is serialized out as xml, its value is "perspectiveFront".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveLeft"> <summary> Perspective Left. <para>When the item is serialized out as xml, its value is "perspectiveLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveRight"> <summary> Perspective Right. <para>When the item is serialized out as xml, its value is "perspectiveRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveAbove"> <summary> Orthographic Above. <para>When the item is serialized out as xml, its value is "perspectiveAbove".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveBelow"> <summary> Perspective Below. <para>When the item is serialized out as xml, its value is "perspectiveBelow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveAboveLeftFacing"> <summary> Perspective Above Left Facing. <para>When the item is serialized out as xml, its value is "perspectiveAboveLeftFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveAboveRightFacing"> <summary> Perspective Above Right Facing. <para>When the item is serialized out as xml, its value is "perspectiveAboveRightFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveContrastingLeftFacing"> <summary> Perspective Contrasting Left Facing. <para>When the item is serialized out as xml, its value is "perspectiveContrastingLeftFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveContrastingRightFacing"> <summary> Perspective Contrasting Right Facing. <para>When the item is serialized out as xml, its value is "perspectiveContrastingRightFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveHeroicLeftFacing"> <summary> Perspective Heroic Left Facing. <para>When the item is serialized out as xml, its value is "perspectiveHeroicLeftFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveHeroicRightFacing"> <summary> Perspective Heroic Right Facing. <para>When the item is serialized out as xml, its value is "perspectiveHeroicRightFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveHeroicExtremeLeftFacing"> <summary> Perspective Heroic Extreme Left Facing. <para>When the item is serialized out as xml, its value is "perspectiveHeroicExtremeLeftFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveHeroicExtremeRightFacing"> <summary> Perspective Heroic Extreme Right Facing. <para>When the item is serialized out as xml, its value is "perspectiveHeroicExtremeRightFacing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveRelaxed"> <summary> Perspective Relaxed. <para>When the item is serialized out as xml, its value is "perspectiveRelaxed".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetCameraValues.PerspectiveRelaxedModerately"> <summary> Perspective Relaxed Moderately. <para>When the item is serialized out as xml, its value is "perspectiveRelaxedModerately".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues"> <summary> Light Rig Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues.TopLeft"> <summary> Top Left. <para>When the item is serialized out as xml, its value is "tl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues.TopRight"> <summary> Top Right. <para>When the item is serialized out as xml, its value is "tr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues.Left"> <summary> Left. <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues.BottomLeft"> <summary> Bottom Left. <para>When the item is serialized out as xml, its value is "bl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigDirectionValues.BottomRight"> <summary> Bottom Right. <para>When the item is serialized out as xml, its value is "br".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LightRigValues"> <summary> Light Rig Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyFlat1"> <summary> Legacy Flat 1. <para>When the item is serialized out as xml, its value is "legacyFlat1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyFlat2"> <summary> Legacy Flat 2. <para>When the item is serialized out as xml, its value is "legacyFlat2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyFlat3"> <summary> Legacy Flat 3. <para>When the item is serialized out as xml, its value is "legacyFlat3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyFlat4"> <summary> Legacy Flat 4. <para>When the item is serialized out as xml, its value is "legacyFlat4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyNormal1"> <summary> Legacy Normal 1. <para>When the item is serialized out as xml, its value is "legacyNormal1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyNormal2"> <summary> Legacy Normal 2. <para>When the item is serialized out as xml, its value is "legacyNormal2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyNormal3"> <summary> Legacy Normal 3. <para>When the item is serialized out as xml, its value is "legacyNormal3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyNormal4"> <summary> Legacy Normal 4. <para>When the item is serialized out as xml, its value is "legacyNormal4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyHarsh1"> <summary> Legacy Harsh 1. <para>When the item is serialized out as xml, its value is "legacyHarsh1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyHarsh2"> <summary> Legacy Harsh 2. <para>When the item is serialized out as xml, its value is "legacyHarsh2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyHarsh3"> <summary> Legacy Harsh 3. <para>When the item is serialized out as xml, its value is "legacyHarsh3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.LegacyHarsh4"> <summary> Legacy Harsh 4. <para>When the item is serialized out as xml, its value is "legacyHarsh4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.ThreePoints"> <summary> Three Point. <para>When the item is serialized out as xml, its value is "threePt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Balanced"> <summary> Light Rig Enum ( Balanced ). <para>When the item is serialized out as xml, its value is "balanced".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Soft"> <summary> Soft. <para>When the item is serialized out as xml, its value is "soft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Harsh"> <summary> Harsh. <para>When the item is serialized out as xml, its value is "harsh".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Flood"> <summary> Flood. <para>When the item is serialized out as xml, its value is "flood".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Contrasting"> <summary> Contrasting. <para>When the item is serialized out as xml, its value is "contrasting".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Morning"> <summary> Morning. <para>When the item is serialized out as xml, its value is "morning".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Sunrise"> <summary> Sunrise. <para>When the item is serialized out as xml, its value is "sunrise".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Sunset"> <summary> Sunset. <para>When the item is serialized out as xml, its value is "sunset".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Chilly"> <summary> Chilly. <para>When the item is serialized out as xml, its value is "chilly".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Freezing"> <summary> Freezing. <para>When the item is serialized out as xml, its value is "freezing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Flat"> <summary> Flat. <para>When the item is serialized out as xml, its value is "flat".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.TwoPoints"> <summary> Two Point. <para>When the item is serialized out as xml, its value is "twoPt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.Glow"> <summary> Glow. <para>When the item is serialized out as xml, its value is "glow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LightRigValues.BrightRoom"> <summary> Bright Room. <para>When the item is serialized out as xml, its value is "brightRoom".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BevelPresetValues"> <summary> Bevel Presets </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.RelaxedInset"> <summary> Relaxed Inset. <para>When the item is serialized out as xml, its value is "relaxedInset".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.Circle"> <summary> Circle. <para>When the item is serialized out as xml, its value is "circle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.Slope"> <summary> Slope. <para>When the item is serialized out as xml, its value is "slope".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.Cross"> <summary> Cross. <para>When the item is serialized out as xml, its value is "cross".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.Angle"> <summary> Angle. <para>When the item is serialized out as xml, its value is "angle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.SoftRound"> <summary> Soft Round. <para>When the item is serialized out as xml, its value is "softRound".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.Convex"> <summary> Convex. <para>When the item is serialized out as xml, its value is "convex".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.CoolSlant"> <summary> Cool Slant. <para>When the item is serialized out as xml, its value is "coolSlant".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.Divot"> <summary> Divot. <para>When the item is serialized out as xml, its value is "divot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.Riblet"> <summary> Riblet. <para>When the item is serialized out as xml, its value is "riblet".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.HardEdge"> <summary> Hard Edge. <para>When the item is serialized out as xml, its value is "hardEdge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BevelPresetValues.ArtDeco"> <summary> Art Deco. <para>When the item is serialized out as xml, its value is "artDeco".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues"> <summary> Preset Material Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.LegacyMatte"> <summary> Legacy Matte. <para>When the item is serialized out as xml, its value is "legacyMatte".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.LegacyPlastic"> <summary> Legacy Plastic. <para>When the item is serialized out as xml, its value is "legacyPlastic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.LegacyMetal"> <summary> Legacy Metal. <para>When the item is serialized out as xml, its value is "legacyMetal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.LegacyWireframe"> <summary> Legacy Wireframe. <para>When the item is serialized out as xml, its value is "legacyWireframe".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.Matte"> <summary> Matte. <para>When the item is serialized out as xml, its value is "matte".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.Plastic"> <summary> Plastic. <para>When the item is serialized out as xml, its value is "plastic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.Metal"> <summary> Metal. <para>When the item is serialized out as xml, its value is "metal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.WarmMatte"> <summary> Warm Matte. <para>When the item is serialized out as xml, its value is "warmMatte".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.TranslucentPowder"> <summary> Translucent Powder. <para>When the item is serialized out as xml, its value is "translucentPowder".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.Powder"> <summary> Powder. <para>When the item is serialized out as xml, its value is "powder".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.DarkEdge"> <summary> Dark Edge. <para>When the item is serialized out as xml, its value is "dkEdge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.SoftEdge"> <summary> Soft Edge. <para>When the item is serialized out as xml, its value is "softEdge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.Clear"> <summary> Clear. <para>When the item is serialized out as xml, its value is "clear".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.Flat"> <summary> Flat. <para>When the item is serialized out as xml, its value is "flat".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetMaterialTypeValues.SoftMetal"> <summary> Soft Metal. <para>When the item is serialized out as xml, its value is "softmetal".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetShadowValues"> <summary> Preset Shadow Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.TopLeftDropShadow"> <summary> Top Left Drop Shadow. <para>When the item is serialized out as xml, its value is "shdw1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.TopRightDropShadow"> <summary> Top Right Drop Shadow. <para>When the item is serialized out as xml, its value is "shdw2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.BackLeftPerspectiveShadow"> <summary> Back Left Perspective Shadow. <para>When the item is serialized out as xml, its value is "shdw3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.BackRightPerspectiveShadow"> <summary> Back Right Perspective Shadow. <para>When the item is serialized out as xml, its value is "shdw4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.BottomLeftDropShadow"> <summary> Bottom Left Drop Shadow. <para>When the item is serialized out as xml, its value is "shdw5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.BottomRightDropShadow"> <summary> Bottom Right Drop Shadow. <para>When the item is serialized out as xml, its value is "shdw6".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.FrontLeftPerspectiveShadow"> <summary> Front Left Perspective Shadow. <para>When the item is serialized out as xml, its value is "shdw7".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.FrontRightPerspectiveShadow"> <summary> Front Right Perspective Shadow. <para>When the item is serialized out as xml, its value is "shdw8".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.TopLeftSmallDropShadow"> <summary> Top Left Small Drop Shadow. <para>When the item is serialized out as xml, its value is "shdw9".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.TopLeftLargeDropShadow"> <summary> Top Left Large Drop Shadow. <para>When the item is serialized out as xml, its value is "shdw10".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.BackLeftLongPerspectiveShadow"> <summary> Back Left Long Perspective Shadow. <para>When the item is serialized out as xml, its value is "shdw11".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.BackRightLongPerspectiveShadow"> <summary> Back Right Long Perspective Shadow. <para>When the item is serialized out as xml, its value is "shdw12".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.TopLeftDoubleDropShadow"> <summary> Top Left Double Drop Shadow. <para>When the item is serialized out as xml, its value is "shdw13".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.BottomRightSmallDropShadow"> <summary> Bottom Right Small Drop Shadow. <para>When the item is serialized out as xml, its value is "shdw14".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.FrontLeftLongPerspectiveShadow"> <summary> Front Left Long Perspective Shadow. <para>When the item is serialized out as xml, its value is "shdw15".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.FrontRightLongPerspectiveShadow"> <summary> Front Right LongPerspective Shadow. <para>When the item is serialized out as xml, its value is "shdw16".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.ThreeDimensionalOuterBoxShadow"> <summary> 3D Outer Box Shadow. <para>When the item is serialized out as xml, its value is "shdw17".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.ThreeDimensionalInnerBoxShadow"> <summary> 3D Inner Box Shadow. <para>When the item is serialized out as xml, its value is "shdw18".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.BackCenterPerspectiveShadow"> <summary> Back Center Perspective Shadow. <para>When the item is serialized out as xml, its value is "shdw19".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetShadowValues.FrontBottomShadow"> <summary> Front Bottom Shadow. <para>When the item is serialized out as xml, its value is "shdw20".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PathShadeValues"> <summary> Path Shade Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathShadeValues.Shape"> <summary> Shape. <para>When the item is serialized out as xml, its value is "shape".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathShadeValues.Circle"> <summary> Circle. <para>When the item is serialized out as xml, its value is "circle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathShadeValues.Rectangle"> <summary> Rectangle. <para>When the item is serialized out as xml, its value is "rect".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TileFlipValues"> <summary> Tile Flip Mode </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TileFlipValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TileFlipValues.Horizontal"> <summary> Horizontal. <para>When the item is serialized out as xml, its value is "x".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TileFlipValues.Vertical"> <summary> Vertical. <para>When the item is serialized out as xml, its value is "y".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TileFlipValues.HorizontalAndVertical"> <summary> Horizontal and Vertical. <para>When the item is serialized out as xml, its value is "xy".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BlipCompressionValues"> <summary> Blip Compression Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlipCompressionValues.Email"> <summary> Email Compression. <para>When the item is serialized out as xml, its value is "email".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlipCompressionValues.Screen"> <summary> Screen Viewing Compression. <para>When the item is serialized out as xml, its value is "screen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlipCompressionValues.Print"> <summary> Printing Compression. <para>When the item is serialized out as xml, its value is "print".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlipCompressionValues.HighQualityPrint"> <summary> High Quality Printing Compression. <para>When the item is serialized out as xml, its value is "hqprint".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlipCompressionValues.None"> <summary> No Compression. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetPatternValues"> <summary> Preset Pattern Value </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent5"> <summary> 5%. <para>When the item is serialized out as xml, its value is "pct5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent10"> <summary> 10%. <para>When the item is serialized out as xml, its value is "pct10".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent20"> <summary> 20%. <para>When the item is serialized out as xml, its value is "pct20".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent25"> <summary> 25%. <para>When the item is serialized out as xml, its value is "pct25".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent30"> <summary> 30%. <para>When the item is serialized out as xml, its value is "pct30".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent40"> <summary> 40%. <para>When the item is serialized out as xml, its value is "pct40".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent50"> <summary> 50%. <para>When the item is serialized out as xml, its value is "pct50".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent60"> <summary> 60%. <para>When the item is serialized out as xml, its value is "pct60".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent70"> <summary> 70%. <para>When the item is serialized out as xml, its value is "pct70".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent75"> <summary> 75%. <para>When the item is serialized out as xml, its value is "pct75".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent80"> <summary> 80%. <para>When the item is serialized out as xml, its value is "pct80".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Percent90"> <summary> 90%. <para>When the item is serialized out as xml, its value is "pct90".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Horizontal"> <summary> Horizontal. <para>When the item is serialized out as xml, its value is "horz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Vertical"> <summary> Vertical. <para>When the item is serialized out as xml, its value is "vert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.LightHorizontal"> <summary> Light Horizontal. <para>When the item is serialized out as xml, its value is "ltHorz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.LightVertical"> <summary> Light Vertical. <para>When the item is serialized out as xml, its value is "ltVert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DarkHorizontal"> <summary> Dark Horizontal. <para>When the item is serialized out as xml, its value is "dkHorz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DarkVertical"> <summary> Dark Vertical. <para>When the item is serialized out as xml, its value is "dkVert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.NarrowHorizontal"> <summary> Narrow Horizontal. <para>When the item is serialized out as xml, its value is "narHorz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.NarrowVertical"> <summary> Narrow Vertical. <para>When the item is serialized out as xml, its value is "narVert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DashedHorizontal"> <summary> Dashed Horizontal. <para>When the item is serialized out as xml, its value is "dashHorz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DashedVertical"> <summary> Dashed Vertical. <para>When the item is serialized out as xml, its value is "dashVert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Cross"> <summary> Cross. <para>When the item is serialized out as xml, its value is "cross".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DownwardDiagonal"> <summary> Downward Diagonal. <para>When the item is serialized out as xml, its value is "dnDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.UpwardDiagonal"> <summary> Upward Diagonal. <para>When the item is serialized out as xml, its value is "upDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.LightDownwardDiagonal"> <summary> Light Downward Diagonal. <para>When the item is serialized out as xml, its value is "ltDnDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.LightUpwardDiagonal"> <summary> Light Upward Diagonal. <para>When the item is serialized out as xml, its value is "ltUpDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DarkDownwardDiagonal"> <summary> Dark Downward Diagonal. <para>When the item is serialized out as xml, its value is "dkDnDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DarkUpwardDiagonal"> <summary> Dark Upward Diagonal. <para>When the item is serialized out as xml, its value is "dkUpDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.WideDownwardDiagonal"> <summary> Wide Downward Diagonal. <para>When the item is serialized out as xml, its value is "wdDnDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.WideUpwardDiagonal"> <summary> Wide Upward Diagonal. <para>When the item is serialized out as xml, its value is "wdUpDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DashedDownwardDiagonal"> <summary> Dashed Downward Diagonal. <para>When the item is serialized out as xml, its value is "dashDnDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DashedUpwardDiagonal"> <summary> Dashed Upward DIagonal. <para>When the item is serialized out as xml, its value is "dashUpDiag".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DiagonalCross"> <summary> Diagonal Cross. <para>When the item is serialized out as xml, its value is "diagCross".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.SmallCheck"> <summary> Small Checker Board. <para>When the item is serialized out as xml, its value is "smCheck".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.LargeCheck"> <summary> Large Checker Board. <para>When the item is serialized out as xml, its value is "lgCheck".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.SmallGrid"> <summary> Small Grid. <para>When the item is serialized out as xml, its value is "smGrid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.LargeGrid"> <summary> Large Grid. <para>When the item is serialized out as xml, its value is "lgGrid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DotGrid"> <summary> Dotted Grid. <para>When the item is serialized out as xml, its value is "dotGrid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.SmallConfetti"> <summary> Small Confetti. <para>When the item is serialized out as xml, its value is "smConfetti".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.LargeConfetti"> <summary> Large Confetti. <para>When the item is serialized out as xml, its value is "lgConfetti".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.HorizontalBrick"> <summary> Horizontal Brick. <para>When the item is serialized out as xml, its value is "horzBrick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DiagonalBrick"> <summary> Diagonal Brick. <para>When the item is serialized out as xml, its value is "diagBrick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.SolidDiamond"> <summary> Solid Diamond. <para>When the item is serialized out as xml, its value is "solidDmnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.OpenDiamond"> <summary> Open Diamond. <para>When the item is serialized out as xml, its value is "openDmnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.DottedDiamond"> <summary> Dotted Diamond. <para>When the item is serialized out as xml, its value is "dotDmnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Plaid"> <summary> Plaid. <para>When the item is serialized out as xml, its value is "plaid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Sphere"> <summary> Sphere. <para>When the item is serialized out as xml, its value is "sphere".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Weave"> <summary> Weave. <para>When the item is serialized out as xml, its value is "weave".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Divot"> <summary> Divot. <para>When the item is serialized out as xml, its value is "divot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Shingle"> <summary> Shingle. <para>When the item is serialized out as xml, its value is "shingle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Wave"> <summary> Wave. <para>When the item is serialized out as xml, its value is "wave".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.Trellis"> <summary> Trellis. <para>When the item is serialized out as xml, its value is "trellis".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetPatternValues.ZigZag"> <summary> Zig Zag. <para>When the item is serialized out as xml, its value is "zigZag".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BlendModeValues"> <summary> Blend Mode </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlendModeValues.Overlay"> <summary> Overlay. <para>When the item is serialized out as xml, its value is "over".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlendModeValues.Multiply"> <summary> Multiply. <para>When the item is serialized out as xml, its value is "mult".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlendModeValues.Screen"> <summary> Screen. <para>When the item is serialized out as xml, its value is "screen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlendModeValues.Darken"> <summary> Darken. <para>When the item is serialized out as xml, its value is "darken".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BlendModeValues.Lighten"> <summary> Lighten. <para>When the item is serialized out as xml, its value is "lighten".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.EffectContainerValues"> <summary> Effect Container Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.EffectContainerValues.Sibling"> <summary> Sibling. <para>When the item is serialized out as xml, its value is "sib".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.EffectContainerValues.Tree"> <summary> Tree. <para>When the item is serialized out as xml, its value is "tree".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.ShapeTypeValues"> <summary> Preset Shape Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Line"> <summary> Line Shape. <para>When the item is serialized out as xml, its value is "line".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LineInverse"> <summary> Line Inverse Shape. <para>When the item is serialized out as xml, its value is "lineInv".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Triangle"> <summary> Triangle Shape. <para>When the item is serialized out as xml, its value is "triangle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.RightTriangle"> <summary> Right Triangle Shape. <para>When the item is serialized out as xml, its value is "rtTriangle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Rectangle"> <summary> Rectangle Shape. <para>When the item is serialized out as xml, its value is "rect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Diamond"> <summary> Diamond Shape. <para>When the item is serialized out as xml, its value is "diamond".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Parallelogram"> <summary> Parallelogram Shape. <para>When the item is serialized out as xml, its value is "parallelogram".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Trapezoid"> <summary> Trapezoid Shape. <para>When the item is serialized out as xml, its value is "trapezoid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.NonIsoscelesTrapezoid"> <summary> Non-Isosceles Trapezoid Shape. <para>When the item is serialized out as xml, its value is "nonIsoscelesTrapezoid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Pentagon"> <summary> Pentagon Shape. <para>When the item is serialized out as xml, its value is "pentagon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Hexagon"> <summary> Hexagon Shape. <para>When the item is serialized out as xml, its value is "hexagon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Heptagon"> <summary> Heptagon Shape. <para>When the item is serialized out as xml, its value is "heptagon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Octagon"> <summary> Octagon Shape. <para>When the item is serialized out as xml, its value is "octagon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Decagon"> <summary> Decagon Shape. <para>When the item is serialized out as xml, its value is "decagon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Dodecagon"> <summary> Dodecagon Shape. <para>When the item is serialized out as xml, its value is "dodecagon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star4"> <summary> Four Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star5"> <summary> Five Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star6"> <summary> Six Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star6".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star7"> <summary> Seven Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star7".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star8"> <summary> Eight Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star8".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star10"> <summary> Ten Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star10".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star12"> <summary> Twelve Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star12".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star16"> <summary> Sixteen Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star16".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star24"> <summary> Twenty Four Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star24".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Star32"> <summary> Thirty Two Pointed Star Shape. <para>When the item is serialized out as xml, its value is "star32".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.RoundRectangle"> <summary> Round Corner Rectangle Shape. <para>When the item is serialized out as xml, its value is "roundRect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Round1Rectangle"> <summary> One Round Corner Rectangle Shape. <para>When the item is serialized out as xml, its value is "round1Rect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Round2SameRectangle"> <summary> Two Same-side Round Corner Rectangle Shape. <para>When the item is serialized out as xml, its value is "round2SameRect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Round2DiagonalRectangle"> <summary> Two Diagonal Round Corner Rectangle Shape. <para>When the item is serialized out as xml, its value is "round2DiagRect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.SnipRoundRectangle"> <summary> One Snip One Round Corner Rectangle Shape. <para>When the item is serialized out as xml, its value is "snipRoundRect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Snip1Rectangle"> <summary> One Snip Corner Rectangle Shape. <para>When the item is serialized out as xml, its value is "snip1Rect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Snip2SameRectangle"> <summary> Two Same-side Snip Corner Rectangle Shape. <para>When the item is serialized out as xml, its value is "snip2SameRect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Snip2DiagonalRectangle"> <summary> Two Diagonal Snip Corner Rectangle Shape. <para>When the item is serialized out as xml, its value is "snip2DiagRect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Plaque"> <summary> Plaque Shape. <para>When the item is serialized out as xml, its value is "plaque".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Ellipse"> <summary> Ellipse Shape. <para>When the item is serialized out as xml, its value is "ellipse".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Teardrop"> <summary> Teardrop Shape. <para>When the item is serialized out as xml, its value is "teardrop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.HomePlate"> <summary> Home Plate Shape. <para>When the item is serialized out as xml, its value is "homePlate".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Chevron"> <summary> Chevron Shape. <para>When the item is serialized out as xml, its value is "chevron".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.PieWedge"> <summary> Pie Wedge Shape. <para>When the item is serialized out as xml, its value is "pieWedge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Pie"> <summary> Pie Shape. <para>When the item is serialized out as xml, its value is "pie".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BlockArc"> <summary> Block Arc Shape. <para>When the item is serialized out as xml, its value is "blockArc".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Donut"> <summary> Donut Shape. <para>When the item is serialized out as xml, its value is "donut".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.NoSmoking"> <summary> No Smoking Shape. <para>When the item is serialized out as xml, its value is "noSmoking".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.RightArrow"> <summary> Right Arrow Shape. <para>When the item is serialized out as xml, its value is "rightArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftArrow"> <summary> Left Arrow Shape. <para>When the item is serialized out as xml, its value is "leftArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.UpArrow"> <summary> Up Arrow Shape. <para>When the item is serialized out as xml, its value is "upArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.DownArrow"> <summary> Down Arrow Shape. <para>When the item is serialized out as xml, its value is "downArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.StripedRightArrow"> <summary> Striped Right Arrow Shape. <para>When the item is serialized out as xml, its value is "stripedRightArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.NotchedRightArrow"> <summary> Notched Right Arrow Shape. <para>When the item is serialized out as xml, its value is "notchedRightArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BentUpArrow"> <summary> Bent Up Arrow Shape. <para>When the item is serialized out as xml, its value is "bentUpArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftRightArrow"> <summary> Left Right Arrow Shape. <para>When the item is serialized out as xml, its value is "leftRightArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.UpDownArrow"> <summary> Up Down Arrow Shape. <para>When the item is serialized out as xml, its value is "upDownArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftUpArrow"> <summary> Left Up Arrow Shape. <para>When the item is serialized out as xml, its value is "leftUpArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftRightUpArrow"> <summary> Left Right Up Arrow Shape. <para>When the item is serialized out as xml, its value is "leftRightUpArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.QuadArrow"> <summary> Quad-Arrow Shape. <para>When the item is serialized out as xml, its value is "quadArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftArrowCallout"> <summary> Callout Left Arrow Shape. <para>When the item is serialized out as xml, its value is "leftArrowCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.RightArrowCallout"> <summary> Callout Right Arrow Shape. <para>When the item is serialized out as xml, its value is "rightArrowCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.UpArrowCallout"> <summary> Callout Up Arrow Shape. <para>When the item is serialized out as xml, its value is "upArrowCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.DownArrowCallout"> <summary> Callout Down Arrow Shape. <para>When the item is serialized out as xml, its value is "downArrowCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftRightArrowCallout"> <summary> Callout Left Right Arrow Shape. <para>When the item is serialized out as xml, its value is "leftRightArrowCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.UpDownArrowCallout"> <summary> Callout Up Down Arrow Shape. <para>When the item is serialized out as xml, its value is "upDownArrowCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.QuadArrowCallout"> <summary> Callout Quad-Arrow Shape. <para>When the item is serialized out as xml, its value is "quadArrowCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BentArrow"> <summary> Bent Arrow Shape. <para>When the item is serialized out as xml, its value is "bentArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.UTurnArrow"> <summary> U-Turn Arrow Shape. <para>When the item is serialized out as xml, its value is "uturnArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CircularArrow"> <summary> Circular Arrow Shape. <para>When the item is serialized out as xml, its value is "circularArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftCircularArrow"> <summary> Left Circular Arrow Shape. <para>When the item is serialized out as xml, its value is "leftCircularArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftRightCircularArrow"> <summary> Left Right Circular Arrow Shape. <para>When the item is serialized out as xml, its value is "leftRightCircularArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CurvedRightArrow"> <summary> Curved Right Arrow Shape. <para>When the item is serialized out as xml, its value is "curvedRightArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CurvedLeftArrow"> <summary> Curved Left Arrow Shape. <para>When the item is serialized out as xml, its value is "curvedLeftArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CurvedUpArrow"> <summary> Curved Up Arrow Shape. <para>When the item is serialized out as xml, its value is "curvedUpArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CurvedDownArrow"> <summary> Curved Down Arrow Shape. <para>When the item is serialized out as xml, its value is "curvedDownArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.SwooshArrow"> <summary> Swoosh Arrow Shape. <para>When the item is serialized out as xml, its value is "swooshArrow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Cube"> <summary> Cube Shape. <para>When the item is serialized out as xml, its value is "cube".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Can"> <summary> Can Shape. <para>When the item is serialized out as xml, its value is "can".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LightningBolt"> <summary> Lightning Bolt Shape. <para>When the item is serialized out as xml, its value is "lightningBolt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Heart"> <summary> Heart Shape. <para>When the item is serialized out as xml, its value is "heart".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Sun"> <summary> Sun Shape. <para>When the item is serialized out as xml, its value is "sun".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Moon"> <summary> Moon Shape. <para>When the item is serialized out as xml, its value is "moon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.SmileyFace"> <summary> Smiley Face Shape. <para>When the item is serialized out as xml, its value is "smileyFace".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.IrregularSeal1"> <summary> Irregular Seal 1 Shape. <para>When the item is serialized out as xml, its value is "irregularSeal1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.IrregularSeal2"> <summary> Irregular Seal 2 Shape. <para>When the item is serialized out as xml, its value is "irregularSeal2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FoldedCorner"> <summary> Folded Corner Shape. <para>When the item is serialized out as xml, its value is "foldedCorner".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Bevel"> <summary> Bevel Shape. <para>When the item is serialized out as xml, its value is "bevel".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Frame"> <summary> Frame Shape. <para>When the item is serialized out as xml, its value is "frame".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.HalfFrame"> <summary> Half Frame Shape. <para>When the item is serialized out as xml, its value is "halfFrame".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Corner"> <summary> Corner Shape. <para>When the item is serialized out as xml, its value is "corner".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.DiagonalStripe"> <summary> Diagonal Stripe Shape. <para>When the item is serialized out as xml, its value is "diagStripe".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Chord"> <summary> Chord Shape. <para>When the item is serialized out as xml, its value is "chord".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Arc"> <summary> Curved Arc Shape. <para>When the item is serialized out as xml, its value is "arc".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftBracket"> <summary> Left Bracket Shape. <para>When the item is serialized out as xml, its value is "leftBracket".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.RightBracket"> <summary> Right Bracket Shape. <para>When the item is serialized out as xml, its value is "rightBracket".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftBrace"> <summary> Left Brace Shape. <para>When the item is serialized out as xml, its value is "leftBrace".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.RightBrace"> <summary> Right Brace Shape. <para>When the item is serialized out as xml, its value is "rightBrace".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BracketPair"> <summary> Bracket Pair Shape. <para>When the item is serialized out as xml, its value is "bracketPair".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BracePair"> <summary> Brace Pair Shape. <para>When the item is serialized out as xml, its value is "bracePair".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.StraightConnector1"> <summary> Straight Connector 1 Shape. <para>When the item is serialized out as xml, its value is "straightConnector1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BentConnector2"> <summary> Bent Connector 2 Shape. <para>When the item is serialized out as xml, its value is "bentConnector2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BentConnector3"> <summary> Bent Connector 3 Shape. <para>When the item is serialized out as xml, its value is "bentConnector3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BentConnector4"> <summary> Bent Connector 4 Shape. <para>When the item is serialized out as xml, its value is "bentConnector4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BentConnector5"> <summary> Bent Connector 5 Shape. <para>When the item is serialized out as xml, its value is "bentConnector5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CurvedConnector2"> <summary> Curved Connector 2 Shape. <para>When the item is serialized out as xml, its value is "curvedConnector2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CurvedConnector3"> <summary> Curved Connector 3 Shape. <para>When the item is serialized out as xml, its value is "curvedConnector3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CurvedConnector4"> <summary> Curved Connector 4 Shape. <para>When the item is serialized out as xml, its value is "curvedConnector4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CurvedConnector5"> <summary> Curved Connector 5 Shape. <para>When the item is serialized out as xml, its value is "curvedConnector5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Callout1"> <summary> Callout 1 Shape. <para>When the item is serialized out as xml, its value is "callout1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Callout2"> <summary> Callout 2 Shape. <para>When the item is serialized out as xml, its value is "callout2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Callout3"> <summary> Callout 3 Shape. <para>When the item is serialized out as xml, its value is "callout3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.AccentCallout1"> <summary> Callout 1 Shape. <para>When the item is serialized out as xml, its value is "accentCallout1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.AccentCallout2"> <summary> Callout 2 Shape. <para>When the item is serialized out as xml, its value is "accentCallout2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.AccentCallout3"> <summary> Callout 3 Shape. <para>When the item is serialized out as xml, its value is "accentCallout3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BorderCallout1"> <summary> Callout 1 with Border Shape. <para>When the item is serialized out as xml, its value is "borderCallout1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BorderCallout2"> <summary> Callout 2 with Border Shape. <para>When the item is serialized out as xml, its value is "borderCallout2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.BorderCallout3"> <summary> Callout 3 with Border Shape. <para>When the item is serialized out as xml, its value is "borderCallout3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.AccentBorderCallout1"> <summary> Callout 1 with Border and Accent Shape. <para>When the item is serialized out as xml, its value is "accentBorderCallout1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.AccentBorderCallout2"> <summary> Callout 2 with Border and Accent Shape. <para>When the item is serialized out as xml, its value is "accentBorderCallout2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.AccentBorderCallout3"> <summary> Callout 3 with Border and Accent Shape. <para>When the item is serialized out as xml, its value is "accentBorderCallout3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.WedgeRectangleCallout"> <summary> Callout Wedge Rectangle Shape. <para>When the item is serialized out as xml, its value is "wedgeRectCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.WedgeRoundRectangleCallout"> <summary> Callout Wedge Round Rectangle Shape. <para>When the item is serialized out as xml, its value is "wedgeRoundRectCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.WedgeEllipseCallout"> <summary> Callout Wedge Ellipse Shape. <para>When the item is serialized out as xml, its value is "wedgeEllipseCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CloudCallout"> <summary> Callout Cloud Shape. <para>When the item is serialized out as xml, its value is "cloudCallout".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Cloud"> <summary> Cloud Shape. <para>When the item is serialized out as xml, its value is "cloud".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Ribbon"> <summary> Ribbon Shape. <para>When the item is serialized out as xml, its value is "ribbon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Ribbon2"> <summary> Ribbon 2 Shape. <para>When the item is serialized out as xml, its value is "ribbon2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.EllipseRibbon"> <summary> Ellipse Ribbon Shape. <para>When the item is serialized out as xml, its value is "ellipseRibbon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.EllipseRibbon2"> <summary> Ellipse Ribbon 2 Shape. <para>When the item is serialized out as xml, its value is "ellipseRibbon2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.LeftRightRibbon"> <summary> Left Right Ribbon Shape. <para>When the item is serialized out as xml, its value is "leftRightRibbon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.VerticalScroll"> <summary> Vertical Scroll Shape. <para>When the item is serialized out as xml, its value is "verticalScroll".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.HorizontalScroll"> <summary> Horizontal Scroll Shape. <para>When the item is serialized out as xml, its value is "horizontalScroll".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Wave"> <summary> Wave Shape. <para>When the item is serialized out as xml, its value is "wave".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.DoubleWave"> <summary> Double Wave Shape. <para>When the item is serialized out as xml, its value is "doubleWave".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Plus"> <summary> Plus Shape. <para>When the item is serialized out as xml, its value is "plus".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartProcess"> <summary> Process Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartProcess".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartDecision"> <summary> Decision Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartDecision".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartInputOutput"> <summary> Input Output Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartInputOutput".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartPredefinedProcess"> <summary> Predefined Process Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartPredefinedProcess".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartInternalStorage"> <summary> Internal Storage Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartInternalStorage".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartDocument"> <summary> Document Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartDocument".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartMultidocument"> <summary> Multi-Document Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartMultidocument".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartTerminator"> <summary> Terminator Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartTerminator".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartPreparation"> <summary> Preparation Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartPreparation".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartManualInput"> <summary> Manual Input Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartManualInput".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartManualOperation"> <summary> Manual Operation Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartManualOperation".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartConnector"> <summary> Connector Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartConnector".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartPunchedCard"> <summary> Punched Card Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartPunchedCard".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartPunchedTape"> <summary> Punched Tape Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartPunchedTape".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartSummingJunction"> <summary> Summing Junction Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartSummingJunction".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartOr"> <summary> Or Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartOr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartCollate"> <summary> Collate Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartCollate".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartSort"> <summary> Sort Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartSort".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartExtract"> <summary> Extract Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartExtract".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartMerge"> <summary> Merge Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartMerge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartOfflineStorage"> <summary> Offline Storage Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartOfflineStorage".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartOnlineStorage"> <summary> Online Storage Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartOnlineStorage".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartMagneticTape"> <summary> Magnetic Tape Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartMagneticTape".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartMagneticDisk"> <summary> Magnetic Disk Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartMagneticDisk".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartMagneticDrum"> <summary> Magnetic Drum Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartMagneticDrum".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartDisplay"> <summary> Display Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartDisplay".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartDelay"> <summary> Delay Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartDelay".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartAlternateProcess"> <summary> Alternate Process Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartAlternateProcess".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.FlowChartOffpageConnector"> <summary> Off-Page Connector Flow Shape. <para>When the item is serialized out as xml, its value is "flowChartOffpageConnector".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonBlank"> <summary> Blank Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonBlank".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonHome"> <summary> Home Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonHome".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonHelp"> <summary> Help Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonHelp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonInformation"> <summary> Information Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonInformation".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonForwardNext"> <summary> Forward or Next Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonForwardNext".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonBackPrevious"> <summary> Back or Previous Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonBackPrevious".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonEnd"> <summary> End Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonEnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonBeginning"> <summary> Beginning Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonBeginning".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonReturn"> <summary> Return Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonReturn".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonDocument"> <summary> Document Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonDocument".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonSound"> <summary> Sound Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonSound".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ActionButtonMovie"> <summary> Movie Button Shape. <para>When the item is serialized out as xml, its value is "actionButtonMovie".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Gear6"> <summary> Gear 6 Shape. <para>When the item is serialized out as xml, its value is "gear6".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Gear9"> <summary> Gear 9 Shape. <para>When the item is serialized out as xml, its value is "gear9".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.Funnel"> <summary> Funnel Shape. <para>When the item is serialized out as xml, its value is "funnel".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.MathPlus"> <summary> Plus Math Shape. <para>When the item is serialized out as xml, its value is "mathPlus".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.MathMinus"> <summary> Minus Math Shape. <para>When the item is serialized out as xml, its value is "mathMinus".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.MathMultiply"> <summary> Multiply Math Shape. <para>When the item is serialized out as xml, its value is "mathMultiply".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.MathDivide"> <summary> Divide Math Shape. <para>When the item is serialized out as xml, its value is "mathDivide".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.MathEqual"> <summary> Equal Math Shape. <para>When the item is serialized out as xml, its value is "mathEqual".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.MathNotEqual"> <summary> Not Equal Math Shape. <para>When the item is serialized out as xml, its value is "mathNotEqual".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.CornerTabs"> <summary> Corner Tabs Shape. <para>When the item is serialized out as xml, its value is "cornerTabs".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.SquareTabs"> <summary> Square Tabs Shape. <para>When the item is serialized out as xml, its value is "squareTabs".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.PlaqueTabs"> <summary> Plaque Tabs Shape. <para>When the item is serialized out as xml, its value is "plaqueTabs".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ChartX"> <summary> Chart X Shape. <para>When the item is serialized out as xml, its value is "chartX".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ChartStar"> <summary> Chart Star Shape. <para>When the item is serialized out as xml, its value is "chartStar".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.ShapeTypeValues.ChartPlus"> <summary> Chart Plus Shape. <para>When the item is serialized out as xml, its value is "chartPlus".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextShapeValues"> <summary> Preset Text Shape Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextNoShape"> <summary> No Text Shape. <para>When the item is serialized out as xml, its value is "textNoShape".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextPlain"> <summary> Plain Text Shape. <para>When the item is serialized out as xml, its value is "textPlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextStop"> <summary> Stop Sign Text Shape. <para>When the item is serialized out as xml, its value is "textStop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextTriangle"> <summary> Triangle Text Shape. <para>When the item is serialized out as xml, its value is "textTriangle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextTriangleInverted"> <summary> Inverted Triangle Text Shape. <para>When the item is serialized out as xml, its value is "textTriangleInverted".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextChevron"> <summary> Chevron Text Shape. <para>When the item is serialized out as xml, its value is "textChevron".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextChevronInverted"> <summary> Inverted Chevron Text Shape. <para>When the item is serialized out as xml, its value is "textChevronInverted".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextRingInside"> <summary> Inside Ring Text Shape. <para>When the item is serialized out as xml, its value is "textRingInside".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextRingOutside"> <summary> Outside Ring Text Shape. <para>When the item is serialized out as xml, its value is "textRingOutside".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextArchUp"> <summary> Upward Arch Text Shape. <para>When the item is serialized out as xml, its value is "textArchUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextArchDown"> <summary> Downward Arch Text Shape. <para>When the item is serialized out as xml, its value is "textArchDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextCircle"> <summary> Circle Text Shape. <para>When the item is serialized out as xml, its value is "textCircle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextButton"> <summary> Button Text Shape. <para>When the item is serialized out as xml, its value is "textButton".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextArchUpPour"> <summary> Upward Pour Arch Text Shape. <para>When the item is serialized out as xml, its value is "textArchUpPour".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextArchDownPour"> <summary> Downward Pour Arch Text Shape. <para>When the item is serialized out as xml, its value is "textArchDownPour".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextCirclePour"> <summary> Circle Pour Text Shape. <para>When the item is serialized out as xml, its value is "textCirclePour".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextButtonPour"> <summary> Button Pour Text Shape. <para>When the item is serialized out as xml, its value is "textButtonPour".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextCurveUp"> <summary> Upward Curve Text Shape. <para>When the item is serialized out as xml, its value is "textCurveUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextCurveDown"> <summary> Downward Curve Text Shape. <para>When the item is serialized out as xml, its value is "textCurveDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextCanUp"> <summary> Upward Can Text Shape. <para>When the item is serialized out as xml, its value is "textCanUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextCanDown"> <summary> Downward Can Text Shape. <para>When the item is serialized out as xml, its value is "textCanDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextWave1"> <summary> Wave 1 Text Shape. <para>When the item is serialized out as xml, its value is "textWave1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextWave2"> <summary> Wave 2 Text Shape. <para>When the item is serialized out as xml, its value is "textWave2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextDoubleWave1"> <summary> Double Wave 1 Text Shape. <para>When the item is serialized out as xml, its value is "textDoubleWave1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextWave4"> <summary> Wave 4 Text Shape. <para>When the item is serialized out as xml, its value is "textWave4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextInflate"> <summary> Inflate Text Shape. <para>When the item is serialized out as xml, its value is "textInflate".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextDeflate"> <summary> Deflate Text Shape. <para>When the item is serialized out as xml, its value is "textDeflate".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextInflateBottom"> <summary> Bottom Inflate Text Shape. <para>When the item is serialized out as xml, its value is "textInflateBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextDeflateBottom"> <summary> Bottom Deflate Text Shape. <para>When the item is serialized out as xml, its value is "textDeflateBottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextInflateTop"> <summary> Top Inflate Text Shape. <para>When the item is serialized out as xml, its value is "textInflateTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextDeflateTop"> <summary> Top Deflate Text Shape. <para>When the item is serialized out as xml, its value is "textDeflateTop".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextDeflateInflate"> <summary> Deflate-Inflate Text Shape. <para>When the item is serialized out as xml, its value is "textDeflateInflate".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextDeflateInflateDeflate"> <summary> Deflate-Inflate-Deflate Text Shape. <para>When the item is serialized out as xml, its value is "textDeflateInflateDeflate".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextFadeRight"> <summary> Right Fade Text Shape. <para>When the item is serialized out as xml, its value is "textFadeRight".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextFadeLeft"> <summary> Left Fade Text Shape. <para>When the item is serialized out as xml, its value is "textFadeLeft".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextFadeUp"> <summary> Upward Fade Text Shape. <para>When the item is serialized out as xml, its value is "textFadeUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextFadeDown"> <summary> Downward Fade Text Shape. <para>When the item is serialized out as xml, its value is "textFadeDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextSlantUp"> <summary> Upward Slant Text Shape. <para>When the item is serialized out as xml, its value is "textSlantUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextSlantDown"> <summary> Downward Slant Text Shape. <para>When the item is serialized out as xml, its value is "textSlantDown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextCascadeUp"> <summary> Upward Cascade Text Shape. <para>When the item is serialized out as xml, its value is "textCascadeUp".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextShapeValues.TextCascadeDown"> <summary> Downward Cascade Text Shape. <para>When the item is serialized out as xml, its value is "textCascadeDown".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PathFillModeValues"> <summary> Path Fill Mode </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathFillModeValues.None"> <summary> No Path Fill. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathFillModeValues.Norm"> <summary> Normal Path Fill. <para>When the item is serialized out as xml, its value is "norm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathFillModeValues.Lighten"> <summary> Lighten Path Fill. <para>When the item is serialized out as xml, its value is "lighten".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathFillModeValues.LightenLess"> <summary> Lighten Path Fill Less. <para>When the item is serialized out as xml, its value is "lightenLess".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathFillModeValues.Darken"> <summary> Darken Path Fill. <para>When the item is serialized out as xml, its value is "darken".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PathFillModeValues.DarkenLess"> <summary> Darken Path Fill Less. <para>When the item is serialized out as xml, its value is "darkenLess".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineEndValues"> <summary> Line End Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndValues.Triangle"> <summary> Triangle Arrow Head. <para>When the item is serialized out as xml, its value is "triangle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndValues.Stealth"> <summary> Stealth Arrow. <para>When the item is serialized out as xml, its value is "stealth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndValues.Diamond"> <summary> Diamond. <para>When the item is serialized out as xml, its value is "diamond".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndValues.Oval"> <summary> Oval. <para>When the item is serialized out as xml, its value is "oval".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndValues.Arrow"> <summary> Arrow Head. <para>When the item is serialized out as xml, its value is "arrow".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineEndWidthValues"> <summary> Line End Width </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndWidthValues.Small"> <summary> Small. <para>When the item is serialized out as xml, its value is "sm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndWidthValues.Medium"> <summary> Medium. <para>When the item is serialized out as xml, its value is "med".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndWidthValues.Large"> <summary> Large. <para>When the item is serialized out as xml, its value is "lg".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineEndLengthValues"> <summary> Line End Length </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndLengthValues.Small"> <summary> Small. <para>When the item is serialized out as xml, its value is "sm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndLengthValues.Medium"> <summary> Medium. <para>When the item is serialized out as xml, its value is "med".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineEndLengthValues.Large"> <summary> Large. <para>When the item is serialized out as xml, its value is "lg".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetLineDashValues"> <summary> Preset Line Dash Value </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.Solid"> <summary> Solid. <para>When the item is serialized out as xml, its value is "solid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.Dot"> <summary> Dot. <para>When the item is serialized out as xml, its value is "dot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.Dash"> <summary> Dash. <para>When the item is serialized out as xml, its value is "dash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.LargeDash"> <summary> Large Dash. <para>When the item is serialized out as xml, its value is "lgDash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.DashDot"> <summary> Dash Dot. <para>When the item is serialized out as xml, its value is "dashDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.LargeDashDot"> <summary> Large Dash Dot. <para>When the item is serialized out as xml, its value is "lgDashDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.LargeDashDotDot"> <summary> Large Dash Dot Dot. <para>When the item is serialized out as xml, its value is "lgDashDotDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.SystemDash"> <summary> System Dash. <para>When the item is serialized out as xml, its value is "sysDash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.SystemDot"> <summary> System Dot. <para>When the item is serialized out as xml, its value is "sysDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.SystemDashDot"> <summary> System Dash Dot. <para>When the item is serialized out as xml, its value is "sysDashDot".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetLineDashValues.SystemDashDotDot"> <summary> System Dash Dot Dot. <para>When the item is serialized out as xml, its value is "sysDashDotDot".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.LineCapValues"> <summary> End Line Cap </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineCapValues.Round"> <summary> Round Line Cap. <para>When the item is serialized out as xml, its value is "rnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineCapValues.Square"> <summary> Square Line Cap. <para>When the item is serialized out as xml, its value is "sq".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.LineCapValues.Flat"> <summary> Flat Line Cap. <para>When the item is serialized out as xml, its value is "flat".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PenAlignmentValues"> <summary> Alignment Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PenAlignmentValues.Center"> <summary> Center Alignment. <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PenAlignmentValues.Insert"> <summary> Inset Alignment. <para>When the item is serialized out as xml, its value is "in".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.CompoundLineValues"> <summary> Compound Line Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.CompoundLineValues.Single"> <summary> Single Line. <para>When the item is serialized out as xml, its value is "sng".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.CompoundLineValues.Double"> <summary> Double Lines. <para>When the item is serialized out as xml, its value is "dbl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.CompoundLineValues.ThickThin"> <summary> Thick Thin Double Lines. <para>When the item is serialized out as xml, its value is "thickThin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.CompoundLineValues.ThinThick"> <summary> Thin Thick Double Lines. <para>When the item is serialized out as xml, its value is "thinThick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.CompoundLineValues.Triple"> <summary> Thin Thick Thin Triple Lines. <para>When the item is serialized out as xml, its value is "tri".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.BooleanStyleValues"> <summary> On/Off Style Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BooleanStyleValues.On"> <summary> On. <para>When the item is serialized out as xml, its value is "on".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BooleanStyleValues.Off"> <summary> Off. <para>When the item is serialized out as xml, its value is "off".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.BooleanStyleValues.Default"> <summary> Default. <para>When the item is serialized out as xml, its value is "def".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues"> <summary> Text Vertical Overflow </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues.Overflow"> <summary> Text Overflow Enum ( Overflow ). <para>When the item is serialized out as xml, its value is "overflow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues.Ellipsis"> <summary> Text Overflow Enum ( Ellipsis ). <para>When the item is serialized out as xml, its value is "ellipsis".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalOverflowValues.Clip"> <summary> Text Overflow Enum ( Clip ). <para>When the item is serialized out as xml, its value is "clip".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues"> <summary> Text Horizontal Overflow Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues.Overflow"> <summary> Text Horizontal Overflow Enum ( Overflow ). <para>When the item is serialized out as xml, its value is "overflow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextHorizontalOverflowValues.Clip"> <summary> Text Horizontal Overflow Enum ( Clip ). <para>When the item is serialized out as xml, its value is "clip".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextVerticalValues"> <summary> Vertical Text Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalValues.Horizontal"> <summary> Vertical Text Type Enum ( Horizontal ). <para>When the item is serialized out as xml, its value is "horz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalValues.Vertical"> <summary> Vertical Text Type Enum ( Vertical ). <para>When the item is serialized out as xml, its value is "vert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalValues.Vertical270"> <summary> Vertical Text Type Enum ( Vertical 270 ). <para>When the item is serialized out as xml, its value is "vert270".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalValues.WordArtVertical"> <summary> Vertical Text Type Enum ( WordArt Vertical ). <para>When the item is serialized out as xml, its value is "wordArtVert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalValues.EastAsianVetical"> <summary> Vertical Text Type Enum ( East Asian Vertical ). <para>When the item is serialized out as xml, its value is "eaVert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalValues.MongolianVertical"> <summary> Vertical Text Type Enum ( Mongolian Vertical ). <para>When the item is serialized out as xml, its value is "mongolianVert".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextVerticalValues.WordArtLeftToRight"> <summary> Vertical WordArt Right to Left. <para>When the item is serialized out as xml, its value is "wordArtVertRtl".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextWrappingValues"> <summary> Text Wrapping Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextWrappingValues.None"> <summary> Text Wrapping Type Enum ( None ). <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextWrappingValues.Square"> <summary> Text Wrapping Type Enum ( Square ). <para>When the item is serialized out as xml, its value is "square".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextAnchoringTypeValues"> <summary> Text Anchoring Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAnchoringTypeValues.Top"> <summary> Text Anchoring Type Enum ( Top ). <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAnchoringTypeValues.Center"> <summary> Text Anchor Enum ( Center ). <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAnchoringTypeValues.Bottom"> <summary> Text Anchor Enum ( Bottom ). <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues"> <summary> Text Auto-number Schemes </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.AlphaLowerCharacterParenBoth"> <summary> Autonumber Enum ( alphaLcParenBoth ). <para>When the item is serialized out as xml, its value is "alphaLcParenBoth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.AlphaUpperCharacterParenBoth"> <summary> Autonumbering Enum ( alphaUcParenBoth ). <para>When the item is serialized out as xml, its value is "alphaUcParenBoth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.AlphaLowerCharacterParenR"> <summary> Autonumbering Enum ( alphaLcParenR ). <para>When the item is serialized out as xml, its value is "alphaLcParenR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.AlphaUpperCharacterParenR"> <summary> Autonumbering Enum ( alphaUcParenR ). <para>When the item is serialized out as xml, its value is "alphaUcParenR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.AlphaLowerCharacterPeriod"> <summary> Autonumbering Enum ( alphaLcPeriod ). <para>When the item is serialized out as xml, its value is "alphaLcPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.AlphaUpperCharacterPeriod"> <summary> Autonumbering Enum ( alphaUcPeriod ). <para>When the item is serialized out as xml, its value is "alphaUcPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ArabicParenBoth"> <summary> Autonumbering Enum ( arabicParenBoth ). <para>When the item is serialized out as xml, its value is "arabicParenBoth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ArabicParenR"> <summary> Autonumbering Enum ( arabicParenR ). <para>When the item is serialized out as xml, its value is "arabicParenR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ArabicPeriod"> <summary> Autonumbering Enum ( arabicPeriod ). <para>When the item is serialized out as xml, its value is "arabicPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ArabicPlain"> <summary> Autonumbering Enum ( arabicPlain ). <para>When the item is serialized out as xml, its value is "arabicPlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.RomanLowerCharacterParenBoth"> <summary> Autonumbering Enum ( romanLcParenBoth ). <para>When the item is serialized out as xml, its value is "romanLcParenBoth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.RomanUpperCharacterParenBoth"> <summary> Autonumbering Enum ( romanUcParenBoth ). <para>When the item is serialized out as xml, its value is "romanUcParenBoth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.RomanLowerCharacterParenR"> <summary> Autonumbering Enum ( romanLcParenR ). <para>When the item is serialized out as xml, its value is "romanLcParenR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.RomanUpperCharacterParenR"> <summary> Autonumbering Enum ( romanUcParenR ). <para>When the item is serialized out as xml, its value is "romanUcParenR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.RomanLowerCharacterPeriod"> <summary> Autonumbering Enum ( romanLcPeriod ). <para>When the item is serialized out as xml, its value is "romanLcPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.RomanUpperCharacterPeriod"> <summary> Autonumbering Enum ( romanUcPeriod ). <para>When the item is serialized out as xml, its value is "romanUcPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.CircleNumberDoubleBytePlain"> <summary> Autonumbering Enum ( circleNumDbPlain ). <para>When the item is serialized out as xml, its value is "circleNumDbPlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.CircleNumberWingdingsBlackPlain"> <summary> Autonumbering Enum ( circleNumWdBlackPlain ). <para>When the item is serialized out as xml, its value is "circleNumWdBlackPlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.CircleNumberWingdingsWhitePlain"> <summary> Autonumbering Enum ( circleNumWdWhitePlain ). <para>When the item is serialized out as xml, its value is "circleNumWdWhitePlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ArabicDoubleBytePeriod"> <summary> Autonumbering Enum ( arabicDbPeriod ). <para>When the item is serialized out as xml, its value is "arabicDbPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ArabicDoubleBytePlain"> <summary> Autonumbering Enum ( arabicDbPlain ). <para>When the item is serialized out as xml, its value is "arabicDbPlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.EastAsianSimplifiedChinesePeriod"> <summary> Autonumbering Enum ( ea1ChsPeriod ). <para>When the item is serialized out as xml, its value is "ea1ChsPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.EastAsianSimplifiedChinesePlain"> <summary> Autonumbering Enum ( ea1ChsPlain ). <para>When the item is serialized out as xml, its value is "ea1ChsPlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.EastAsianTraditionalChinesePeriod"> <summary> Autonumbering Enum ( ea1ChtPeriod ). <para>When the item is serialized out as xml, its value is "ea1ChtPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.EastAsianTraditionalChinesePlain"> <summary> Autonumbering Enum ( ea1ChtPlain ). <para>When the item is serialized out as xml, its value is "ea1ChtPlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.EastAsianJapaneseDoubleBytePeriod"> <summary> Autonumbering Enum ( ea1JpnChsDbPeriod ). <para>When the item is serialized out as xml, its value is "ea1JpnChsDbPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.EastAsianJapaneseKoreanPlain"> <summary> Autonumbering Enum ( ea1JpnKorPlain ). <para>When the item is serialized out as xml, its value is "ea1JpnKorPlain".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.EastAsianJapaneseKoreanPeriod"> <summary> Autonumbering Enum ( ea1JpnKorPeriod ). <para>When the item is serialized out as xml, its value is "ea1JpnKorPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.Arabic1Minus"> <summary> Autonumbering Enum ( arabic1Minus ). <para>When the item is serialized out as xml, its value is "arabic1Minus".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.Arabic2Minus"> <summary> Autonumbering Enum ( arabic2Minus ). <para>When the item is serialized out as xml, its value is "arabic2Minus".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.Hebrew2Minus"> <summary> Autonumbering Enum ( hebrew2Minus ). <para>When the item is serialized out as xml, its value is "hebrew2Minus".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ThaiAlphaPeriod"> <summary> Autonumbering Enum ( thaiAlphaPeriod ). <para>When the item is serialized out as xml, its value is "thaiAlphaPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ThaiAlphaParenthesisRight"> <summary> Autonumbering Enum ( thaiAlphaParenR ). <para>When the item is serialized out as xml, its value is "thaiAlphaParenR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ThaiAlphaParenthesisBoth"> <summary> Autonumbering Enum ( thaiAlphaParenBoth ). <para>When the item is serialized out as xml, its value is "thaiAlphaParenBoth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ThaiNumberPeriod"> <summary> Autonumbering Enum ( thaiNumPeriod ). <para>When the item is serialized out as xml, its value is "thaiNumPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ThaiNumberParenthesisRight"> <summary> Autonumbering Enum ( thaiNumParenR ). <para>When the item is serialized out as xml, its value is "thaiNumParenR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.ThaiNumberParenthesisBoth"> <summary> Autonumbering Enum ( thaiNumParenBoth ). <para>When the item is serialized out as xml, its value is "thaiNumParenBoth".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.HindiAlphaPeriod"> <summary> Autonumbering Enum ( hindiAlphaPeriod ). <para>When the item is serialized out as xml, its value is "hindiAlphaPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.HindiNumPeriod"> <summary> Autonumbering Enum ( hindiNumPeriod ). <para>When the item is serialized out as xml, its value is "hindiNumPeriod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.HindiNumberParenthesisRight"> <summary> Autonumbering Enum ( hindiNumParenR ). <para>When the item is serialized out as xml, its value is "hindiNumParenR".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAutoNumberSchemeValues.HindiAlpha1Period"> <summary> Autonumbering Enum ( hindiAlpha1Period ). <para>When the item is serialized out as xml, its value is "hindiAlpha1Period".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextUnderlineValues"> <summary> Text Underline Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.None"> <summary> Text Underline Enum ( None ). <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.Words"> <summary> Text Underline Enum ( Words ). <para>When the item is serialized out as xml, its value is "words".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.Single"> <summary> Text Underline Enum ( Single ). <para>When the item is serialized out as xml, its value is "sng".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.Double"> <summary> Text Underline Enum ( Double ). <para>When the item is serialized out as xml, its value is "dbl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.Heavy"> <summary> Text Underline Enum ( Heavy ). <para>When the item is serialized out as xml, its value is "heavy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.Dotted"> <summary> Text Underline Enum ( Dotted ). <para>When the item is serialized out as xml, its value is "dotted".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.HeavyDotted"> <summary> Text Underline Enum ( Heavy Dotted ). <para>When the item is serialized out as xml, its value is "dottedHeavy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.Dash"> <summary> Text Underline Enum ( Dashed ). <para>When the item is serialized out as xml, its value is "dash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.DashHeavy"> <summary> Text Underline Enum ( Heavy Dashed ). <para>When the item is serialized out as xml, its value is "dashHeavy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.DashLong"> <summary> Text Underline Enum ( Long Dashed ). <para>When the item is serialized out as xml, its value is "dashLong".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.DashLongHeavy"> <summary> Text Underline Enum ( Heavy Long Dashed ). <para>When the item is serialized out as xml, its value is "dashLongHeavy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.DotDash"> <summary> Text Underline Enum ( Dot Dash ). <para>When the item is serialized out as xml, its value is "dotDash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.DotDashHeavy"> <summary> Text Underline Enum ( Heavy Dot Dash ). <para>When the item is serialized out as xml, its value is "dotDashHeavy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.DotDotDash"> <summary> Text Underline Enum ( Dot Dot Dash ). <para>When the item is serialized out as xml, its value is "dotDotDash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.DotDotDashHeavy"> <summary> Text Underline Enum ( Heavy Dot Dot Dash ). <para>When the item is serialized out as xml, its value is "dotDotDashHeavy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.Wavy"> <summary> Text Underline Enum ( Wavy ). <para>When the item is serialized out as xml, its value is "wavy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.WavyHeavy"> <summary> Text Underline Enum ( Heavy Wavy ). <para>When the item is serialized out as xml, its value is "wavyHeavy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextUnderlineValues.WavyDouble"> <summary> Text Underline Enum ( Double Wavy ). <para>When the item is serialized out as xml, its value is "wavyDbl".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextStrikeValues"> <summary> Text Strike Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextStrikeValues.NoStrike"> <summary> Text Strike Enum ( No Strike ). <para>When the item is serialized out as xml, its value is "noStrike".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextStrikeValues.SingleStrike"> <summary> Text Strike Enum ( Single Strike ). <para>When the item is serialized out as xml, its value is "sngStrike".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextStrikeValues.DoubleStrike"> <summary> Text Strike Enum ( Double Strike ). <para>When the item is serialized out as xml, its value is "dblStrike".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextCapsValues"> <summary> Text Cap Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextCapsValues.None"> <summary> Text Caps Enum ( None ). <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextCapsValues.Small"> <summary> Text Caps Enum ( Small ). <para>When the item is serialized out as xml, its value is "small".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextCapsValues.All"> <summary> Text Caps Enum ( All ). <para>When the item is serialized out as xml, its value is "all".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextTabAlignmentValues"> <summary> Text Tab Alignment Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextTabAlignmentValues.Left"> <summary> Text Tab Alignment Enum ( Left). <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextTabAlignmentValues.Center"> <summary> Text Tab Alignment Enum ( Center ). <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextTabAlignmentValues.Right"> <summary> Text Tab Alignment Enum ( Right ). <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextTabAlignmentValues.Decimal"> <summary> Text Tab Alignment Enum ( Decimal ). <para>When the item is serialized out as xml, its value is "dec".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextAlignmentTypeValues"> <summary> Text Alignment Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAlignmentTypeValues.Left"> <summary> Text Alignment Enum ( Left ). <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAlignmentTypeValues.Center"> <summary> Text Alignment Enum ( Center ). <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAlignmentTypeValues.Right"> <summary> Text Alignment Enum ( Right ). <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAlignmentTypeValues.Justified"> <summary> Text Alignment Enum ( Justified ). <para>When the item is serialized out as xml, its value is "just".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAlignmentTypeValues.JustifiedLow"> <summary> Text Alignment Enum ( Justified Low ). <para>When the item is serialized out as xml, its value is "justLow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAlignmentTypeValues.Distributed"> <summary> Text Alignment Enum ( Distributed ). <para>When the item is serialized out as xml, its value is "dist".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextAlignmentTypeValues.ThaiDistributed"> <summary> Text Alignment Enum ( Thai Distributed ). <para>When the item is serialized out as xml, its value is "thaiDist".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.TextFontAlignmentValues"> <summary> Font Alignment Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextFontAlignmentValues.Automatic"> <summary> Font Alignment Enum ( Automatic ). <para>When the item is serialized out as xml, its value is "auto".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextFontAlignmentValues.Top"> <summary> Font Alignment Enum ( Top ). <para>When the item is serialized out as xml, its value is "t".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextFontAlignmentValues.Center"> <summary> Font Alignment Enum ( Center ). <para>When the item is serialized out as xml, its value is "ctr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextFontAlignmentValues.Baseline"> <summary> Font Alignment Enum ( Baseline ). <para>When the item is serialized out as xml, its value is "base".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.TextFontAlignmentValues.Bottom"> <summary> Font Alignment Enum ( Bottom ). <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.PresetColorValues"> <summary> Preset Color Value </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.AliceBlue"> <summary> Alice Blue Preset Color. <para>When the item is serialized out as xml, its value is "aliceBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.AntiqueWhite"> <summary> Antique White Preset Color. <para>When the item is serialized out as xml, its value is "antiqueWhite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Aqua"> <summary> Aqua Preset Color. <para>When the item is serialized out as xml, its value is "aqua".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Aquamarine"> <summary> Aquamarine Preset Color. <para>When the item is serialized out as xml, its value is "aquamarine".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Azure"> <summary> Azure Preset Color. <para>When the item is serialized out as xml, its value is "azure".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Beige"> <summary> Beige Preset Color. <para>When the item is serialized out as xml, its value is "beige".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Bisque"> <summary> Bisque Preset Color. <para>When the item is serialized out as xml, its value is "bisque".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Black"> <summary> Black Preset Color. <para>When the item is serialized out as xml, its value is "black".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.BlanchedAlmond"> <summary> Blanched Almond Preset Color. <para>When the item is serialized out as xml, its value is "blanchedAlmond".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Blue"> <summary> Blue Preset Color. <para>When the item is serialized out as xml, its value is "blue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.BlueViolet"> <summary> Blue Violet Preset Color. <para>When the item is serialized out as xml, its value is "blueViolet".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Brown"> <summary> Brown Preset Color. <para>When the item is serialized out as xml, its value is "brown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.BurlyWood"> <summary> Burly Wood Preset Color. <para>When the item is serialized out as xml, its value is "burlyWood".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.CadetBlue"> <summary> Cadet Blue Preset Color. <para>When the item is serialized out as xml, its value is "cadetBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Chartreuse"> <summary> Chartreuse Preset Color. <para>When the item is serialized out as xml, its value is "chartreuse".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Chocolate"> <summary> Chocolate Preset Color. <para>When the item is serialized out as xml, its value is "chocolate".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Coral"> <summary> Coral Preset Color. <para>When the item is serialized out as xml, its value is "coral".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.CornflowerBlue"> <summary> Cornflower Blue Preset Color. <para>When the item is serialized out as xml, its value is "cornflowerBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Cornsilk"> <summary> Cornsilk Preset Color. <para>When the item is serialized out as xml, its value is "cornsilk".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Crimson"> <summary> Crimson Preset Color. <para>When the item is serialized out as xml, its value is "crimson".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Cyan"> <summary> Cyan Preset Color. <para>When the item is serialized out as xml, its value is "cyan".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkBlue"> <summary> Dark Blue Preset Color. <para>When the item is serialized out as xml, its value is "dkBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkCyan"> <summary> Dark Cyan Preset Color. <para>When the item is serialized out as xml, its value is "dkCyan".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkGoldenrod"> <summary> Dark Goldenrod Preset Color. <para>When the item is serialized out as xml, its value is "dkGoldenrod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkGray"> <summary> Dark Gray Preset Color. <para>When the item is serialized out as xml, its value is "dkGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkGreen"> <summary> Dark Green Preset Color. <para>When the item is serialized out as xml, its value is "dkGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkKhaki"> <summary> Dark Khaki Preset Color. <para>When the item is serialized out as xml, its value is "dkKhaki".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkMagenta"> <summary> Dark Magenta Preset Color. <para>When the item is serialized out as xml, its value is "dkMagenta".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkOliveGreen"> <summary> Dark Olive Green Preset Color. <para>When the item is serialized out as xml, its value is "dkOliveGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkOrange"> <summary> Dark Orange Preset Color. <para>When the item is serialized out as xml, its value is "dkOrange".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkOrchid"> <summary> Dark Orchid Preset Color. <para>When the item is serialized out as xml, its value is "dkOrchid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkRed"> <summary> Dark Red Preset Color. <para>When the item is serialized out as xml, its value is "dkRed".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSalmon"> <summary> Dark Salmon Preset Color. <para>When the item is serialized out as xml, its value is "dkSalmon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSeaGreen"> <summary> Dark Sea Green Preset Color. <para>When the item is serialized out as xml, its value is "dkSeaGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSlateBlue"> <summary> Dark Slate Blue Preset Color. <para>When the item is serialized out as xml, its value is "dkSlateBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSlateGray"> <summary> Dark Slate Gray Preset Color. <para>When the item is serialized out as xml, its value is "dkSlateGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkTurquoise"> <summary> Dark Turquoise Preset Color. <para>When the item is serialized out as xml, its value is "dkTurquoise".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkViolet"> <summary> Dark Violet Preset Color. <para>When the item is serialized out as xml, its value is "dkViolet".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DeepPink"> <summary> Deep Pink Preset Color. <para>When the item is serialized out as xml, its value is "deepPink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DeepSkyBlue"> <summary> Deep Sky Blue Preset Color. <para>When the item is serialized out as xml, its value is "deepSkyBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DimGray"> <summary> Dim Gray Preset Color. <para>When the item is serialized out as xml, its value is "dimGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DodgerBlue"> <summary> Dodger Blue Preset Color. <para>When the item is serialized out as xml, its value is "dodgerBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Firebrick"> <summary> Firebrick Preset Color. <para>When the item is serialized out as xml, its value is "firebrick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.FloralWhite"> <summary> Floral White Preset Color. <para>When the item is serialized out as xml, its value is "floralWhite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.ForestGreen"> <summary> Forest Green Preset Color. <para>When the item is serialized out as xml, its value is "forestGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Fuchsia"> <summary> Fuchsia Preset Color. <para>When the item is serialized out as xml, its value is "fuchsia".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Gainsboro"> <summary> Gainsboro Preset Color. <para>When the item is serialized out as xml, its value is "gainsboro".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.GhostWhite"> <summary> Ghost White Preset Color. <para>When the item is serialized out as xml, its value is "ghostWhite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Gold"> <summary> Gold Preset Color. <para>When the item is serialized out as xml, its value is "gold".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Goldenrod"> <summary> Goldenrod Preset Color. <para>When the item is serialized out as xml, its value is "goldenrod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Gray"> <summary> Gray Preset Color. <para>When the item is serialized out as xml, its value is "gray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Green"> <summary> Green Preset Color. <para>When the item is serialized out as xml, its value is "green".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.GreenYellow"> <summary> Green Yellow Preset Color. <para>When the item is serialized out as xml, its value is "greenYellow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Honeydew"> <summary> Honeydew Preset Color. <para>When the item is serialized out as xml, its value is "honeydew".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.HotPink"> <summary> Hot Pink Preset Color. <para>When the item is serialized out as xml, its value is "hotPink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.IndianRed"> <summary> Indian Red Preset Color. <para>When the item is serialized out as xml, its value is "indianRed".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Indigo"> <summary> Indigo Preset Color. <para>When the item is serialized out as xml, its value is "indigo".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Ivory"> <summary> Ivory Preset Color. <para>When the item is serialized out as xml, its value is "ivory".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Khaki"> <summary> Khaki Preset Color. <para>When the item is serialized out as xml, its value is "khaki".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Lavender"> <summary> Lavender Preset Color. <para>When the item is serialized out as xml, its value is "lavender".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LavenderBlush"> <summary> Lavender Blush Preset Color. <para>When the item is serialized out as xml, its value is "lavenderBlush".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LawnGreen"> <summary> Lawn Green Preset Color. <para>When the item is serialized out as xml, its value is "lawnGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LemonChiffon"> <summary> Lemon Chiffon Preset Color. <para>When the item is serialized out as xml, its value is "lemonChiffon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightBlue"> <summary> Light Blue Preset Color. <para>When the item is serialized out as xml, its value is "ltBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightCoral"> <summary> Light Coral Preset Color. <para>When the item is serialized out as xml, its value is "ltCoral".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightCyan"> <summary> Light Cyan Preset Color. <para>When the item is serialized out as xml, its value is "ltCyan".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightGoldenrodYellow"> <summary> Light Goldenrod Yellow Preset Color. <para>When the item is serialized out as xml, its value is "ltGoldenrodYellow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightGray"> <summary> Light Gray Preset Color. <para>When the item is serialized out as xml, its value is "ltGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightGreen"> <summary> Light Green Preset Color. <para>When the item is serialized out as xml, its value is "ltGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightPink"> <summary> Light Pink Preset Color. <para>When the item is serialized out as xml, its value is "ltPink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSalmon"> <summary> Light Salmon Preset Color. <para>When the item is serialized out as xml, its value is "ltSalmon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSeaGreen"> <summary> Light Sea Green Preset Color. <para>When the item is serialized out as xml, its value is "ltSeaGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSkyBlue"> <summary> Light Sky Blue Preset Color. <para>When the item is serialized out as xml, its value is "ltSkyBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSlateGray"> <summary> Light Slate Gray Preset Color. <para>When the item is serialized out as xml, its value is "ltSlateGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSteelBlue"> <summary> Light Steel Blue Preset Color. <para>When the item is serialized out as xml, its value is "ltSteelBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightYellow"> <summary> Light Yellow Preset Color. <para>When the item is serialized out as xml, its value is "ltYellow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Lime"> <summary> Lime Preset Color. <para>When the item is serialized out as xml, its value is "lime".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LimeGreen"> <summary> Lime Green Preset Color. <para>When the item is serialized out as xml, its value is "limeGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Linen"> <summary> Linen Preset Color. <para>When the item is serialized out as xml, its value is "linen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Magenta"> <summary> Magenta Preset Color. <para>When the item is serialized out as xml, its value is "magenta".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Maroon"> <summary> Maroon Preset Color. <para>When the item is serialized out as xml, its value is "maroon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MedAquamarine"> <summary> Medium Aquamarine Preset Color. <para>When the item is serialized out as xml, its value is "medAquamarine".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumBlue"> <summary> Medium Blue Preset Color. <para>When the item is serialized out as xml, its value is "medBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumOrchid"> <summary> Medium Orchid Preset Color. <para>When the item is serialized out as xml, its value is "medOrchid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumPurple"> <summary> Medium Purple Preset Color. <para>When the item is serialized out as xml, its value is "medPurple".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumSeaGreen"> <summary> Medium Sea Green Preset Color. <para>When the item is serialized out as xml, its value is "medSeaGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumSlateBlue"> <summary> Medium Slate Blue Preset Color. <para>When the item is serialized out as xml, its value is "medSlateBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumSpringGreen"> <summary> Medium Spring Green Preset Color. <para>When the item is serialized out as xml, its value is "medSpringGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumTurquoise"> <summary> Medium Turquoise Preset Color. <para>When the item is serialized out as xml, its value is "medTurquoise".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumVioletRed"> <summary> Medium Violet Red Preset Color. <para>When the item is serialized out as xml, its value is "medVioletRed".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MidnightBlue"> <summary> Midnight Blue Preset Color. <para>When the item is serialized out as xml, its value is "midnightBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MintCream"> <summary> Mint Cream Preset Color. <para>When the item is serialized out as xml, its value is "mintCream".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MistyRose"> <summary> Misty Rose Preset Color. <para>When the item is serialized out as xml, its value is "mistyRose".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Moccasin"> <summary> Moccasin Preset Color. <para>When the item is serialized out as xml, its value is "moccasin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.NavajoWhite"> <summary> Navajo White Preset Color. <para>When the item is serialized out as xml, its value is "navajoWhite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Navy"> <summary> Navy Preset Color. <para>When the item is serialized out as xml, its value is "navy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.OldLace"> <summary> Old Lace Preset Color. <para>When the item is serialized out as xml, its value is "oldLace".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Olive"> <summary> Olive Preset Color. <para>When the item is serialized out as xml, its value is "olive".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.OliveDrab"> <summary> Olive Drab Preset Color. <para>When the item is serialized out as xml, its value is "oliveDrab".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Orange"> <summary> Orange Preset Color. <para>When the item is serialized out as xml, its value is "orange".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.OrangeRed"> <summary> Orange Red Preset Color. <para>When the item is serialized out as xml, its value is "orangeRed".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Orchid"> <summary> Orchid Preset Color. <para>When the item is serialized out as xml, its value is "orchid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.PaleGoldenrod"> <summary> Pale Goldenrod Preset Color. <para>When the item is serialized out as xml, its value is "paleGoldenrod".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.PaleGreen"> <summary> Pale Green Preset Color. <para>When the item is serialized out as xml, its value is "paleGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.PaleTurquoise"> <summary> Pale Turquoise Preset Color. <para>When the item is serialized out as xml, its value is "paleTurquoise".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.PaleVioletRed"> <summary> Pale Violet Red Preset Color. <para>When the item is serialized out as xml, its value is "paleVioletRed".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.PapayaWhip"> <summary> Papaya Whip Preset Color. <para>When the item is serialized out as xml, its value is "papayaWhip".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.PeachPuff"> <summary> Peach Puff Preset Color. <para>When the item is serialized out as xml, its value is "peachPuff".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Peru"> <summary> Peru Preset Color. <para>When the item is serialized out as xml, its value is "peru".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Pink"> <summary> Pink Preset Color. <para>When the item is serialized out as xml, its value is "pink".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Plum"> <summary> Plum Preset Color. <para>When the item is serialized out as xml, its value is "plum".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.PowderBlue"> <summary> Powder Blue Preset Color. <para>When the item is serialized out as xml, its value is "powderBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Purple"> <summary> Purple Preset Color. <para>When the item is serialized out as xml, its value is "purple".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Red"> <summary> Red Preset Color. <para>When the item is serialized out as xml, its value is "red".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.RosyBrown"> <summary> Rosy Brown Preset Color. <para>When the item is serialized out as xml, its value is "rosyBrown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.RoyalBlue"> <summary> Royal Blue Preset Color. <para>When the item is serialized out as xml, its value is "royalBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SaddleBrown"> <summary> Saddle Brown Preset Color. <para>When the item is serialized out as xml, its value is "saddleBrown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Salmon"> <summary> Salmon Preset Color. <para>When the item is serialized out as xml, its value is "salmon".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SandyBrown"> <summary> Sandy Brown Preset Color. <para>When the item is serialized out as xml, its value is "sandyBrown".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SeaGreen"> <summary> Sea Green Preset Color. <para>When the item is serialized out as xml, its value is "seaGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SeaShell"> <summary> Sea Shell Preset Color. <para>When the item is serialized out as xml, its value is "seaShell".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Sienna"> <summary> Sienna Preset Color. <para>When the item is serialized out as xml, its value is "sienna".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Silver"> <summary> Silver Preset Color. <para>When the item is serialized out as xml, its value is "silver".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SkyBlue"> <summary> Sky Blue Preset Color. <para>When the item is serialized out as xml, its value is "skyBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SlateBlue"> <summary> Slate Blue Preset Color. <para>When the item is serialized out as xml, its value is "slateBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SlateGray"> <summary> Slate Gray Preset Color. <para>When the item is serialized out as xml, its value is "slateGray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Snow"> <summary> Snow Preset Color. <para>When the item is serialized out as xml, its value is "snow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SpringGreen"> <summary> Spring Green Preset Color. <para>When the item is serialized out as xml, its value is "springGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SteelBlue"> <summary> Steel Blue Preset Color. <para>When the item is serialized out as xml, its value is "steelBlue".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Tan"> <summary> Tan Preset Color. <para>When the item is serialized out as xml, its value is "tan".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Teal"> <summary> Teal Preset Color. <para>When the item is serialized out as xml, its value is "teal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Thistle"> <summary> Thistle Preset Color. <para>When the item is serialized out as xml, its value is "thistle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Tomato"> <summary> Tomato Preset Color. <para>When the item is serialized out as xml, its value is "tomato".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Turquoise"> <summary> Turquoise Preset Color. <para>When the item is serialized out as xml, its value is "turquoise".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Violet"> <summary> Violet Preset Color. <para>When the item is serialized out as xml, its value is "violet".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Wheat"> <summary> Wheat Preset Color. <para>When the item is serialized out as xml, its value is "wheat".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.White"> <summary> White Preset Color. <para>When the item is serialized out as xml, its value is "white".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.WhiteSmoke"> <summary> White Smoke Preset Color. <para>When the item is serialized out as xml, its value is "whiteSmoke".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Yellow"> <summary> Yellow Preset Color. <para>When the item is serialized out as xml, its value is "yellow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.YellowGreen"> <summary> Yellow Green Preset Color. <para>When the item is serialized out as xml, its value is "yellowGreen".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkBlue2010"> <summary> darkBlue. <para>When the item is serialized out as xml, its value is "darkBlue".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkCyan2010"> <summary> darkCyan. <para>When the item is serialized out as xml, its value is "darkCyan".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkGoldenrod2010"> <summary> darkGoldenrod. <para>When the item is serialized out as xml, its value is "darkGoldenrod".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkGray2010"> <summary> darkGray. <para>When the item is serialized out as xml, its value is "darkGray".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkGrey2010"> <summary> darkGrey. <para>When the item is serialized out as xml, its value is "darkGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkGreen2010"> <summary> darkGreen. <para>When the item is serialized out as xml, its value is "darkGreen".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkKhaki2010"> <summary> darkKhaki. <para>When the item is serialized out as xml, its value is "darkKhaki".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkMagenta2010"> <summary> darkMagenta. <para>When the item is serialized out as xml, its value is "darkMagenta".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkOliveGreen2010"> <summary> darkOliveGreen. <para>When the item is serialized out as xml, its value is "darkOliveGreen".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkOrange2010"> <summary> darkOrange. <para>When the item is serialized out as xml, its value is "darkOrange".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkOrchid2010"> <summary> darkOrchid. <para>When the item is serialized out as xml, its value is "darkOrchid".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkRed2010"> <summary> darkRed. <para>When the item is serialized out as xml, its value is "darkRed".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSalmon2010"> <summary> darkSalmon. <para>When the item is serialized out as xml, its value is "darkSalmon".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSeaGreen2010"> <summary> darkSeaGreen. <para>When the item is serialized out as xml, its value is "darkSeaGreen".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSlateBlue2010"> <summary> darkSlateBlue. <para>When the item is serialized out as xml, its value is "darkSlateBlue".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSlateGray2010"> <summary> darkSlateGray. <para>When the item is serialized out as xml, its value is "darkSlateGray".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSlateGrey2010"> <summary> darkSlateGrey. <para>When the item is serialized out as xml, its value is "darkSlateGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkTurquoise2010"> <summary> darkTurquoise. <para>When the item is serialized out as xml, its value is "darkTurquoise".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkViolet2010"> <summary> darkViolet. <para>When the item is serialized out as xml, its value is "darkViolet".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightBlue2010"> <summary> lightBlue. <para>When the item is serialized out as xml, its value is "lightBlue".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightCoral2010"> <summary> lightCoral. <para>When the item is serialized out as xml, its value is "lightCoral".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightCyan2010"> <summary> lightCyan. <para>When the item is serialized out as xml, its value is "lightCyan".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightGoldenrodYellow2010"> <summary> lightGoldenrodYellow. <para>When the item is serialized out as xml, its value is "lightGoldenrodYellow".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightGray2010"> <summary> lightGray. <para>When the item is serialized out as xml, its value is "lightGray".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightGrey2010"> <summary> lightGrey. <para>When the item is serialized out as xml, its value is "lightGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightGreen2010"> <summary> lightGreen. <para>When the item is serialized out as xml, its value is "lightGreen".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightPink2010"> <summary> lightPink. <para>When the item is serialized out as xml, its value is "lightPink".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSalmon2010"> <summary> lightSalmon. <para>When the item is serialized out as xml, its value is "lightSalmon".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSeaGreen2010"> <summary> lightSeaGreen. <para>When the item is serialized out as xml, its value is "lightSeaGreen".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSkyBlue2010"> <summary> lightSkyBlue. <para>When the item is serialized out as xml, its value is "lightSkyBlue".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSlateGray2010"> <summary> lightSlateGray. <para>When the item is serialized out as xml, its value is "lightSlateGray".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSlateGrey2010"> <summary> lightSlateGrey. <para>When the item is serialized out as xml, its value is "lightSlateGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSteelBlue2010"> <summary> lightSteelBlue. <para>When the item is serialized out as xml, its value is "lightSteelBlue".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightYellow2010"> <summary> lightYellow. <para>When the item is serialized out as xml, its value is "lightYellow".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumAquamarine2010"> <summary> mediumAquamarine. <para>When the item is serialized out as xml, its value is "mediumAquamarine".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumBlue2010"> <summary> mediumBlue. <para>When the item is serialized out as xml, its value is "mediumBlue".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumOrchid2010"> <summary> mediumOrchid. <para>When the item is serialized out as xml, its value is "mediumOrchid".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumPurple2010"> <summary> mediumPurple. <para>When the item is serialized out as xml, its value is "mediumPurple".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumSeaGreen2010"> <summary> mediumSeaGreen. <para>When the item is serialized out as xml, its value is "mediumSeaGreen".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumSlateBlue2010"> <summary> mediumSlateBlue. <para>When the item is serialized out as xml, its value is "mediumSlateBlue".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumSpringGreen2010"> <summary> mediumSpringGreen. <para>When the item is serialized out as xml, its value is "mediumSpringGreen".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumTurquoise2010"> <summary> mediumTurquoise. <para>When the item is serialized out as xml, its value is "mediumTurquoise".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.MediumVioletRed2010"> <summary> mediumVioletRed. <para>When the item is serialized out as xml, its value is "mediumVioletRed".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkGrey"> <summary> dkGrey. <para>When the item is serialized out as xml, its value is "dkGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DimGrey"> <summary> dimGrey. <para>When the item is serialized out as xml, its value is "dimGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.DarkSlateGrey"> <summary> dkSlateGrey. <para>When the item is serialized out as xml, its value is "dkSlateGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.Grey"> <summary> grey. <para>When the item is serialized out as xml, its value is "grey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightGrey"> <summary> ltGrey. <para>When the item is serialized out as xml, its value is "ltGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.LightSlateGrey"> <summary> ltSlateGrey. <para>When the item is serialized out as xml, its value is "ltSlateGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.PresetColorValues.SlateGrey"> <summary> slateGrey. <para>When the item is serialized out as xml, its value is "slateGrey".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Pictures.Picture"> <summary> <para>Picture.</para> <para>When the object is serialized out as xml, its qualified name is pic:pic.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualPictureProperties <pic:nvPicPr></description></item> <item><description>BlipFill <pic:blipFill></description></item> <item><description>ShapeProperties <pic:spPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Pictures.ShapeStyle <pic14:style></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.Pictures.OfficeArtExtensionList <pic14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.Picture.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.Picture.#ctor"> <summary> Initializes a new instance of the Picture class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.Picture.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.Picture.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.Picture.#ctor(System.String)"> <summary> Initializes a new instance of the Picture class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.Picture.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.Picture.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.Picture.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.Picture.NonVisualPictureProperties"> <summary> <para> Non-Visual Picture Properties.</para> <para>Represents the element tag in schema: pic:nvPicPr </para> </summary> <remark> xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.Picture.BlipFill"> <summary> <para> Picture Fill.</para> <para>Represents the element tag in schema: pic:blipFill </para> </summary> <remark> xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.Picture.ShapeProperties"> <summary> <para> Shape Properties.</para> <para>Represents the element tag in schema: pic:spPr </para> </summary> <remark> xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.Picture.ShapeStyle"> <summary> <para> ShapeStyle, this property is only available in Office2010.</para> <para>Represents the element tag in schema: pic14:style </para> </summary> <remark> xmlns:pic14 = http://schemas.microsoft.com/office/drawing/2010/picture </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.Picture.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList, this property is only available in Office2010.</para> <para>Represents the element tag in schema: pic14:extLst </para> </summary> <remark> xmlns:pic14 = http://schemas.microsoft.com/office/drawing/2010/picture </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties"> <summary> <para>Non-Visual Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is pic:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.Title"> <summary> <para> title, this property is only available in Office2010.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties"> <summary> <para>Non-Visual Picture Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is pic:cNvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.PictureLocks <a:picLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.PreferRelativeResize"> <summary> <para> Relative Resize Preferred.</para> <para>Represents the attribte in schema: preferRelativeResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.PictureLocks"> <summary> <para> Picture Locks.</para> <para>Represents the element tag in schema: a:picLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureDrawingProperties.NonVisualPicturePropertiesExtensionList"> <summary> <para> NonVisualPicturePropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties"> <summary> <para>Non-Visual Picture Properties.</para> <para>When the object is serialized out as xml, its qualified name is pic:nvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <pic:cNvPr></description></item> <item><description>NonVisualPictureDrawingProperties <pic:cNvPicPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.NonVisualDrawingProperties"> <summary> <para> Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: pic:cNvPr </para> </summary> <remark> xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.NonVisualPictureProperties.NonVisualPictureDrawingProperties"> <summary> <para> Non-Visual Picture Drawing Properties.</para> <para>Represents the element tag in schema: pic:cNvPicPr </para> </summary> <remark> xmlns:pic = http://schemas.openxmlformats.org/drawingml/2006/picture </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill"> <summary> <para>Picture Fill.</para> <para>When the object is serialized out as xml, its qualified name is pic:blipFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Blip <a:blip></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SourceRectangle <a:srcRect></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Tile <a:tile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Stretch <a:stretch></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.#ctor"> <summary> Initializes a new instance of the BlipFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.#ctor(System.String)"> <summary> Initializes a new instance of the BlipFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.Dpi"> <summary> <para> DPI Setting.</para> <para>Represents the attribte in schema: dpi </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.RotateWithShape"> <summary> <para> Rotate With Shape.</para> <para>Represents the attribte in schema: rotWithShape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.Blip"> <summary> <para> Blip.</para> <para>Represents the element tag in schema: a:blip </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.BlipFill.SourceRectangle"> <summary> <para> Source Rectangle.</para> <para>Represents the element tag in schema: a:srcRect </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties"> <summary> <para>Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is pic:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Pictures.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor"> <summary> <para>Two Cell Anchor Shape Size.</para> <para>When the object is serialized out as xml, its qualified name is xdr:twoCellAnchor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FromMarker <xdr:from></description></item> <item><description>ToMarker <xdr:to></description></item> <item><description>Shape <xdr:sp></description></item> <item><description>GroupShape <xdr:grpSp></description></item> <item><description>GraphicFrame <xdr:graphicFrame></description></item> <item><description>ConnectionShape <xdr:cxnSp></description></item> <item><description>Picture <xdr:pic></description></item> <item><description>ContentPart <xdr:contentPart></description></item> <item><description>ClientData <xdr:clientData></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.#ctor"> <summary> Initializes a new instance of the TwoCellAnchor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TwoCellAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TwoCellAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.#ctor(System.String)"> <summary> Initializes a new instance of the TwoCellAnchor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.EditAs"> <summary> <para> Positioning and Resizing Behaviors.</para> <para>Represents the attribte in schema: editAs </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.FromMarker"> <summary> <para> Starting Anchor Point.</para> <para>Represents the element tag in schema: xdr:from </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TwoCellAnchor.ToMarker"> <summary> <para> Ending Anchor Point.</para> <para>Represents the element tag in schema: xdr:to </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor"> <summary> <para>One Cell Anchor Shape Size.</para> <para>When the object is serialized out as xml, its qualified name is xdr:oneCellAnchor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FromMarker <xdr:from></description></item> <item><description>Extent <xdr:ext></description></item> <item><description>Shape <xdr:sp></description></item> <item><description>GroupShape <xdr:grpSp></description></item> <item><description>GraphicFrame <xdr:graphicFrame></description></item> <item><description>ConnectionShape <xdr:cxnSp></description></item> <item><description>Picture <xdr:pic></description></item> <item><description>ContentPart <xdr:contentPart></description></item> <item><description>ClientData <xdr:clientData></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.#ctor"> <summary> Initializes a new instance of the OneCellAnchor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OneCellAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OneCellAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.#ctor(System.String)"> <summary> Initializes a new instance of the OneCellAnchor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.FromMarker"> <summary> <para> FromMarker.</para> <para>Represents the element tag in schema: xdr:from </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.OneCellAnchor.Extent"> <summary> <para> Extent.</para> <para>Represents the element tag in schema: xdr:ext </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor"> <summary> <para>Absolute Anchor Shape Size.</para> <para>When the object is serialized out as xml, its qualified name is xdr:absoluteAnchor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Position <xdr:pos></description></item> <item><description>Extent <xdr:ext></description></item> <item><description>Shape <xdr:sp></description></item> <item><description>GroupShape <xdr:grpSp></description></item> <item><description>GraphicFrame <xdr:graphicFrame></description></item> <item><description>ConnectionShape <xdr:cxnSp></description></item> <item><description>Picture <xdr:pic></description></item> <item><description>ContentPart <xdr:contentPart></description></item> <item><description>ClientData <xdr:clientData></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.#ctor"> <summary> Initializes a new instance of the AbsoluteAnchor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AbsoluteAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AbsoluteAnchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.#ctor(System.String)"> <summary> Initializes a new instance of the AbsoluteAnchor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.Position"> <summary> <para> Position.</para> <para>Represents the element tag in schema: xdr:pos </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.AbsoluteAnchor.Extent"> <summary> <para> Shape Extent.</para> <para>Represents the element tag in schema: xdr:ext </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape"> <summary> <para>Shape.</para> <para>When the object is serialized out as xml, its qualified name is xdr:sp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualShapeProperties <xdr:nvSpPr></description></item> <item><description>ShapeProperties <xdr:spPr></description></item> <item><description>ShapeStyle <xdr:style></description></item> <item><description>TextBody <xdr:txBody></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.#ctor(System.String)"> <summary> Initializes a new instance of the Shape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.Macro"> <summary> <para> Reference to Custom Function.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.TextLink"> <summary> <para> Text Link.</para> <para>Represents the attribte in schema: textlink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.LockText"> <summary> <para> Lock Text Flag.</para> <para>Represents the attribte in schema: fLocksText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.Published"> <summary> <para> Publish to Server Flag.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.NonVisualShapeProperties"> <summary> <para> Non-Visual Properties for a Shape.</para> <para>Represents the element tag in schema: xdr:nvSpPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.ShapeProperties"> <summary> <para> Shape Properties.</para> <para>Represents the element tag in schema: xdr:spPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.ShapeStyle"> <summary> <para> ShapeStyle.</para> <para>Represents the element tag in schema: xdr:style </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Shape.TextBody"> <summary> <para> Shape Text Body.</para> <para>Represents the element tag in schema: xdr:txBody </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape"> <summary> <para>Group Shape.</para> <para>When the object is serialized out as xml, its qualified name is xdr:grpSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGroupShapeProperties <xdr:nvGrpSpPr></description></item> <item><description>GroupShapeProperties <xdr:grpSpPr></description></item> <item><description>Shape <xdr:sp></description></item> <item><description>GroupShape <xdr:grpSp></description></item> <item><description>GraphicFrame <xdr:graphicFrame></description></item> <item><description>ConnectionShape <xdr:cxnSp></description></item> <item><description>Picture <xdr:pic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Excel.Drawing.ContentPart <xdr14:contentPart></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.#ctor"> <summary> Initializes a new instance of the GroupShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.NonVisualGroupShapeProperties"> <summary> <para> Non-Visual Properties for a Group Shape.</para> <para>Represents the element tag in schema: xdr:nvGrpSpPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShape.GroupShapeProperties"> <summary> <para> Group Shape Properties.</para> <para>Represents the element tag in schema: xdr:grpSpPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame"> <summary> <para>Graphic Frame.</para> <para>When the object is serialized out as xml, its qualified name is xdr:graphicFrame.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGraphicFrameProperties <xdr:nvGraphicFramePr></description></item> <item><description>Transform <xdr:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Graphic <a:graphic></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.#ctor"> <summary> Initializes a new instance of the GraphicFrame class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.#ctor(System.String)"> <summary> Initializes a new instance of the GraphicFrame class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.Macro"> <summary> <para> Reference To Custom Function.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.Published"> <summary> <para> Publish to Server Flag.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.NonVisualGraphicFrameProperties"> <summary> <para> Non-Visual Properties for a Graphic Frame.</para> <para>Represents the element tag in schema: xdr:nvGraphicFramePr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.Transform"> <summary> <para> 2D Transform for Graphic Frames.</para> <para>Represents the element tag in schema: xdr:xfrm </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame.Graphic"> <summary> <para> Graphic.</para> <para>Represents the element tag in schema: a:graphic </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape"> <summary> <para>Connection Shape.</para> <para>When the object is serialized out as xml, its qualified name is xdr:cxnSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualConnectionShapeProperties <xdr:nvCxnSpPr></description></item> <item><description>ShapeProperties <xdr:spPr></description></item> <item><description>ShapeStyle <xdr:style></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.#ctor"> <summary> Initializes a new instance of the ConnectionShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConnectionShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConnectionShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.#ctor(System.String)"> <summary> Initializes a new instance of the ConnectionShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.Macro"> <summary> <para> Reference to Custom Function.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.Published"> <summary> <para> Publish to Server Flag.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.NonVisualConnectionShapeProperties"> <summary> <para> Non-Visual Properties for a Connection Shape.</para> <para>Represents the element tag in schema: xdr:nvCxnSpPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.ShapeProperties"> <summary> <para> Connector Shape Properties.</para> <para>Represents the element tag in schema: xdr:spPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ConnectionShape.ShapeStyle"> <summary> <para> ShapeStyle.</para> <para>Represents the element tag in schema: xdr:style </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture"> <summary> <para>Defines the Picture Class.</para> <para>When the object is serialized out as xml, its qualified name is xdr:pic.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualPictureProperties <xdr:nvPicPr></description></item> <item><description>BlipFill <xdr:blipFill></description></item> <item><description>ShapeProperties <xdr:spPr></description></item> <item><description>ShapeStyle <xdr:style></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.#ctor"> <summary> Initializes a new instance of the Picture class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.#ctor(System.String)"> <summary> Initializes a new instance of the Picture class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.Macro"> <summary> <para> Reference To Custom Function.</para> <para>Represents the attribte in schema: macro </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.Published"> <summary> <para> Publish to Server Flag.</para> <para>Represents the attribte in schema: fPublished </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.NonVisualPictureProperties"> <summary> <para> Non-Visual Properties for a Picture.</para> <para>Represents the element tag in schema: xdr:nvPicPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.BlipFill"> <summary> <para> Picture Fill.</para> <para>Represents the element tag in schema: xdr:blipFill </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.ShapeProperties"> <summary> <para> ShapeProperties.</para> <para>Represents the element tag in schema: xdr:spPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Picture.ShapeStyle"> <summary> <para> Shape Style.</para> <para>Represents the element tag in schema: xdr:style </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart"> <summary> <para>Defines the ContentPart Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is xdr:contentPart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartProperties <xdr14:nvContentPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Excel.Drawing.ExcelNonVisualContentPartShapeProperties <xdr14:nvContentPartPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Excel.Drawing.ApplicationNonVisualDrawingProperties <xdr14:nvPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Excel.Drawing.Transform2D <xdr14:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Excel.Drawing.OfficeArtExtensionList <xdr14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.#ctor"> <summary> Initializes a new instance of the ContentPart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.#ctor(System.String)"> <summary> Initializes a new instance of the ContentPart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.RelationshipId"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.BlackWhiteMode"> <summary> <para> bwMode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.ExcelNonVisualContentPartProperties"> <summary> <para> ExcelNonVisualContentPartProperties.</para> <para>Represents the element tag in schema: xdr14:nvContentPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.ExcelNonVisualContentPartShapeProperties"> <summary> <para> ExcelNonVisualContentPartShapeProperties.</para> <para>Represents the element tag in schema: xdr14:nvContentPartPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.ApplicationNonVisualDrawingProperties"> <summary> <para> ApplicationNonVisualDrawingProperties.</para> <para>Represents the element tag in schema: xdr14:nvPr </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: xdr14:xfrm </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ContentPart.OfficeArtExtensionList"> <summary> <para> OfficeArtExtensionList.</para> <para>Represents the element tag in schema: xdr14:extLst </para> </summary> <remark> xmlns:xdr14 = http://schemas.microsoft.com/office/excel/2010/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing"> <summary> <para>Worksheet Drawing. It is the root element of DrawingsPart.</para> <para>When the object is serialized out as xml, its qualified name is xdr:wsDr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TwoCellAnchor <xdr:twoCellAnchor></description></item> <item><description>OneCellAnchor <xdr:oneCellAnchor></description></item> <item><description>AbsoluteAnchor <xdr:absoluteAnchor></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.#ctor(DocumentFormat.OpenXml.Packaging.DrawingsPart)"> <summary> WorksheetDrawing constructor </summary> <param name="ownerPart">The owner part of the WorksheetDrawing</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.Load(DocumentFormat.OpenXml.Packaging.DrawingsPart)"> <summary> Loads the DOM from the DrawingsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WorksheetDrawing class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WorksheetDrawing class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.#ctor(System.String)"> <summary> Initializes a new instance of the WorksheetDrawing class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.#ctor"> <summary> Initializes a new instance of the WorksheetDrawing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.Save(DocumentFormat.OpenXml.Packaging.DrawingsPart)"> <summary> Saves the DOM into the DrawingsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.WorksheetDrawing.DrawingsPart"> <summary> Gets the DrawingsPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties"> <summary> <para>Non-Visual Properties for a Shape.</para> <para>When the object is serialized out as xml, its qualified name is xdr:nvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <xdr:cNvPr></description></item> <item><description>NonVisualShapeDrawingProperties <xdr:cNvSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.NonVisualDrawingProperties"> <summary> <para> Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: xdr:cNvPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeProperties.NonVisualShapeDrawingProperties"> <summary> <para> Connection Non-Visual Shape Properties.</para> <para>Represents the element tag in schema: xdr:cNvSpPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties"> <summary> <para>Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is xdr:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle"> <summary> <para>Defines the ShapeStyle Class.</para> <para>When the object is serialized out as xml, its qualified name is xdr:style.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.LineReference <a:lnRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FillReference <a:fillRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectReference <a:effectRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FontReference <a:fontRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.#ctor"> <summary> Initializes a new instance of the ShapeStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.LineReference"> <summary> <para> LineReference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.FillReference"> <summary> <para> FillReference.</para> <para>Represents the element tag in schema: a:fillRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.EffectReference"> <summary> <para> EffectReference.</para> <para>Represents the element tag in schema: a:effectRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ShapeStyle.FontReference"> <summary> <para> Font Reference.</para> <para>Represents the element tag in schema: a:fontRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody"> <summary> <para>Shape Text Body.</para> <para>When the object is serialized out as xml, its qualified name is xdr:txBody.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BodyProperties <a:bodyPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ListStyle <a:lstStyle></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Paragraph <a:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.#ctor"> <summary> Initializes a new instance of the TextBody class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.#ctor(System.String)"> <summary> Initializes a new instance of the TextBody class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.BodyProperties"> <summary> <para> Body Properties.</para> <para>Represents the element tag in schema: a:bodyPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.TextBody.ListStyle"> <summary> <para> Text List Styles.</para> <para>Represents the element tag in schema: a:lstStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties"> <summary> <para>Non-Visual Properties for a Connection Shape.</para> <para>When the object is serialized out as xml, its qualified name is xdr:nvCxnSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <xdr:cNvPr></description></item> <item><description>NonVisualConnectorShapeDrawingProperties <xdr:cNvCxnSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.NonVisualDrawingProperties"> <summary> <para> Connection Non-Visual Properties.</para> <para>Represents the element tag in schema: xdr:cNvPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectionShapeProperties.NonVisualConnectorShapeDrawingProperties"> <summary> <para> Non-Visual Connector Shape Drawing Properties.</para> <para>Represents the element tag in schema: xdr:cNvCxnSpPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties"> <summary> <para>Non-Visual Properties for a Picture.</para> <para>When the object is serialized out as xml, its qualified name is xdr:nvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <xdr:cNvPr></description></item> <item><description>NonVisualPictureDrawingProperties <xdr:cNvPicPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: xdr:cNvPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureProperties.NonVisualPictureDrawingProperties"> <summary> <para> Non-Visual Picture Drawing Properties.</para> <para>Represents the element tag in schema: xdr:cNvPicPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill"> <summary> <para>Picture Fill.</para> <para>When the object is serialized out as xml, its qualified name is xdr:blipFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Blip <a:blip></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SourceRectangle <a:srcRect></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Tile <a:tile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Stretch <a:stretch></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.#ctor"> <summary> Initializes a new instance of the BlipFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.#ctor(System.String)"> <summary> Initializes a new instance of the BlipFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.RotateWithShape"> <summary> <para> Rotate With Shape.</para> <para>Represents the attribte in schema: rotWithShape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.Blip"> <summary> <para> Blip.</para> <para>Represents the element tag in schema: a:blip </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.BlipFill.SourceRectangle"> <summary> <para> Source Rectangle.</para> <para>Represents the element tag in schema: a:srcRect </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties"> <summary> <para>Non-Visual Properties for a Graphic Frame.</para> <para>When the object is serialized out as xml, its qualified name is xdr:nvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <xdr:cNvPr></description></item> <item><description>NonVisualGraphicFrameDrawingProperties <xdr:cNvGraphicFramePr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.NonVisualDrawingProperties"> <summary> <para> Connection Non-Visual Properties.</para> <para>Represents the element tag in schema: xdr:cNvPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties.NonVisualGraphicFrameDrawingProperties"> <summary> <para> Non-Visual Graphic Frame Drawing Properties.</para> <para>Represents the element tag in schema: xdr:cNvGraphicFramePr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform"> <summary> <para>2D Transform for Graphic Frames.</para> <para>When the object is serialized out as xml, its qualified name is xdr:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.#ctor"> <summary> Initializes a new instance of the Transform class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.#ctor(System.String)"> <summary> Initializes a new instance of the Transform class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Transform.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnId"> <summary> <para>Column).</para> <para>When the object is serialized out as xml, its qualified name is xdr:col.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnId.#ctor"> <summary> Initializes a new instance of the ColumnId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnId.#ctor(System.String)"> <summary> Initializes a new instance of the ColumnId class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnOffset"> <summary> <para>Column Offset.</para> <para>When the object is serialized out as xml, its qualified name is xdr:colOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnOffset.#ctor"> <summary> Initializes a new instance of the ColumnOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnOffset.#ctor(System.String)"> <summary> Initializes a new instance of the ColumnOffset class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ColumnOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowOffset"> <summary> <para>Row Offset.</para> <para>When the object is serialized out as xml, its qualified name is xdr:rowOff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowOffset.#ctor"> <summary> Initializes a new instance of the RowOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowOffset.#ctor(System.String)"> <summary> Initializes a new instance of the RowOffset class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowId"> <summary> <para>Row.</para> <para>When the object is serialized out as xml, its qualified name is xdr:row.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowId.#ctor"> <summary> Initializes a new instance of the RowId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowId.#ctor(System.String)"> <summary> Initializes a new instance of the RowId class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.RowId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker"> <summary> <para>Starting Anchor Point.</para> <para>When the object is serialized out as xml, its qualified name is xdr:from.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColumnId <xdr:col></description></item> <item><description>ColumnOffset <xdr:colOff></description></item> <item><description>RowId <xdr:row></description></item> <item><description>RowOffset <xdr:rowOff></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType"> <summary> Defines the MarkerType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColumnId <xdr:col></description></item> <item><description>ColumnOffset <xdr:colOff></description></item> <item><description>RowId <xdr:row></description></item> <item><description>RowOffset <xdr:rowOff></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType.#ctor"> <summary> Initializes a new instance of the MarkerType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MarkerType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MarkerType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType.#ctor(System.String)"> <summary> Initializes a new instance of the MarkerType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType.ColumnId"> <summary> <para> Column).</para> <para>Represents the element tag in schema: xdr:col </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType.ColumnOffset"> <summary> <para> Column Offset.</para> <para>Represents the element tag in schema: xdr:colOff </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType.RowId"> <summary> <para> Row.</para> <para>Represents the element tag in schema: xdr:row </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.MarkerType.RowOffset"> <summary> <para> Row Offset.</para> <para>Represents the element tag in schema: xdr:rowOff </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker.#ctor"> <summary> Initializes a new instance of the FromMarker class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FromMarker class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FromMarker class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker.#ctor(System.String)"> <summary> Initializes a new instance of the FromMarker class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker"> <summary> <para>Ending Anchor Point.</para> <para>When the object is serialized out as xml, its qualified name is xdr:to.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ColumnId <xdr:col></description></item> <item><description>ColumnOffset <xdr:colOff></description></item> <item><description>RowId <xdr:row></description></item> <item><description>RowOffset <xdr:rowOff></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker.#ctor"> <summary> Initializes a new instance of the ToMarker class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ToMarker class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ToMarker class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker.#ctor(System.String)"> <summary> Initializes a new instance of the ToMarker class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.ClientData"> <summary> <para>Client Data.</para> <para>When the object is serialized out as xml, its qualified name is xdr:clientData.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ClientData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ClientData.#ctor"> <summary> Initializes a new instance of the ClientData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.ClientData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ClientData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ClientData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ClientData.LockWithSheet"> <summary> <para> Locks With Sheet Flag.</para> <para>Represents the attribte in schema: fLocksWithSheet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.ClientData.PrintWithSheet"> <summary> <para> Prints With Sheet Flag.</para> <para>Represents the attribte in schema: fPrintsWithSheet </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.Extent"> <summary> <para>Defines the Extent Class.</para> <para>When the object is serialized out as xml, its qualified name is xdr:ext.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Extent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Extent.#ctor"> <summary> Initializes a new instance of the Extent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Extent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Extent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Extent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Extent.Cx"> <summary> <para> Extent Length.</para> <para>Represents the attribte in schema: cx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Extent.Cy"> <summary> <para> Extent Width.</para> <para>Represents the attribte in schema: cy </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.Position"> <summary> <para>Position.</para> <para>When the object is serialized out as xml, its qualified name is xdr:pos.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Position.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Position.#ctor"> <summary> Initializes a new instance of the Position class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.Position.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Position.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Position.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Position.X"> <summary> <para> X-Axis Coordinate.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.Position.Y"> <summary> <para> Y-Axis Coordinate.</para> <para>Represents the attribte in schema: y </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties"> <summary> <para>Non-Visual Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is xdr:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties"> <summary> <para>Connection Non-Visual Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is xdr:cNvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ShapeLocks <a:spLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.TextBox"> <summary> <para> Text Box.</para> <para>Represents the attribte in schema: txBox </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.ShapeLocks"> <summary> <para> Shape Locks.</para> <para>Represents the element tag in schema: a:spLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties"> <summary> <para>Non-Visual Connector Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is xdr:cNvCxnSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks <a:cxnSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.StartConnection <a:stCxn></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EndConnection <a:endCxn></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.ConnectionShapeLocks"> <summary> <para> Connection Shape Locks.</para> <para>Represents the element tag in schema: a:cxnSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.StartConnection"> <summary> <para> Connection Start.</para> <para>Represents the element tag in schema: a:stCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.EndConnection"> <summary> <para> Connection End.</para> <para>Represents the element tag in schema: a:endCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualConnectorShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties"> <summary> <para>Non-Visual Picture Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is xdr:cNvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.PictureLocks <a:picLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.PreferRelativeResize"> <summary> <para> Relative Resize Preferred.</para> <para>Represents the attribte in schema: preferRelativeResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.PictureLocks"> <summary> <para> Picture Locks.</para> <para>Represents the element tag in schema: a:picLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualPictureDrawingProperties.NonVisualPicturePropertiesExtensionList"> <summary> <para> NonVisualPicturePropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties"> <summary> <para>Non-Visual Graphic Frame Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is xdr:cNvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GraphicFrameLocks <a:graphicFrameLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.GraphicFrameLocks"> <summary> <para> Graphic Frame Locks.</para> <para>Represents the element tag in schema: a:graphicFrameLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties"> <summary> <para>Non-Visual Group Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is xdr:cNvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GroupShapeLocks <a:grpSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.GroupShapeLocks"> <summary> <para> Group Shape Locks.</para> <para>Represents the element tag in schema: a:grpSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties"> <summary> <para>Non-Visual Properties for a Group Shape.</para> <para>When the object is serialized out as xml, its qualified name is xdr:nvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <xdr:cNvPr></description></item> <item><description>NonVisualGroupShapeDrawingProperties <xdr:cNvGrpSpPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.NonVisualDrawingProperties"> <summary> <para> Connection Non-Visual Properties.</para> <para>Represents the element tag in schema: xdr:cNvPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGroupShapeProperties.NonVisualGroupShapeDrawingProperties"> <summary> <para> Non-Visual Group Shape Drawing Properties.</para> <para>Represents the element tag in schema: xdr:cNvGrpSpPr </para> </summary> <remark> xmlns:xdr = http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties"> <summary> <para>Group Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is xdr:grpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.TransformGroup <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.#ctor"> <summary> Initializes a new instance of the GroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Spreadsheet.GroupShapeProperties.TransformGroup"> <summary> <para> 2D Transform for Grouped Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Spreadsheet.EditAsValues"> <summary> Resizing Behaviors </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Spreadsheet.EditAsValues.TwoCell"> <summary> Move and Resize With Anchor Cells. <para>When the item is serialized out as xml, its value is "twoCell".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Spreadsheet.EditAsValues.OneCell"> <summary> Move With Cells but Do Not Resize. <para>When the item is serialized out as xml, its value is "oneCell".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Spreadsheet.EditAsValues.Absolute"> <summary> Do Not Move or Resize With Underlying Rows/Columns. <para>When the item is serialized out as xml, its value is "absolute".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapNone"> <summary> <para>No Text Wrapping.</para> <para>When the object is serialized out as xml, its qualified name is wp:wrapNone.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapNone.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapNone.#ctor"> <summary> Initializes a new instance of the WrapNone class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapNone.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapNone.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapNone.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare"> <summary> <para>Square Wrapping.</para> <para>When the object is serialized out as xml, its qualified name is wp:wrapSquare.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectExtent <wp:effectExtent></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.#ctor"> <summary> Initializes a new instance of the WrapSquare class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WrapSquare class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WrapSquare class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.#ctor(System.String)"> <summary> Initializes a new instance of the WrapSquare class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.WrapText"> <summary> <para> Text Wrapping Location.</para> <para>Represents the attribte in schema: wrapText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.DistanceFromTop"> <summary> <para> Distance From Text (Top).</para> <para>Represents the attribte in schema: distT </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.DistanceFromBottom"> <summary> <para> Distance From Text on Bottom Edge.</para> <para>Represents the attribte in schema: distB </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.DistanceFromLeft"> <summary> <para> Distance From Text on Left Edge.</para> <para>Represents the attribte in schema: distL </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.DistanceFromRight"> <summary> <para> Distance From Text on Right Edge.</para> <para>Represents the attribte in schema: distR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapSquare.EffectExtent"> <summary> <para> Object Extents Including Effects.</para> <para>Represents the element tag in schema: wp:effectExtent </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight"> <summary> <para>Tight Wrapping.</para> <para>When the object is serialized out as xml, its qualified name is wp:wrapTight.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>WrapPolygon <wp:wrapPolygon></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.#ctor"> <summary> Initializes a new instance of the WrapTight class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WrapTight class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WrapTight class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.#ctor(System.String)"> <summary> Initializes a new instance of the WrapTight class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.WrapText"> <summary> <para> Text Wrapping Location.</para> <para>Represents the attribte in schema: wrapText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.DistanceFromLeft"> <summary> <para> Distance From Test on Left Edge.</para> <para>Represents the attribte in schema: distL </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.DistanceFromRight"> <summary> <para> Distance From Text on Right Edge.</para> <para>Represents the attribte in schema: distR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTight.WrapPolygon"> <summary> <para> Tight Wrapping Extents Polygon.</para> <para>Represents the element tag in schema: wp:wrapPolygon </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough"> <summary> <para>Through Wrapping.</para> <para>When the object is serialized out as xml, its qualified name is wp:wrapThrough.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>WrapPolygon <wp:wrapPolygon></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.#ctor"> <summary> Initializes a new instance of the WrapThrough class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WrapThrough class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WrapThrough class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.#ctor(System.String)"> <summary> Initializes a new instance of the WrapThrough class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.WrapText"> <summary> <para> Text Wrapping Location.</para> <para>Represents the attribte in schema: wrapText </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.DistanceFromLeft"> <summary> <para> Distance From Text on Left Edge.</para> <para>Represents the attribte in schema: distL </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.DistanceFromRight"> <summary> <para> Distance From Text on Right Edge.</para> <para>Represents the attribte in schema: distR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapThrough.WrapPolygon"> <summary> <para> Wrapping Polygon.</para> <para>Represents the element tag in schema: wp:wrapPolygon </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom"> <summary> <para>Top and Bottom Wrapping.</para> <para>When the object is serialized out as xml, its qualified name is wp:wrapTopAndBottom.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EffectExtent <wp:effectExtent></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.#ctor"> <summary> Initializes a new instance of the WrapTopBottom class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WrapTopBottom class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WrapTopBottom class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.#ctor(System.String)"> <summary> Initializes a new instance of the WrapTopBottom class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.DistanceFromTop"> <summary> <para> Distance From Text on Top Edge.</para> <para>Represents the attribte in schema: distT </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.DistanceFromBottom"> <summary> <para> Distance From Text on Bottom Edge.</para> <para>Represents the attribte in schema: distB </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTopBottom.EffectExtent"> <summary> <para> Wrapping Boundaries.</para> <para>Represents the element tag in schema: wp:effectExtent </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline"> <summary> <para>Inline DrawingML Object.</para> <para>When the object is serialized out as xml, its qualified name is wp:inline.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Extent <wp:extent></description></item> <item><description>EffectExtent <wp:effectExtent></description></item> <item><description>DocProperties <wp:docPr></description></item> <item><description>NonVisualGraphicFrameDrawingProperties <wp:cNvGraphicFramePr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Graphic <a:graphic></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.#ctor"> <summary> Initializes a new instance of the Inline class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Inline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Inline class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.#ctor(System.String)"> <summary> Initializes a new instance of the Inline class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.DistanceFromTop"> <summary> <para> Distance From Text on Top Edge.</para> <para>Represents the attribte in schema: distT </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.DistanceFromBottom"> <summary> <para> Distance From Text on Bottom Edge.</para> <para>Represents the attribte in schema: distB </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.DistanceFromLeft"> <summary> <para> Distance From Text on Left Edge.</para> <para>Represents the attribte in schema: distL </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.DistanceFromRight"> <summary> <para> Distance From Text on Right Edge.</para> <para>Represents the attribte in schema: distR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.AnchorId"> <summary> <para> anchorId, this property is only available in Office2010.</para> <para>Represents the attribte in schema: wp14:anchorId </para> </summary> <remark> xmlns:wp14=http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.EditId"> <summary> <para> editId, this property is only available in Office2010.</para> <para>Represents the attribte in schema: wp14:editId </para> </summary> <remark> xmlns:wp14=http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.Extent"> <summary> <para> Drawing Object Size.</para> <para>Represents the element tag in schema: wp:extent </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.EffectExtent"> <summary> <para> Inline Wrapping Extent.</para> <para>Represents the element tag in schema: wp:effectExtent </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.DocProperties"> <summary> <para> Drawing Object Non-Visual Properties.</para> <para>Represents the element tag in schema: wp:docPr </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.NonVisualGraphicFrameDrawingProperties"> <summary> <para> Common DrawingML Non-Visual Properties.</para> <para>Represents the element tag in schema: wp:cNvGraphicFramePr </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Inline.Graphic"> <summary> <para> Graphic.</para> <para>Represents the element tag in schema: a:graphic </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor"> <summary> <para>Anchor for Floating DrawingML Object.</para> <para>When the object is serialized out as xml, its qualified name is wp:anchor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SimplePosition <wp:simplePos></description></item> <item><description>HorizontalPosition <wp:positionH></description></item> <item><description>VerticalPosition <wp:positionV></description></item> <item><description>Extent <wp:extent></description></item> <item><description>EffectExtent <wp:effectExtent></description></item> <item><description>WrapNone <wp:wrapNone></description></item> <item><description>WrapSquare <wp:wrapSquare></description></item> <item><description>WrapTight <wp:wrapTight></description></item> <item><description>WrapThrough <wp:wrapThrough></description></item> <item><description>WrapTopBottom <wp:wrapTopAndBottom></description></item> <item><description>DocProperties <wp:docPr></description></item> <item><description>NonVisualGraphicFrameDrawingProperties <wp:cNvGraphicFramePr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Graphic <a:graphic></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeWidth <wp14:sizeRelH></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.Drawing.RelativeHeight <wp14:sizeRelV></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.#ctor"> <summary> Initializes a new instance of the Anchor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Anchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Anchor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.#ctor(System.String)"> <summary> Initializes a new instance of the Anchor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.DistanceFromTop"> <summary> <para> Distance From Text on Top Edge.</para> <para>Represents the attribte in schema: distT </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.DistanceFromBottom"> <summary> <para> Distance From Text on Bottom Edge.</para> <para>Represents the attribte in schema: distB </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.DistanceFromLeft"> <summary> <para> Distance From Text on Left Edge.</para> <para>Represents the attribte in schema: distL </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.DistanceFromRight"> <summary> <para> Distance From Text on Right Edge.</para> <para>Represents the attribte in schema: distR </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.SimplePos"> <summary> <para> Page Positioning.</para> <para>Represents the attribte in schema: simplePos </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.RelativeHeight"> <summary> <para> Relative Z-Ordering Position.</para> <para>Represents the attribte in schema: relativeHeight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.BehindDoc"> <summary> <para> Display Behind Document Text.</para> <para>Represents the attribte in schema: behindDoc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.Locked"> <summary> <para> Lock Anchor.</para> <para>Represents the attribte in schema: locked </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.LayoutInCell"> <summary> <para> Layout In Table Cell.</para> <para>Represents the attribte in schema: layoutInCell </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.AllowOverlap"> <summary> <para> Allow Objects to Overlap.</para> <para>Represents the attribte in schema: allowOverlap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.EditId"> <summary> <para> editId, this property is only available in Office2010.</para> <para>Represents the attribte in schema: wp14:editId </para> </summary> <remark> xmlns:wp14=http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.AnchorId"> <summary> <para> anchorId, this property is only available in Office2010.</para> <para>Represents the attribte in schema: wp14:anchorId </para> </summary> <remark> xmlns:wp14=http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.SimplePosition"> <summary> <para> Simple Positioning Coordinates.</para> <para>Represents the element tag in schema: wp:simplePos </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.HorizontalPosition"> <summary> <para> Horizontal Positioning.</para> <para>Represents the element tag in schema: wp:positionH </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.VerticalPosition"> <summary> <para> Vertical Positioning.</para> <para>Represents the element tag in schema: wp:positionV </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.Extent"> <summary> <para> Inline Drawing Object Extents.</para> <para>Represents the element tag in schema: wp:extent </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Anchor.EffectExtent"> <summary> <para> EffectExtent.</para> <para>Represents the element tag in schema: wp:effectExtent </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.StartPoint"> <summary> <para>Wrapping Polygon Start.</para> <para>When the object is serialized out as xml, its qualified name is wp:start.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.Point2DType"> <summary> Defines the Point2DType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Point2DType.#ctor"> <summary> Initializes a new instance of the Point2DType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Point2DType.X"> <summary> <para> X-Axis Coordinate.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Point2DType.Y"> <summary> <para> Y-Axis Coordinate.</para> <para>Represents the attribte in schema: y </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.StartPoint.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.StartPoint.#ctor"> <summary> Initializes a new instance of the StartPoint class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.StartPoint.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.StartPoint.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.StartPoint.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.LineTo"> <summary> <para>Wrapping Polygon Line End Position.</para> <para>When the object is serialized out as xml, its qualified name is wp:lineTo.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.LineTo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.LineTo.#ctor"> <summary> Initializes a new instance of the LineTo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.LineTo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.LineTo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.LineTo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.SimplePosition"> <summary> <para>Simple Positioning Coordinates.</para> <para>When the object is serialized out as xml, its qualified name is wp:simplePos.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.SimplePosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.SimplePosition.#ctor"> <summary> Initializes a new instance of the SimplePosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.SimplePosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.SimplePosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.SimplePosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent"> <summary> <para>Object Extents Including Effects.</para> <para>When the object is serialized out as xml, its qualified name is wp:effectExtent.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.#ctor"> <summary> Initializes a new instance of the EffectExtent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.LeftEdge"> <summary> <para> Additional Extent on Left Edge.</para> <para>Represents the attribte in schema: l </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.TopEdge"> <summary> <para> Additional Extent on Top Edge.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.RightEdge"> <summary> <para> Additional Extent on Right Edge.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.EffectExtent.BottomEdge"> <summary> <para> Additional Extent on Bottom Edge.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon"> <summary> <para>Tight Wrapping Extents Polygon.</para> <para>When the object is serialized out as xml, its qualified name is wp:wrapPolygon.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StartPoint <wp:start></description></item> <item><description>LineTo <wp:lineTo></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.#ctor"> <summary> Initializes a new instance of the WrapPolygon class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WrapPolygon class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WrapPolygon class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.#ctor(System.String)"> <summary> Initializes a new instance of the WrapPolygon class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.Edited"> <summary> <para> Wrapping Points Modified.</para> <para>Represents the attribte in schema: edited </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapPolygon.StartPoint"> <summary> <para> Wrapping Polygon Start.</para> <para>Represents the element tag in schema: wp:start </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition"> <summary> <para>Horizontal Positioning.</para> <para>When the object is serialized out as xml, its qualified name is wp:positionH.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HorizontalAlignment <wp:align></description></item> <item><description>PositionOffset <wp:posOffset></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionHeightOffset <wp14:pctPosHOffset></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.#ctor"> <summary> Initializes a new instance of the HorizontalPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HorizontalPosition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HorizontalPosition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.#ctor(System.String)"> <summary> Initializes a new instance of the HorizontalPosition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.RelativeFrom"> <summary> <para> Horizontal Position Relative Base.</para> <para>Represents the attribte in schema: relativeFrom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.HorizontalAlignment"> <summary> <para> Relative Horizontal Alignment.</para> <para>Represents the element tag in schema: wp:align </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.PositionOffset"> <summary> <para> Absolute Position Offset.</para> <para>Represents the element tag in schema: wp:posOffset </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalPosition.PercentagePositionHeightOffset"> <summary> <para> PercentagePositionHeightOffset, this property is only available in Office2010.</para> <para>Represents the element tag in schema: wp14:pctPosHOffset </para> </summary> <remark> xmlns:wp14 = http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition"> <summary> <para>Vertical Positioning.</para> <para>When the object is serialized out as xml, its qualified name is wp:positionV.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VerticalAlignment <wp:align></description></item> <item><description>PositionOffset <wp:posOffset></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.Drawing.PercentagePositionVerticalOffset <wp14:pctPosVOffset></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.#ctor"> <summary> Initializes a new instance of the VerticalPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VerticalPosition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VerticalPosition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.#ctor(System.String)"> <summary> Initializes a new instance of the VerticalPosition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.RelativeFrom"> <summary> <para> Vertical Position Relative Base.</para> <para>Represents the attribte in schema: relativeFrom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.VerticalAlignment"> <summary> <para> Relative Vertical Alignment.</para> <para>Represents the element tag in schema: wp:align </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.PositionOffset"> <summary> <para> PositionOffset.</para> <para>Represents the element tag in schema: wp:posOffset </para> </summary> <remark> xmlns:wp = http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalPosition.PercentagePositionVerticalOffset"> <summary> <para> PercentagePositionVerticalOffset, this property is only available in Office2010.</para> <para>Represents the element tag in schema: wp14:pctPosVOffset </para> </summary> <remark> xmlns:wp14 = http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.Extent"> <summary> <para>Inline Drawing Object Extents.</para> <para>When the object is serialized out as xml, its qualified name is wp:extent.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Extent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Extent.#ctor"> <summary> Initializes a new instance of the Extent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.Extent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Extent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Extent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Extent.Cx"> <summary> <para> Extent Length.</para> <para>Represents the attribte in schema: cx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.Extent.Cy"> <summary> <para> Extent Width.</para> <para>Represents the attribte in schema: cy </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties"> <summary> <para>Drawing Object Non-Visual Properties.</para> <para>When the object is serialized out as xml, its qualified name is wp:docPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.#ctor"> <summary> Initializes a new instance of the DocProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DocProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DocProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.#ctor(System.String)"> <summary> Initializes a new instance of the DocProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.Title"> <summary> <para> title, this property is only available in Office2010.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.DocProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties"> <summary> <para>Defines the NonVisualGraphicFrameDrawingProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is wp:cNvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GraphicFrameLocks <a:graphicFrameLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.GraphicFrameLocks"> <summary> <para> Graphic Frame Locks.</para> <para>Represents the element tag in schema: a:graphicFrameLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.NonVisualGraphicFrameDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignment"> <summary> <para>Relative Vertical Alignment.</para> <para>When the object is serialized out as xml, its qualified name is wp:align.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignment.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignment.#ctor"> <summary> Initializes a new instance of the VerticalAlignment class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignment.#ctor(System.String)"> <summary> Initializes a new instance of the VerticalAlignment class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignment.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignment.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignment.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.PositionOffset"> <summary> <para>Defines the PositionOffset Class.</para> <para>When the object is serialized out as xml, its qualified name is wp:posOffset.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.PositionOffset.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.PositionOffset.#ctor"> <summary> Initializes a new instance of the PositionOffset class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.PositionOffset.#ctor(System.String)"> <summary> Initializes a new instance of the PositionOffset class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.PositionOffset.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.PositionOffset.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.PositionOffset.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignment"> <summary> <para>Relative Horizontal Alignment.</para> <para>When the object is serialized out as xml, its qualified name is wp:align.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignment.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignment.#ctor"> <summary> Initializes a new instance of the HorizontalAlignment class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignment.#ctor(System.String)"> <summary> Initializes a new instance of the HorizontalAlignment class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignment.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignment.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignment.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTextValues"> <summary> Text Wrapping Location </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTextValues.BothSides"> <summary> Both Sides. <para>When the item is serialized out as xml, its value is "bothSides".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTextValues.Left"> <summary> Left Side Only. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTextValues.Right"> <summary> Right Side Only. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.WrapTextValues.Largest"> <summary> Largest Side Only. <para>When the item is serialized out as xml, its value is "largest".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignmentValues"> <summary> Relative Horizontal Alignment Positions </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignmentValues.Left"> <summary> Left Alignment. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignmentValues.Right"> <summary> Right Alignment. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignmentValues.Center"> <summary> Center Alignment. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignmentValues.Inside"> <summary> Inside. <para>When the item is serialized out as xml, its value is "inside".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalAlignmentValues.Outside"> <summary> Outside. <para>When the item is serialized out as xml, its value is "outside".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues"> <summary> Horizontal Relative Positioning </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues.Margin"> <summary> Page Margin. <para>When the item is serialized out as xml, its value is "margin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues.Page"> <summary> Page Edge. <para>When the item is serialized out as xml, its value is "page".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues.Column"> <summary> Column. <para>When the item is serialized out as xml, its value is "column".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues.Character"> <summary> Character. <para>When the item is serialized out as xml, its value is "character".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues.LeftMargin"> <summary> Left Margin. <para>When the item is serialized out as xml, its value is "leftMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues.RightMargin"> <summary> Right Margin. <para>When the item is serialized out as xml, its value is "rightMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues.InsideMargin"> <summary> Inside Margin. <para>When the item is serialized out as xml, its value is "insideMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.HorizontalRelativePositionValues.OutsideMargin"> <summary> Outside Margin. <para>When the item is serialized out as xml, its value is "outsideMargin".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignmentValues"> <summary> Vertical Alignment Definition </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignmentValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignmentValues.Bottom"> <summary> Bottom. <para>When the item is serialized out as xml, its value is "bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignmentValues.Center"> <summary> Center Alignment. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignmentValues.Inside"> <summary> Inside. <para>When the item is serialized out as xml, its value is "inside".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalAlignmentValues.Outside"> <summary> Outside. <para>When the item is serialized out as xml, its value is "outside".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues"> <summary> Vertical Relative Positioning </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues.Margin"> <summary> Page Margin. <para>When the item is serialized out as xml, its value is "margin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues.Page"> <summary> Page Edge. <para>When the item is serialized out as xml, its value is "page".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues.Paragraph"> <summary> Paragraph. <para>When the item is serialized out as xml, its value is "paragraph".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues.Line"> <summary> Line. <para>When the item is serialized out as xml, its value is "line".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues.TopMargin"> <summary> Top Margin. <para>When the item is serialized out as xml, its value is "topMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues.BottomMargin"> <summary> Bottom Margin. <para>When the item is serialized out as xml, its value is "bottomMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues.InsideMargin"> <summary> Inside Margin. <para>When the item is serialized out as xml, its value is "insideMargin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Drawing.Wordprocessing.VerticalRelativePositionValues.OutsideMargin"> <summary> Outside Margin. <para>When the item is serialized out as xml, its value is "outsideMargin".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Sources"> <summary> <para>Sources.</para> <para>When the object is serialized out as xml, its qualified name is b:Sources.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Source <b:Source></description></item> </list> </remarks> <summary> Defines Sources. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.#ctor"> <summary> Initializes a new instance of the Sources class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Sources class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Sources class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.#ctor(System.String)"> <summary> Initializes a new instance of the Sources class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.#ctor(DocumentFormat.OpenXml.Packaging.CustomXmlPart)"> <summary> Sources constructor. </summary> <param name="ownerPart">The owner part of the Sources.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.Load(DocumentFormat.OpenXml.Packaging.CustomXmlPart)"> <summary> Loads the DOM from an OpenXML part. </summary> <param name="openXmlPart">The part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Sources.Save(DocumentFormat.OpenXml.Packaging.CustomXmlPart)"> <summary> Saves the DOM into the OpenXML part. </summary> <param name="openXmlPart">The part to be saved to.</param> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Sources.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Sources.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Sources.SelectedStyle"> <summary> <para> Selected Style.</para> <para>Represents the attribte in schema: SelectedStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Sources.StyleName"> <summary> <para> Documentation Style Name.</para> <para>Represents the attribte in schema: StyleName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Sources.Uri"> <summary> <para> Uniform Resource Identifier.</para> <para>Represents the attribte in schema: URI </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Person"> <summary> <para>Person.</para> <para>When the object is serialized out as xml, its qualified name is b:Person.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Last <b:Last></description></item> <item><description>First <b:First></description></item> <item><description>Middle <b:Middle></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Person.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Person.#ctor"> <summary> Initializes a new instance of the Person class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Person.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Person class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Person.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Person class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Person.#ctor(System.String)"> <summary> Initializes a new instance of the Person class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Person.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Person.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Person.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Last"> <summary> <para>Person's Last, or Family, Name.</para> <para>When the object is serialized out as xml, its qualified name is b:Last.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Last.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Last.#ctor"> <summary> Initializes a new instance of the Last class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Last.#ctor(System.String)"> <summary> Initializes a new instance of the Last class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Last.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Last.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Last.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.First"> <summary> <para>Person's First, or Given, Name.</para> <para>When the object is serialized out as xml, its qualified name is b:First.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.First.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.First.#ctor"> <summary> Initializes a new instance of the First class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.First.#ctor(System.String)"> <summary> Initializes a new instance of the First class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.First.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.First.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.First.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Middle"> <summary> <para>Person's Middle, or Other, Name.</para> <para>When the object is serialized out as xml, its qualified name is b:Middle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Middle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Middle.#ctor"> <summary> Initializes a new instance of the Middle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Middle.#ctor(System.String)"> <summary> Initializes a new instance of the Middle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Middle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Middle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Middle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Corporate"> <summary> <para>Corporate Author.</para> <para>When the object is serialized out as xml, its qualified name is b:Corporate.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Corporate.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Corporate.#ctor"> <summary> Initializes a new instance of the Corporate class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Corporate.#ctor(System.String)"> <summary> Initializes a new instance of the Corporate class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Corporate.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Corporate.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Corporate.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.AbbreviatedCaseNumber"> <summary> <para>Abbreviated Case Number.</para> <para>When the object is serialized out as xml, its qualified name is b:AbbreviatedCaseNumber.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AbbreviatedCaseNumber.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AbbreviatedCaseNumber.#ctor"> <summary> Initializes a new instance of the AbbreviatedCaseNumber class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AbbreviatedCaseNumber.#ctor(System.String)"> <summary> Initializes a new instance of the AbbreviatedCaseNumber class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AbbreviatedCaseNumber.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AbbreviatedCaseNumber.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AbbreviatedCaseNumber.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.AlbumTitle"> <summary> <para>Album Title.</para> <para>When the object is serialized out as xml, its qualified name is b:AlbumTitle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AlbumTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AlbumTitle.#ctor"> <summary> Initializes a new instance of the AlbumTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AlbumTitle.#ctor(System.String)"> <summary> Initializes a new instance of the AlbumTitle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AlbumTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AlbumTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AlbumTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.BookTitle"> <summary> <para>Book Title.</para> <para>When the object is serialized out as xml, its qualified name is b:BookTitle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookTitle.#ctor"> <summary> Initializes a new instance of the BookTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookTitle.#ctor(System.String)"> <summary> Initializes a new instance of the BookTitle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.BookTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.BookTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Broadcaster"> <summary> <para>Broadcaster.</para> <para>When the object is serialized out as xml, its qualified name is b:Broadcaster.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Broadcaster.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Broadcaster.#ctor"> <summary> Initializes a new instance of the Broadcaster class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Broadcaster.#ctor(System.String)"> <summary> Initializes a new instance of the Broadcaster class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Broadcaster.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Broadcaster.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Broadcaster.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.BroadcastTitle"> <summary> <para>Broadcast Title.</para> <para>When the object is serialized out as xml, its qualified name is b:BroadcastTitle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BroadcastTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BroadcastTitle.#ctor"> <summary> Initializes a new instance of the BroadcastTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BroadcastTitle.#ctor(System.String)"> <summary> Initializes a new instance of the BroadcastTitle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BroadcastTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.BroadcastTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.BroadcastTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.CaseNumber"> <summary> <para>Case Number.</para> <para>When the object is serialized out as xml, its qualified name is b:CaseNumber.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.CaseNumber.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.CaseNumber.#ctor"> <summary> Initializes a new instance of the CaseNumber class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.CaseNumber.#ctor(System.String)"> <summary> Initializes a new instance of the CaseNumber class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.CaseNumber.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.CaseNumber.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.CaseNumber.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.ChapterNumber"> <summary> <para>Chapter Number.</para> <para>When the object is serialized out as xml, its qualified name is b:ChapterNumber.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ChapterNumber.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ChapterNumber.#ctor"> <summary> Initializes a new instance of the ChapterNumber class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ChapterNumber.#ctor(System.String)"> <summary> Initializes a new instance of the ChapterNumber class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ChapterNumber.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ChapterNumber.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ChapterNumber.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.City"> <summary> <para>City.</para> <para>When the object is serialized out as xml, its qualified name is b:City.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.City.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.City.#ctor"> <summary> Initializes a new instance of the City class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.City.#ctor(System.String)"> <summary> Initializes a new instance of the City class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.City.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.City.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.City.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Comments"> <summary> <para>Comments.</para> <para>When the object is serialized out as xml, its qualified name is b:Comments.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Comments.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Comments.#ctor"> <summary> Initializes a new instance of the Comments class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Comments.#ctor(System.String)"> <summary> Initializes a new instance of the Comments class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Comments.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Comments.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Comments.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.ConferenceName"> <summary> <para>Conference or Proceedings Name.</para> <para>When the object is serialized out as xml, its qualified name is b:ConferenceName.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ConferenceName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ConferenceName.#ctor"> <summary> Initializes a new instance of the ConferenceName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ConferenceName.#ctor(System.String)"> <summary> Initializes a new instance of the ConferenceName class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ConferenceName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ConferenceName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ConferenceName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.CountryRegion"> <summary> <para>Country or Region.</para> <para>When the object is serialized out as xml, its qualified name is b:CountryRegion.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.CountryRegion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.CountryRegion.#ctor"> <summary> Initializes a new instance of the CountryRegion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.CountryRegion.#ctor(System.String)"> <summary> Initializes a new instance of the CountryRegion class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.CountryRegion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.CountryRegion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.CountryRegion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Court"> <summary> <para>Court.</para> <para>When the object is serialized out as xml, its qualified name is b:Court.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Court.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Court.#ctor"> <summary> Initializes a new instance of the Court class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Court.#ctor(System.String)"> <summary> Initializes a new instance of the Court class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Court.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Court.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Court.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Day"> <summary> <para>Day.</para> <para>When the object is serialized out as xml, its qualified name is b:Day.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Day.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Day.#ctor"> <summary> Initializes a new instance of the Day class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Day.#ctor(System.String)"> <summary> Initializes a new instance of the Day class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Day.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Day.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Day.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.DayAccessed"> <summary> <para>Day Accessed.</para> <para>When the object is serialized out as xml, its qualified name is b:DayAccessed.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.DayAccessed.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.DayAccessed.#ctor"> <summary> Initializes a new instance of the DayAccessed class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.DayAccessed.#ctor(System.String)"> <summary> Initializes a new instance of the DayAccessed class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.DayAccessed.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.DayAccessed.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.DayAccessed.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Department"> <summary> <para>Department.</para> <para>When the object is serialized out as xml, its qualified name is b:Department.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Department.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Department.#ctor"> <summary> Initializes a new instance of the Department class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Department.#ctor(System.String)"> <summary> Initializes a new instance of the Department class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Department.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Department.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Department.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Distributor"> <summary> <para>Distributor.</para> <para>When the object is serialized out as xml, its qualified name is b:Distributor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Distributor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Distributor.#ctor"> <summary> Initializes a new instance of the Distributor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Distributor.#ctor(System.String)"> <summary> Initializes a new instance of the Distributor class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Distributor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Distributor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Distributor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Edition"> <summary> <para>Editor.</para> <para>When the object is serialized out as xml, its qualified name is b:Edition.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Edition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Edition.#ctor"> <summary> Initializes a new instance of the Edition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Edition.#ctor(System.String)"> <summary> Initializes a new instance of the Edition class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Edition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Edition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Edition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.GuidString"> <summary> <para>GUID.</para> <para>When the object is serialized out as xml, its qualified name is b:Guid.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.GuidString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.GuidString.#ctor"> <summary> Initializes a new instance of the GuidString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.GuidString.#ctor(System.String)"> <summary> Initializes a new instance of the GuidString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.GuidString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.GuidString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.GuidString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Institution"> <summary> <para>Institution.</para> <para>When the object is serialized out as xml, its qualified name is b:Institution.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Institution.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Institution.#ctor"> <summary> Initializes a new instance of the Institution class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Institution.#ctor(System.String)"> <summary> Initializes a new instance of the Institution class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Institution.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Institution.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Institution.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.InternetSiteTitle"> <summary> <para>Internet Site Title.</para> <para>When the object is serialized out as xml, its qualified name is b:InternetSiteTitle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.InternetSiteTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.InternetSiteTitle.#ctor"> <summary> Initializes a new instance of the InternetSiteTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.InternetSiteTitle.#ctor(System.String)"> <summary> Initializes a new instance of the InternetSiteTitle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.InternetSiteTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.InternetSiteTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.InternetSiteTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Issue"> <summary> <para>Issue.</para> <para>When the object is serialized out as xml, its qualified name is b:Issue.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Issue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Issue.#ctor"> <summary> Initializes a new instance of the Issue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Issue.#ctor(System.String)"> <summary> Initializes a new instance of the Issue class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Issue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Issue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Issue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.JournalName"> <summary> <para>Journal Name.</para> <para>When the object is serialized out as xml, its qualified name is b:JournalName.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.JournalName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.JournalName.#ctor"> <summary> Initializes a new instance of the JournalName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.JournalName.#ctor(System.String)"> <summary> Initializes a new instance of the JournalName class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.JournalName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.JournalName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.JournalName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.LcId"> <summary> <para>Locale ID.</para> <para>When the object is serialized out as xml, its qualified name is b:LCID.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.LcId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.LcId.#ctor"> <summary> Initializes a new instance of the LcId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.LcId.#ctor(System.String)"> <summary> Initializes a new instance of the LcId class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.LcId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.LcId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.LcId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Medium"> <summary> <para>Medium.</para> <para>When the object is serialized out as xml, its qualified name is b:Medium.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Medium.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Medium.#ctor"> <summary> Initializes a new instance of the Medium class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Medium.#ctor(System.String)"> <summary> Initializes a new instance of the Medium class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Medium.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Medium.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Medium.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Month"> <summary> <para>Month.</para> <para>When the object is serialized out as xml, its qualified name is b:Month.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Month.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Month.#ctor"> <summary> Initializes a new instance of the Month class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Month.#ctor(System.String)"> <summary> Initializes a new instance of the Month class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Month.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Month.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Month.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.MonthAccessed"> <summary> <para>Month Accessed.</para> <para>When the object is serialized out as xml, its qualified name is b:MonthAccessed.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.MonthAccessed.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.MonthAccessed.#ctor"> <summary> Initializes a new instance of the MonthAccessed class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.MonthAccessed.#ctor(System.String)"> <summary> Initializes a new instance of the MonthAccessed class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.MonthAccessed.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.MonthAccessed.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.MonthAccessed.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.NumberVolumes"> <summary> <para>Number of Volumes.</para> <para>When the object is serialized out as xml, its qualified name is b:NumberVolumes.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NumberVolumes.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NumberVolumes.#ctor"> <summary> Initializes a new instance of the NumberVolumes class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NumberVolumes.#ctor(System.String)"> <summary> Initializes a new instance of the NumberVolumes class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NumberVolumes.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.NumberVolumes.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.NumberVolumes.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Pages"> <summary> <para>Pages.</para> <para>When the object is serialized out as xml, its qualified name is b:Pages.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Pages.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Pages.#ctor"> <summary> Initializes a new instance of the Pages class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Pages.#ctor(System.String)"> <summary> Initializes a new instance of the Pages class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Pages.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Pages.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Pages.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.PatentNumber"> <summary> <para>Patent Number.</para> <para>When the object is serialized out as xml, its qualified name is b:PatentNumber.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PatentNumber.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PatentNumber.#ctor"> <summary> Initializes a new instance of the PatentNumber class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PatentNumber.#ctor(System.String)"> <summary> Initializes a new instance of the PatentNumber class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PatentNumber.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.PatentNumber.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.PatentNumber.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.PeriodicalTitle"> <summary> <para>Periodical Title.</para> <para>When the object is serialized out as xml, its qualified name is b:PeriodicalTitle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PeriodicalTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PeriodicalTitle.#ctor"> <summary> Initializes a new instance of the PeriodicalTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PeriodicalTitle.#ctor(System.String)"> <summary> Initializes a new instance of the PeriodicalTitle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PeriodicalTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.PeriodicalTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.PeriodicalTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.ProductionCompany"> <summary> <para>Production Company.</para> <para>When the object is serialized out as xml, its qualified name is b:ProductionCompany.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProductionCompany.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProductionCompany.#ctor"> <summary> Initializes a new instance of the ProductionCompany class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProductionCompany.#ctor(System.String)"> <summary> Initializes a new instance of the ProductionCompany class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProductionCompany.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ProductionCompany.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ProductionCompany.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.PublicationTitle"> <summary> <para>Publication Title.</para> <para>When the object is serialized out as xml, its qualified name is b:PublicationTitle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PublicationTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PublicationTitle.#ctor"> <summary> Initializes a new instance of the PublicationTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PublicationTitle.#ctor(System.String)"> <summary> Initializes a new instance of the PublicationTitle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PublicationTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.PublicationTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.PublicationTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Publisher"> <summary> <para>Publisher.</para> <para>When the object is serialized out as xml, its qualified name is b:Publisher.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Publisher.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Publisher.#ctor"> <summary> Initializes a new instance of the Publisher class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Publisher.#ctor(System.String)"> <summary> Initializes a new instance of the Publisher class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Publisher.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Publisher.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Publisher.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.RecordingNumber"> <summary> <para>Recording Number.</para> <para>When the object is serialized out as xml, its qualified name is b:RecordingNumber.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.RecordingNumber.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.RecordingNumber.#ctor"> <summary> Initializes a new instance of the RecordingNumber class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.RecordingNumber.#ctor(System.String)"> <summary> Initializes a new instance of the RecordingNumber class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.RecordingNumber.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.RecordingNumber.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.RecordingNumber.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.ReferenceOrder"> <summary> <para>Reference Order.</para> <para>When the object is serialized out as xml, its qualified name is b:RefOrder.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ReferenceOrder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ReferenceOrder.#ctor"> <summary> Initializes a new instance of the ReferenceOrder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ReferenceOrder.#ctor(System.String)"> <summary> Initializes a new instance of the ReferenceOrder class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ReferenceOrder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ReferenceOrder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ReferenceOrder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Reporter"> <summary> <para>Reporter.</para> <para>When the object is serialized out as xml, its qualified name is b:Reporter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Reporter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Reporter.#ctor"> <summary> Initializes a new instance of the Reporter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Reporter.#ctor(System.String)"> <summary> Initializes a new instance of the Reporter class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Reporter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Reporter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Reporter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.ShortTitle"> <summary> <para>Short Title.</para> <para>When the object is serialized out as xml, its qualified name is b:ShortTitle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ShortTitle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ShortTitle.#ctor"> <summary> Initializes a new instance of the ShortTitle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ShortTitle.#ctor(System.String)"> <summary> Initializes a new instance of the ShortTitle class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ShortTitle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ShortTitle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ShortTitle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.StandardNumber"> <summary> <para>Standard Number.</para> <para>When the object is serialized out as xml, its qualified name is b:StandardNumber.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.StandardNumber.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.StandardNumber.#ctor"> <summary> Initializes a new instance of the StandardNumber class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.StandardNumber.#ctor(System.String)"> <summary> Initializes a new instance of the StandardNumber class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.StandardNumber.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.StandardNumber.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.StandardNumber.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.StateProvince"> <summary> <para>State or Province.</para> <para>When the object is serialized out as xml, its qualified name is b:StateProvince.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.StateProvince.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.StateProvince.#ctor"> <summary> Initializes a new instance of the StateProvince class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.StateProvince.#ctor(System.String)"> <summary> Initializes a new instance of the StateProvince class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.StateProvince.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.StateProvince.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.StateProvince.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Station"> <summary> <para>Station.</para> <para>When the object is serialized out as xml, its qualified name is b:Station.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Station.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Station.#ctor"> <summary> Initializes a new instance of the Station class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Station.#ctor(System.String)"> <summary> Initializes a new instance of the Station class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Station.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Station.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Station.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Tag"> <summary> <para>Tag.</para> <para>When the object is serialized out as xml, its qualified name is b:Tag.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Tag.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Tag.#ctor"> <summary> Initializes a new instance of the Tag class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Tag.#ctor(System.String)"> <summary> Initializes a new instance of the Tag class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Tag.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Tag.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Tag.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Theater"> <summary> <para>Theater.</para> <para>When the object is serialized out as xml, its qualified name is b:Theater.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Theater.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Theater.#ctor"> <summary> Initializes a new instance of the Theater class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Theater.#ctor(System.String)"> <summary> Initializes a new instance of the Theater class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Theater.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Theater.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Theater.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.ThesisType"> <summary> <para>Thesis Type.</para> <para>When the object is serialized out as xml, its qualified name is b:ThesisType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ThesisType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ThesisType.#ctor"> <summary> Initializes a new instance of the ThesisType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ThesisType.#ctor(System.String)"> <summary> Initializes a new instance of the ThesisType class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ThesisType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ThesisType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ThesisType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Title"> <summary> <para>Title.</para> <para>When the object is serialized out as xml, its qualified name is b:Title.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Title.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Title.#ctor"> <summary> Initializes a new instance of the Title class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Title.#ctor(System.String)"> <summary> Initializes a new instance of the Title class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Title.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Title.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Title.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.PatentType"> <summary> <para>Type.</para> <para>When the object is serialized out as xml, its qualified name is b:Type.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PatentType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PatentType.#ctor"> <summary> Initializes a new instance of the PatentType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PatentType.#ctor(System.String)"> <summary> Initializes a new instance of the PatentType class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.PatentType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.PatentType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.PatentType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.UrlString"> <summary> <para>URL.</para> <para>When the object is serialized out as xml, its qualified name is b:URL.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.UrlString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.UrlString.#ctor"> <summary> Initializes a new instance of the UrlString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.UrlString.#ctor(System.String)"> <summary> Initializes a new instance of the UrlString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.UrlString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.UrlString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.UrlString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Version"> <summary> <para>Version.</para> <para>When the object is serialized out as xml, its qualified name is b:Version.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Version.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Version.#ctor"> <summary> Initializes a new instance of the Version class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Version.#ctor(System.String)"> <summary> Initializes a new instance of the Version class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Version.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Version.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Version.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Volume"> <summary> <para>Volume.</para> <para>When the object is serialized out as xml, its qualified name is b:Volume.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Volume.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Volume.#ctor"> <summary> Initializes a new instance of the Volume class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Volume.#ctor(System.String)"> <summary> Initializes a new instance of the Volume class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Volume.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Volume.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Volume.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Year"> <summary> <para>Year.</para> <para>When the object is serialized out as xml, its qualified name is b:Year.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Year.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Year.#ctor"> <summary> Initializes a new instance of the Year class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Year.#ctor(System.String)"> <summary> Initializes a new instance of the Year class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Year.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Year.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Year.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.YearAccessed"> <summary> <para>Year Accessed.</para> <para>When the object is serialized out as xml, its qualified name is b:YearAccessed.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.YearAccessed.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.YearAccessed.#ctor"> <summary> Initializes a new instance of the YearAccessed class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.YearAccessed.#ctor(System.String)"> <summary> Initializes a new instance of the YearAccessed class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.YearAccessed.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.YearAccessed.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.YearAccessed.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.NameList"> <summary> <para>Name List.</para> <para>When the object is serialized out as xml, its qualified name is b:NameList.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Person <b:Person></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameList.#ctor"> <summary> Initializes a new instance of the NameList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NameList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NameList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameList.#ctor(System.String)"> <summary> Initializes a new instance of the NameList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.NameList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.NameList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Artist"> <summary> <para>Artist.</para> <para>When the object is serialized out as xml, its qualified name is b:Artist.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.NameType"> <summary> Defines the NameType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameType.#ctor"> <summary> Initializes a new instance of the NameType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NameType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NameType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameType.#ctor(System.String)"> <summary> Initializes a new instance of the NameType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.NameType.NameList"> <summary> <para> Name List.</para> <para>Represents the element tag in schema: b:NameList </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Artist.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Artist.#ctor"> <summary> Initializes a new instance of the Artist class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Artist.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Artist class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Artist.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Artist class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Artist.#ctor(System.String)"> <summary> Initializes a new instance of the Artist class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Artist.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Artist.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Artist.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.BookAuthor"> <summary> <para>Book Author.</para> <para>When the object is serialized out as xml, its qualified name is b:BookAuthor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookAuthor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookAuthor.#ctor"> <summary> Initializes a new instance of the BookAuthor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookAuthor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BookAuthor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookAuthor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BookAuthor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookAuthor.#ctor(System.String)"> <summary> Initializes a new instance of the BookAuthor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.BookAuthor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.BookAuthor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.BookAuthor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Compiler"> <summary> <para>Compiler.</para> <para>When the object is serialized out as xml, its qualified name is b:Compiler.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Compiler.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Compiler.#ctor"> <summary> Initializes a new instance of the Compiler class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Compiler.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Compiler class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Compiler.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Compiler class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Compiler.#ctor(System.String)"> <summary> Initializes a new instance of the Compiler class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Compiler.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Compiler.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Compiler.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Composer"> <summary> <para>Composer.</para> <para>When the object is serialized out as xml, its qualified name is b:Composer.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Composer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Composer.#ctor"> <summary> Initializes a new instance of the Composer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Composer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Composer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Composer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Composer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Composer.#ctor(System.String)"> <summary> Initializes a new instance of the Composer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Composer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Composer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Composer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Conductor"> <summary> <para>Conductor.</para> <para>When the object is serialized out as xml, its qualified name is b:Conductor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Conductor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Conductor.#ctor"> <summary> Initializes a new instance of the Conductor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Conductor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Conductor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Conductor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Conductor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Conductor.#ctor(System.String)"> <summary> Initializes a new instance of the Conductor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Conductor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Conductor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Conductor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Counsel"> <summary> <para>Counsel.</para> <para>When the object is serialized out as xml, its qualified name is b:Counsel.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Counsel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Counsel.#ctor"> <summary> Initializes a new instance of the Counsel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Counsel.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Counsel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Counsel.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Counsel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Counsel.#ctor(System.String)"> <summary> Initializes a new instance of the Counsel class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Counsel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Counsel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Counsel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Director"> <summary> <para>Director.</para> <para>When the object is serialized out as xml, its qualified name is b:Director.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Director.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Director.#ctor"> <summary> Initializes a new instance of the Director class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Director.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Director class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Director.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Director class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Director.#ctor(System.String)"> <summary> Initializes a new instance of the Director class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Director.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Director.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Director.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Editor"> <summary> <para>Editor.</para> <para>When the object is serialized out as xml, its qualified name is b:Editor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Editor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Editor.#ctor"> <summary> Initializes a new instance of the Editor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Editor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Editor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Editor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Editor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Editor.#ctor(System.String)"> <summary> Initializes a new instance of the Editor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Editor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Editor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Editor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Interviewee"> <summary> <para>Interviewee.</para> <para>When the object is serialized out as xml, its qualified name is b:Interviewee.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewee.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewee.#ctor"> <summary> Initializes a new instance of the Interviewee class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewee.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Interviewee class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewee.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Interviewee class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewee.#ctor(System.String)"> <summary> Initializes a new instance of the Interviewee class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewee.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Interviewee.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Interviewee.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Interviewer"> <summary> <para>Interviewer.</para> <para>When the object is serialized out as xml, its qualified name is b:Interviewer.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewer.#ctor"> <summary> Initializes a new instance of the Interviewer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Interviewer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Interviewer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewer.#ctor(System.String)"> <summary> Initializes a new instance of the Interviewer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Interviewer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Interviewer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Interviewer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Inventor"> <summary> <para>Inventor.</para> <para>When the object is serialized out as xml, its qualified name is b:Inventor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Inventor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Inventor.#ctor"> <summary> Initializes a new instance of the Inventor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Inventor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Inventor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Inventor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Inventor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Inventor.#ctor(System.String)"> <summary> Initializes a new instance of the Inventor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Inventor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Inventor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Inventor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.ProducerName"> <summary> <para>Producer Name.</para> <para>When the object is serialized out as xml, its qualified name is b:ProducerName.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProducerName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProducerName.#ctor"> <summary> Initializes a new instance of the ProducerName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProducerName.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ProducerName class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProducerName.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ProducerName class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProducerName.#ctor(System.String)"> <summary> Initializes a new instance of the ProducerName class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.ProducerName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ProducerName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.ProducerName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Translator"> <summary> <para>Translator.</para> <para>When the object is serialized out as xml, its qualified name is b:Translator.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Translator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Translator.#ctor"> <summary> Initializes a new instance of the Translator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Translator.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Translator class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Translator.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Translator class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Translator.#ctor(System.String)"> <summary> Initializes a new instance of the Translator class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Translator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Translator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Translator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Writer"> <summary> <para>Writer.</para> <para>When the object is serialized out as xml, its qualified name is b:Writer.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Writer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Writer.#ctor"> <summary> Initializes a new instance of the Writer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Writer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Writer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Writer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Writer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Writer.#ctor(System.String)"> <summary> Initializes a new instance of the Writer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Writer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Writer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Writer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Author"> <summary> <para>Author.</para> <para>When the object is serialized out as xml, its qualified name is b:Author.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> <item><description>Corporate <b:Corporate></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.NameOrCorporateType"> <summary> Defines the NameOrCorporateType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> <item><description>Corporate <b:Corporate></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameOrCorporateType.#ctor"> <summary> Initializes a new instance of the NameOrCorporateType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameOrCorporateType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NameOrCorporateType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameOrCorporateType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NameOrCorporateType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.NameOrCorporateType.#ctor(System.String)"> <summary> Initializes a new instance of the NameOrCorporateType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.NameOrCorporateType.NameList"> <summary> <para> NameList.</para> <para>Represents the element tag in schema: b:NameList </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.NameOrCorporateType.Corporate"> <summary> <para> Corporate Author.</para> <para>Represents the element tag in schema: b:Corporate </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Author.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Author.#ctor"> <summary> Initializes a new instance of the Author class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Author.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Author class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Author.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Author class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Author.#ctor(System.String)"> <summary> Initializes a new instance of the Author class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Author.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Author.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Author.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Performer"> <summary> <para>Performer.</para> <para>When the object is serialized out as xml, its qualified name is b:Performer.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NameList <b:NameList></description></item> <item><description>Corporate <b:Corporate></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Performer.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Performer.#ctor"> <summary> Initializes a new instance of the Performer class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Performer.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Performer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Performer.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Performer class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Performer.#ctor(System.String)"> <summary> Initializes a new instance of the Performer class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Performer.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Performer.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Performer.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.AuthorList"> <summary> <para>Contributors List.</para> <para>When the object is serialized out as xml, its qualified name is b:Author.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Artist <b:Artist></description></item> <item><description>Author <b:Author></description></item> <item><description>BookAuthor <b:BookAuthor></description></item> <item><description>Compiler <b:Compiler></description></item> <item><description>Composer <b:Composer></description></item> <item><description>Conductor <b:Conductor></description></item> <item><description>Counsel <b:Counsel></description></item> <item><description>Director <b:Director></description></item> <item><description>Editor <b:Editor></description></item> <item><description>Interviewee <b:Interviewee></description></item> <item><description>Interviewer <b:Interviewer></description></item> <item><description>Inventor <b:Inventor></description></item> <item><description>Performer <b:Performer></description></item> <item><description>ProducerName <b:ProducerName></description></item> <item><description>Translator <b:Translator></description></item> <item><description>Writer <b:Writer></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AuthorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AuthorList.#ctor"> <summary> Initializes a new instance of the AuthorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AuthorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AuthorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AuthorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AuthorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AuthorList.#ctor(System.String)"> <summary> Initializes a new instance of the AuthorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.AuthorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Artist"> <summary> <para> Artist.</para> <para>Represents the element tag in schema: b:Artist </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Author"> <summary> <para> Author.</para> <para>Represents the element tag in schema: b:Author </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.BookAuthor"> <summary> <para> Book Author.</para> <para>Represents the element tag in schema: b:BookAuthor </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Compiler"> <summary> <para> Compiler.</para> <para>Represents the element tag in schema: b:Compiler </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Composer"> <summary> <para> Composer.</para> <para>Represents the element tag in schema: b:Composer </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Conductor"> <summary> <para> Conductor.</para> <para>Represents the element tag in schema: b:Conductor </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Counsel"> <summary> <para> Counsel.</para> <para>Represents the element tag in schema: b:Counsel </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Director"> <summary> <para> Director.</para> <para>Represents the element tag in schema: b:Director </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Editor"> <summary> <para> Editor.</para> <para>Represents the element tag in schema: b:Editor </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Interviewee"> <summary> <para> Interviewee.</para> <para>Represents the element tag in schema: b:Interviewee </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Interviewer"> <summary> <para> Interviewer.</para> <para>Represents the element tag in schema: b:Interviewer </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Inventor"> <summary> <para> Inventor.</para> <para>Represents the element tag in schema: b:Inventor </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Performer"> <summary> <para> Performer.</para> <para>Represents the element tag in schema: b:Performer </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.ProducerName"> <summary> <para> Producer Name.</para> <para>Represents the element tag in schema: b:ProducerName </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Translator"> <summary> <para> Translator.</para> <para>Represents the element tag in schema: b:Translator </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.AuthorList.Writer"> <summary> <para> Writer.</para> <para>Represents the element tag in schema: b:Writer </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.SourceType"> <summary> <para>Source Type.</para> <para>When the object is serialized out as xml, its qualified name is b:SourceType.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.SourceType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.SourceType.#ctor"> <summary> Initializes a new instance of the SourceType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.SourceType.#ctor(System.String)"> <summary> Initializes a new instance of the SourceType class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.SourceType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.SourceType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.SourceType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.Source"> <summary> <para>Source.</para> <para>When the object is serialized out as xml, its qualified name is b:Source.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AbbreviatedCaseNumber <b:AbbreviatedCaseNumber></description></item> <item><description>AlbumTitle <b:AlbumTitle></description></item> <item><description>AuthorList <b:Author></description></item> <item><description>BookTitle <b:BookTitle></description></item> <item><description>Broadcaster <b:Broadcaster></description></item> <item><description>BroadcastTitle <b:BroadcastTitle></description></item> <item><description>CaseNumber <b:CaseNumber></description></item> <item><description>ChapterNumber <b:ChapterNumber></description></item> <item><description>City <b:City></description></item> <item><description>Comments <b:Comments></description></item> <item><description>ConferenceName <b:ConferenceName></description></item> <item><description>CountryRegion <b:CountryRegion></description></item> <item><description>Court <b:Court></description></item> <item><description>Day <b:Day></description></item> <item><description>DayAccessed <b:DayAccessed></description></item> <item><description>Department <b:Department></description></item> <item><description>Distributor <b:Distributor></description></item> <item><description>Edition <b:Edition></description></item> <item><description>GuidString <b:Guid></description></item> <item><description>Institution <b:Institution></description></item> <item><description>InternetSiteTitle <b:InternetSiteTitle></description></item> <item><description>Issue <b:Issue></description></item> <item><description>JournalName <b:JournalName></description></item> <item><description>LcId <b:LCID></description></item> <item><description>Medium <b:Medium></description></item> <item><description>Month <b:Month></description></item> <item><description>MonthAccessed <b:MonthAccessed></description></item> <item><description>NumberVolumes <b:NumberVolumes></description></item> <item><description>Pages <b:Pages></description></item> <item><description>PatentNumber <b:PatentNumber></description></item> <item><description>PeriodicalTitle <b:PeriodicalTitle></description></item> <item><description>ProductionCompany <b:ProductionCompany></description></item> <item><description>PublicationTitle <b:PublicationTitle></description></item> <item><description>Publisher <b:Publisher></description></item> <item><description>RecordingNumber <b:RecordingNumber></description></item> <item><description>ReferenceOrder <b:RefOrder></description></item> <item><description>Reporter <b:Reporter></description></item> <item><description>SourceType <b:SourceType></description></item> <item><description>ShortTitle <b:ShortTitle></description></item> <item><description>StandardNumber <b:StandardNumber></description></item> <item><description>StateProvince <b:StateProvince></description></item> <item><description>Station <b:Station></description></item> <item><description>Tag <b:Tag></description></item> <item><description>Theater <b:Theater></description></item> <item><description>ThesisType <b:ThesisType></description></item> <item><description>Title <b:Title></description></item> <item><description>PatentType <b:Type></description></item> <item><description>UrlString <b:URL></description></item> <item><description>Version <b:Version></description></item> <item><description>Volume <b:Volume></description></item> <item><description>Year <b:Year></description></item> <item><description>YearAccessed <b:YearAccessed></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Source.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Source.#ctor"> <summary> Initializes a new instance of the Source class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Source.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Source class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Source.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Source class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Source.#ctor(System.String)"> <summary> Initializes a new instance of the Source class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Bibliography.Source.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.AbbreviatedCaseNumber"> <summary> <para> Abbreviated Case Number.</para> <para>Represents the element tag in schema: b:AbbreviatedCaseNumber </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.AlbumTitle"> <summary> <para> Album Title.</para> <para>Represents the element tag in schema: b:AlbumTitle </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.AuthorList"> <summary> <para> Contributors List.</para> <para>Represents the element tag in schema: b:Author </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.BookTitle"> <summary> <para> Book Title.</para> <para>Represents the element tag in schema: b:BookTitle </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Broadcaster"> <summary> <para> Broadcaster.</para> <para>Represents the element tag in schema: b:Broadcaster </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.BroadcastTitle"> <summary> <para> Broadcast Title.</para> <para>Represents the element tag in schema: b:BroadcastTitle </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.CaseNumber"> <summary> <para> Case Number.</para> <para>Represents the element tag in schema: b:CaseNumber </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.ChapterNumber"> <summary> <para> Chapter Number.</para> <para>Represents the element tag in schema: b:ChapterNumber </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.City"> <summary> <para> City.</para> <para>Represents the element tag in schema: b:City </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Comments"> <summary> <para> Comments.</para> <para>Represents the element tag in schema: b:Comments </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.ConferenceName"> <summary> <para> Conference or Proceedings Name.</para> <para>Represents the element tag in schema: b:ConferenceName </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.CountryRegion"> <summary> <para> Country or Region.</para> <para>Represents the element tag in schema: b:CountryRegion </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Court"> <summary> <para> Court.</para> <para>Represents the element tag in schema: b:Court </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Day"> <summary> <para> Day.</para> <para>Represents the element tag in schema: b:Day </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.DayAccessed"> <summary> <para> Day Accessed.</para> <para>Represents the element tag in schema: b:DayAccessed </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Department"> <summary> <para> Department.</para> <para>Represents the element tag in schema: b:Department </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Distributor"> <summary> <para> Distributor.</para> <para>Represents the element tag in schema: b:Distributor </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Edition"> <summary> <para> Editor.</para> <para>Represents the element tag in schema: b:Edition </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.GuidString"> <summary> <para> GUID.</para> <para>Represents the element tag in schema: b:Guid </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Institution"> <summary> <para> Institution.</para> <para>Represents the element tag in schema: b:Institution </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.InternetSiteTitle"> <summary> <para> Internet Site Title.</para> <para>Represents the element tag in schema: b:InternetSiteTitle </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Issue"> <summary> <para> Issue.</para> <para>Represents the element tag in schema: b:Issue </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.JournalName"> <summary> <para> Journal Name.</para> <para>Represents the element tag in schema: b:JournalName </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.LcId"> <summary> <para> Locale ID.</para> <para>Represents the element tag in schema: b:LCID </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Medium"> <summary> <para> Medium.</para> <para>Represents the element tag in schema: b:Medium </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Month"> <summary> <para> Month.</para> <para>Represents the element tag in schema: b:Month </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.MonthAccessed"> <summary> <para> Month Accessed.</para> <para>Represents the element tag in schema: b:MonthAccessed </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.NumberVolumes"> <summary> <para> Number of Volumes.</para> <para>Represents the element tag in schema: b:NumberVolumes </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Pages"> <summary> <para> Pages.</para> <para>Represents the element tag in schema: b:Pages </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.PatentNumber"> <summary> <para> Patent Number.</para> <para>Represents the element tag in schema: b:PatentNumber </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.PeriodicalTitle"> <summary> <para> Periodical Title.</para> <para>Represents the element tag in schema: b:PeriodicalTitle </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.ProductionCompany"> <summary> <para> Production Company.</para> <para>Represents the element tag in schema: b:ProductionCompany </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.PublicationTitle"> <summary> <para> Publication Title.</para> <para>Represents the element tag in schema: b:PublicationTitle </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Publisher"> <summary> <para> Publisher.</para> <para>Represents the element tag in schema: b:Publisher </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.RecordingNumber"> <summary> <para> Recording Number.</para> <para>Represents the element tag in schema: b:RecordingNumber </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.ReferenceOrder"> <summary> <para> Reference Order.</para> <para>Represents the element tag in schema: b:RefOrder </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Reporter"> <summary> <para> Reporter.</para> <para>Represents the element tag in schema: b:Reporter </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.SourceType"> <summary> <para> Source Type.</para> <para>Represents the element tag in schema: b:SourceType </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.ShortTitle"> <summary> <para> Short Title.</para> <para>Represents the element tag in schema: b:ShortTitle </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.StandardNumber"> <summary> <para> Standard Number.</para> <para>Represents the element tag in schema: b:StandardNumber </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.StateProvince"> <summary> <para> State or Province.</para> <para>Represents the element tag in schema: b:StateProvince </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Station"> <summary> <para> Station.</para> <para>Represents the element tag in schema: b:Station </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Tag"> <summary> <para> Tag.</para> <para>Represents the element tag in schema: b:Tag </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Theater"> <summary> <para> Theater.</para> <para>Represents the element tag in schema: b:Theater </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.ThesisType"> <summary> <para> Thesis Type.</para> <para>Represents the element tag in schema: b:ThesisType </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Title"> <summary> <para> Title.</para> <para>Represents the element tag in schema: b:Title </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.PatentType"> <summary> <para> Type.</para> <para>Represents the element tag in schema: b:Type </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.UrlString"> <summary> <para> URL.</para> <para>Represents the element tag in schema: b:URL </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Version"> <summary> <para> Version.</para> <para>Represents the element tag in schema: b:Version </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Volume"> <summary> <para> Volume.</para> <para>Represents the element tag in schema: b:Volume </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.Year"> <summary> <para> Year.</para> <para>Represents the element tag in schema: b:Year </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="P:DocumentFormat.OpenXml.Bibliography.Source.YearAccessed"> <summary> <para> Year Accessed.</para> <para>Represents the element tag in schema: b:YearAccessed </para> </summary> <remark> xmlns:b = http://schemas.openxmlformats.org/officeDocument/2006/bibliography </remark> </member> <member name="T:DocumentFormat.OpenXml.Bibliography.DataSourceValues"> <summary> Bibliographic Data Source Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.ArticleInAPeriodical"> <summary> Article in a Periodical. <para>When the item is serialized out as xml, its value is "ArticleInAPeriodical".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Book"> <summary> Book. <para>When the item is serialized out as xml, its value is "Book".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.BookSection"> <summary> Book Section. <para>When the item is serialized out as xml, its value is "BookSection".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.JournalArticle"> <summary> Journal Article. <para>When the item is serialized out as xml, its value is "JournalArticle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.ConferenceProceedings"> <summary> Conference Proceedings. <para>When the item is serialized out as xml, its value is "ConferenceProceedings".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Report"> <summary> Reporter. <para>When the item is serialized out as xml, its value is "Report".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.SoundRecording"> <summary> Sound Recording. <para>When the item is serialized out as xml, its value is "SoundRecording".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Performance"> <summary> Performance. <para>When the item is serialized out as xml, its value is "Performance".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Art"> <summary> Art. <para>When the item is serialized out as xml, its value is "Art".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.DocumentFromInternetSite"> <summary> Document from Internet Site. <para>When the item is serialized out as xml, its value is "DocumentFromInternetSite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.InternetSite"> <summary> Internet Site. <para>When the item is serialized out as xml, its value is "InternetSite".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Film"> <summary> Film. <para>When the item is serialized out as xml, its value is "Film".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Interview"> <summary> Interview. <para>When the item is serialized out as xml, its value is "Interview".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Patent"> <summary> Patent. <para>When the item is serialized out as xml, its value is "Patent".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.ElectronicSource"> <summary> Electronic Source. <para>When the item is serialized out as xml, its value is "ElectronicSource".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Case"> <summary> Case. <para>When the item is serialized out as xml, its value is "Case".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Bibliography.DataSourceValues.Miscellaneous"> <summary> Miscellaneous. <para>When the item is serialized out as xml, its value is "Misc".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo"> <summary> <para>Set of Additional Characteristics.</para> <para>When the object is serialized out as xml, its qualified name is ac:additionalCharacteristics.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Characteristic <ac:characteristic></description></item> </list> </remarks> <summary> Defines AdditionalCharacteristics. </summary> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.#ctor"> <summary> Initializes a new instance of the AdditionalCharacteristicsInfo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AdditionalCharacteristicsInfo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AdditionalCharacteristicsInfo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.#ctor(System.String)"> <summary> Initializes a new instance of the AdditionalCharacteristicsInfo class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.#ctor(DocumentFormat.OpenXml.Packaging.CustomXmlPart)"> <summary> AdditionalCharacteristics constructor. </summary> <param name="ownerPart">The owner part of the AdditionalCharacteristics.</param> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.Load(DocumentFormat.OpenXml.Packaging.CustomXmlPart)"> <summary> Loads the DOM from an OpenXML part. </summary> <param name="openXmlPart">The part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.Save(DocumentFormat.OpenXml.Packaging.CustomXmlPart)"> <summary> Saves the DOM into the OpenXML part. </summary> <param name="openXmlPart">The part to be saved to.</param> </member> <member name="P:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.AdditionalCharacteristics.AdditionalCharacteristicsInfo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic"> <summary> <para>Single Characteristic.</para> <para>When the object is serialized out as xml, its qualified name is ac:characteristic.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.#ctor"> <summary> Initializes a new instance of the Characteristic class. </summary> </member> <member name="M:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.Name"> <summary> <para> Name of Characteristic.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.Relation"> <summary> <para> Relationship of Value to Name.</para> <para>Represents the attribte in schema: relation </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.Val"> <summary> <para> Characteristic Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.AdditionalCharacteristics.Characteristic.Vocabulary"> <summary> <para> Characteristic Grammar.</para> <para>Represents the attribte in schema: vocabulary </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.AdditionalCharacteristics.RelationValues"> <summary> Characteristic Relationship Types </summary> </member> <member name="F:DocumentFormat.OpenXml.AdditionalCharacteristics.RelationValues.GreaterThanOrEqualTo"> <summary> Greater Than or Equal to. <para>When the item is serialized out as xml, its value is "ge".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.AdditionalCharacteristics.RelationValues.LessThanOrEqualTo"> <summary> Less Than or Equal To. <para>When the item is serialized out as xml, its value is "le".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.AdditionalCharacteristics.RelationValues.GreaterThan"> <summary> Greater Than. <para>When the item is serialized out as xml, its value is "gt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.AdditionalCharacteristics.RelationValues.LessThan"> <summary> Less Than. <para>When the item is serialized out as xml, its value is "lt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.AdditionalCharacteristics.RelationValues.EqualTo"> <summary> Equal To. <para>When the item is serialized out as xml, its value is "eq".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.CustomProperties.Properties"> <summary> <para>Custom File Properties. It is the root element of CustomFilePropertiesPart.</para> <para>When the object is serialized out as xml, its qualified name is op:Properties.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CustomDocumentProperty <op:property></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.#ctor(DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart)"> <summary> Properties constructor </summary> <param name="ownerPart">The owner part of the Properties</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.Load(DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart)"> <summary> Loads the DOM from the CustomFilePropertiesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Properties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Properties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.#ctor(System.String)"> <summary> Initializes a new instance of the Properties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.#ctor"> <summary> Initializes a new instance of the Properties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.Save(DocumentFormat.OpenXml.Packaging.CustomFilePropertiesPart)"> <summary> Saves the DOM into the CustomFilePropertiesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.Properties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.Properties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.Properties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.Properties.CustomFilePropertiesPart"> <summary> Gets the CustomFilePropertiesPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty"> <summary> <para>Custom File Property.</para> <para>When the object is serialized out as xml, its qualified name is op:property.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.VariantTypes.VTVector <vt:vector></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTArray <vt:array></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTBlob <vt:blob></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTOBlob <vt:oblob></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTEmpty <vt:empty></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTNull <vt:null></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTByte <vt:i1></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTShort <vt:i2></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTInt32 <vt:i4></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTInt64 <vt:i8></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTInteger <vt:int></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTUnsignedByte <vt:ui1></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTUnsignedShort <vt:ui2></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt32 <vt:ui4></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt64 <vt:ui8></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTUnsignedInteger <vt:uint></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTFloat <vt:r4></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTDouble <vt:r8></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTDecimal <vt:decimal></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTLPSTR <vt:lpstr></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTLPWSTR <vt:lpwstr></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTBString <vt:bstr></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTDate <vt:date></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTFileTime <vt:filetime></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTBool <vt:bool></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTCurrency <vt:cy></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTError <vt:error></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTStreamData <vt:stream></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTOStreamData <vt:ostream></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTStorage <vt:storage></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTOStorage <vt:ostorage></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTVStreamData <vt:vstream></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTClassId <vt:clsid></description></item> <item><description>DocumentFormat.OpenXml.VariantTypes.VTClipboardData <vt:cf></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.#ctor"> <summary> Initializes a new instance of the CustomDocumentProperty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomDocumentProperty class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomDocumentProperty class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.#ctor(System.String)"> <summary> Initializes a new instance of the CustomDocumentProperty class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.FormatId"> <summary> <para> Format ID.</para> <para>Represents the attribte in schema: fmtid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.PropertyId"> <summary> <para> Property ID.</para> <para>Represents the attribte in schema: pid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.Name"> <summary> <para> Custom File Property Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.LinkTarget"> <summary> <para> Bookmark Link Target.</para> <para>Represents the attribte in schema: linkTarget </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTVector"> <summary> <para> Vector.</para> <para>Represents the element tag in schema: vt:vector </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTArray"> <summary> <para> Array.</para> <para>Represents the element tag in schema: vt:array </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTBlob"> <summary> <para> Binary Blob.</para> <para>Represents the element tag in schema: vt:blob </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTOBlob"> <summary> <para> Binary Blob Object.</para> <para>Represents the element tag in schema: vt:oblob </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTEmpty"> <summary> <para> Empty.</para> <para>Represents the element tag in schema: vt:empty </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTNull"> <summary> <para> Null.</para> <para>Represents the element tag in schema: vt:null </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTByte"> <summary> <para> 1-Byte Signed Integer.</para> <para>Represents the element tag in schema: vt:i1 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTShort"> <summary> <para> 2-Byte Signed Integer.</para> <para>Represents the element tag in schema: vt:i2 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTInt32"> <summary> <para> 4-Byte Signed Integer.</para> <para>Represents the element tag in schema: vt:i4 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTInt64"> <summary> <para> 8-Byte Signed Integer.</para> <para>Represents the element tag in schema: vt:i8 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTInteger"> <summary> <para> Integer.</para> <para>Represents the element tag in schema: vt:int </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTUnsignedByte"> <summary> <para> 1-Byte Unsigned Integer.</para> <para>Represents the element tag in schema: vt:ui1 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTUnsignedShort"> <summary> <para> 2-Byte Unsigned Integer.</para> <para>Represents the element tag in schema: vt:ui2 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTUnsignedInt32"> <summary> <para> 4-Byte Unsigned Integer.</para> <para>Represents the element tag in schema: vt:ui4 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTUnsignedInt64"> <summary> <para> 8-Byte Unsigned Integer.</para> <para>Represents the element tag in schema: vt:ui8 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTUnsignedInteger"> <summary> <para> Unsigned Integer.</para> <para>Represents the element tag in schema: vt:uint </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTFloat"> <summary> <para> 4-Byte Real Number.</para> <para>Represents the element tag in schema: vt:r4 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTDouble"> <summary> <para> 8-Byte Real Number.</para> <para>Represents the element tag in schema: vt:r8 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTDecimal"> <summary> <para> Decimal.</para> <para>Represents the element tag in schema: vt:decimal </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTLPSTR"> <summary> <para> LPSTR.</para> <para>Represents the element tag in schema: vt:lpstr </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTLPWSTR"> <summary> <para> LPWSTR.</para> <para>Represents the element tag in schema: vt:lpwstr </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTBString"> <summary> <para> Basic String.</para> <para>Represents the element tag in schema: vt:bstr </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTDate"> <summary> <para> Date and Time.</para> <para>Represents the element tag in schema: vt:date </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTFileTime"> <summary> <para> File Time.</para> <para>Represents the element tag in schema: vt:filetime </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTBool"> <summary> <para> Boolean.</para> <para>Represents the element tag in schema: vt:bool </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTCurrency"> <summary> <para> Currency.</para> <para>Represents the element tag in schema: vt:cy </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTError"> <summary> <para> Error Status Code.</para> <para>Represents the element tag in schema: vt:error </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTStreamData"> <summary> <para> Binary Stream.</para> <para>Represents the element tag in schema: vt:stream </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTOStreamData"> <summary> <para> Binary Stream Object.</para> <para>Represents the element tag in schema: vt:ostream </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTStorage"> <summary> <para> Binary Storage.</para> <para>Represents the element tag in schema: vt:storage </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTOStorage"> <summary> <para> Binary Storage Object.</para> <para>Represents the element tag in schema: vt:ostorage </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTVStreamData"> <summary> <para> Binary Versioned Stream.</para> <para>Represents the element tag in schema: vt:vstream </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTClassId"> <summary> <para> Class ID.</para> <para>Represents the element tag in schema: vt:clsid </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomProperties.CustomDocumentProperty.VTClipboardData"> <summary> <para> Clipboard Data.</para> <para>Represents the element tag in schema: vt:cf </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="T:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem"> <summary> <para>Custom XML Data Properties. It is the root element of CustomXmlPropertiesPart.</para> <para>When the object is serialized out as xml, its qualified name is ds:datastoreItem.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SchemaReferences <ds:schemaRefs></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.#ctor(DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart)"> <summary> DataStoreItem constructor </summary> <param name="ownerPart">The owner part of the DataStoreItem</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.Load(DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart)"> <summary> Loads the DOM from the CustomXmlPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataStoreItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataStoreItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.#ctor(System.String)"> <summary> Initializes a new instance of the DataStoreItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.#ctor"> <summary> Initializes a new instance of the DataStoreItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.Save(DocumentFormat.OpenXml.Packaging.CustomXmlPropertiesPart)"> <summary> Saves the DOM into the CustomXmlPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.ItemId"> <summary> <para> Custom XML Data ID.</para> <para>Represents the attribte in schema: ds:itemID </para> </summary> <remark> xmlns:ds=http://schemas.openxmlformats.org/officeDocument/2006/customXml </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.CustomXmlPropertiesPart"> <summary> Gets the CustomXmlPropertiesPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.DataStoreItem.SchemaReferences"> <summary> <para> Set of Associated XML Schemas.</para> <para>Represents the element tag in schema: ds:schemaRefs </para> </summary> <remark> xmlns:ds = http://schemas.openxmlformats.org/officeDocument/2006/customXml </remark> </member> <member name="T:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReference"> <summary> <para>Associated XML Schema.</para> <para>When the object is serialized out as xml, its qualified name is ds:schemaRef.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReference.#ctor"> <summary> Initializes a new instance of the SchemaReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReference.Uri"> <summary> <para> Target Namespace of Associated XML Schema.</para> <para>Represents the attribte in schema: ds:uri </para> </summary> <remark> xmlns:ds=http://schemas.openxmlformats.org/officeDocument/2006/customXml </remark> </member> <member name="T:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences"> <summary> <para>Set of Associated XML Schemas.</para> <para>When the object is serialized out as xml, its qualified name is ds:schemaRefs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SchemaReference <ds:schemaRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences.#ctor"> <summary> Initializes a new instance of the SchemaReferences class. </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SchemaReferences class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SchemaReferences class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences.#ctor(System.String)"> <summary> Initializes a new instance of the SchemaReferences class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlDataProperties.SchemaReferences.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.Variant"> <summary> <para>Variant.</para> <para>When the object is serialized out as xml, its qualified name is vt:variant.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Variant <vt:variant></description></item> <item><description>VTVector <vt:vector></description></item> <item><description>VTArray <vt:array></description></item> <item><description>VTBlob <vt:blob></description></item> <item><description>VTOBlob <vt:oblob></description></item> <item><description>VTEmpty <vt:empty></description></item> <item><description>VTNull <vt:null></description></item> <item><description>VTByte <vt:i1></description></item> <item><description>VTShort <vt:i2></description></item> <item><description>VTInt32 <vt:i4></description></item> <item><description>VTInt64 <vt:i8></description></item> <item><description>VTInteger <vt:int></description></item> <item><description>VTUnsignedByte <vt:ui1></description></item> <item><description>VTUnsignedShort <vt:ui2></description></item> <item><description>VTUnsignedInt32 <vt:ui4></description></item> <item><description>VTUnsignedInt64 <vt:ui8></description></item> <item><description>VTUnsignedInteger <vt:uint></description></item> <item><description>VTFloat <vt:r4></description></item> <item><description>VTDouble <vt:r8></description></item> <item><description>VTDecimal <vt:decimal></description></item> <item><description>VTLPSTR <vt:lpstr></description></item> <item><description>VTLPWSTR <vt:lpwstr></description></item> <item><description>VTBString <vt:bstr></description></item> <item><description>VTDate <vt:date></description></item> <item><description>VTFileTime <vt:filetime></description></item> <item><description>VTBool <vt:bool></description></item> <item><description>VTCurrency <vt:cy></description></item> <item><description>VTError <vt:error></description></item> <item><description>VTStreamData <vt:stream></description></item> <item><description>VTOStreamData <vt:ostream></description></item> <item><description>VTStorage <vt:storage></description></item> <item><description>VTOStorage <vt:ostorage></description></item> <item><description>VTVStreamData <vt:vstream></description></item> <item><description>VTClassId <vt:clsid></description></item> <item><description>VTClipboardData <vt:cf></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.Variant.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.Variant.#ctor"> <summary> Initializes a new instance of the Variant class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.Variant.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Variant class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.Variant.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Variant class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.Variant.#ctor(System.String)"> <summary> Initializes a new instance of the Variant class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.Variant.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.InnerVariant"> <summary> <para> Variant.</para> <para>Represents the element tag in schema: vt:variant </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTVector"> <summary> <para> Vector.</para> <para>Represents the element tag in schema: vt:vector </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTArray"> <summary> <para> Array.</para> <para>Represents the element tag in schema: vt:array </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTBlob"> <summary> <para> Binary Blob.</para> <para>Represents the element tag in schema: vt:blob </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTOBlob"> <summary> <para> Binary Blob Object.</para> <para>Represents the element tag in schema: vt:oblob </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTEmpty"> <summary> <para> Empty.</para> <para>Represents the element tag in schema: vt:empty </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTNull"> <summary> <para> Null.</para> <para>Represents the element tag in schema: vt:null </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTByte"> <summary> <para> 1-Byte Signed Integer.</para> <para>Represents the element tag in schema: vt:i1 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTShort"> <summary> <para> 2-Byte Signed Integer.</para> <para>Represents the element tag in schema: vt:i2 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTInt32"> <summary> <para> 4-Byte Signed Integer.</para> <para>Represents the element tag in schema: vt:i4 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTInt64"> <summary> <para> 8-Byte Signed Integer.</para> <para>Represents the element tag in schema: vt:i8 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTInteger"> <summary> <para> Integer.</para> <para>Represents the element tag in schema: vt:int </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTUnsignedByte"> <summary> <para> 1-Byte Unsigned Integer.</para> <para>Represents the element tag in schema: vt:ui1 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTUnsignedShort"> <summary> <para> 2-Byte Unsigned Integer.</para> <para>Represents the element tag in schema: vt:ui2 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTUnsignedInt32"> <summary> <para> 4-Byte Unsigned Integer.</para> <para>Represents the element tag in schema: vt:ui4 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTUnsignedInt64"> <summary> <para> 8-Byte Unsigned Integer.</para> <para>Represents the element tag in schema: vt:ui8 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTUnsignedInteger"> <summary> <para> Unsigned Integer.</para> <para>Represents the element tag in schema: vt:uint </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTFloat"> <summary> <para> 4-Byte Real Number.</para> <para>Represents the element tag in schema: vt:r4 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTDouble"> <summary> <para> 8-Byte Real Number.</para> <para>Represents the element tag in schema: vt:r8 </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTDecimal"> <summary> <para> Decimal.</para> <para>Represents the element tag in schema: vt:decimal </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTLPSTR"> <summary> <para> LPSTR.</para> <para>Represents the element tag in schema: vt:lpstr </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTLPWSTR"> <summary> <para> LPWSTR.</para> <para>Represents the element tag in schema: vt:lpwstr </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTBString"> <summary> <para> Basic String.</para> <para>Represents the element tag in schema: vt:bstr </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTDate"> <summary> <para> Date and Time.</para> <para>Represents the element tag in schema: vt:date </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTFileTime"> <summary> <para> File Time.</para> <para>Represents the element tag in schema: vt:filetime </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTBool"> <summary> <para> Boolean.</para> <para>Represents the element tag in schema: vt:bool </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTCurrency"> <summary> <para> Currency.</para> <para>Represents the element tag in schema: vt:cy </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTError"> <summary> <para> Error Status Code.</para> <para>Represents the element tag in schema: vt:error </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTStreamData"> <summary> <para> Binary Stream.</para> <para>Represents the element tag in schema: vt:stream </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTOStreamData"> <summary> <para> Binary Stream Object.</para> <para>Represents the element tag in schema: vt:ostream </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTStorage"> <summary> <para> Binary Storage.</para> <para>Represents the element tag in schema: vt:storage </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTOStorage"> <summary> <para> Binary Storage Object.</para> <para>Represents the element tag in schema: vt:ostorage </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTVStreamData"> <summary> <para> Binary Versioned Stream.</para> <para>Represents the element tag in schema: vt:vstream </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTClassId"> <summary> <para> Class ID.</para> <para>Represents the element tag in schema: vt:clsid </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.Variant.VTClipboardData"> <summary> <para> Clipboard Data.</para> <para>Represents the element tag in schema: vt:cf </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTVector"> <summary> <para>Vector.</para> <para>When the object is serialized out as xml, its qualified name is vt:vector.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Variant <vt:variant></description></item> <item><description>VTByte <vt:i1></description></item> <item><description>VTShort <vt:i2></description></item> <item><description>VTInt32 <vt:i4></description></item> <item><description>VTInt64 <vt:i8></description></item> <item><description>VTUnsignedByte <vt:ui1></description></item> <item><description>VTUnsignedShort <vt:ui2></description></item> <item><description>VTUnsignedInt32 <vt:ui4></description></item> <item><description>VTUnsignedInt64 <vt:ui8></description></item> <item><description>VTFloat <vt:r4></description></item> <item><description>VTDouble <vt:r8></description></item> <item><description>VTLPSTR <vt:lpstr></description></item> <item><description>VTLPWSTR <vt:lpwstr></description></item> <item><description>VTBString <vt:bstr></description></item> <item><description>VTDate <vt:date></description></item> <item><description>VTFileTime <vt:filetime></description></item> <item><description>VTBool <vt:bool></description></item> <item><description>VTCurrency <vt:cy></description></item> <item><description>VTError <vt:error></description></item> <item><description>VTClassId <vt:clsid></description></item> <item><description>VTClipboardData <vt:cf></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVector.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVector.#ctor"> <summary> Initializes a new instance of the VTVector class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVector.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VTVector class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVector.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VTVector class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVector.#ctor(System.String)"> <summary> Initializes a new instance of the VTVector class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVector.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTVector.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTVector.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTVector.BaseType"> <summary> <para> Vector Base Type.</para> <para>Represents the attribte in schema: baseType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTVector.Size"> <summary> <para> Vector Size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTArray"> <summary> <para>Array.</para> <para>When the object is serialized out as xml, its qualified name is vt:array.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Variant <vt:variant></description></item> <item><description>VTByte <vt:i1></description></item> <item><description>VTShort <vt:i2></description></item> <item><description>VTInt32 <vt:i4></description></item> <item><description>VTInteger <vt:int></description></item> <item><description>VTUnsignedByte <vt:ui1></description></item> <item><description>VTUnsignedShort <vt:ui2></description></item> <item><description>VTUnsignedInt32 <vt:ui4></description></item> <item><description>VTUnsignedInteger <vt:uint></description></item> <item><description>VTFloat <vt:r4></description></item> <item><description>VTDouble <vt:r8></description></item> <item><description>VTDecimal <vt:decimal></description></item> <item><description>VTBString <vt:bstr></description></item> <item><description>VTDate <vt:date></description></item> <item><description>VTBool <vt:bool></description></item> <item><description>VTError <vt:error></description></item> <item><description>VTCurrency <vt:cy></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTArray.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTArray.#ctor"> <summary> Initializes a new instance of the VTArray class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTArray.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VTArray class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTArray.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VTArray class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTArray.#ctor(System.String)"> <summary> Initializes a new instance of the VTArray class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTArray.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTArray.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTArray.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTArray.LowerBounds"> <summary> <para> Array Lower Bounds Attribute.</para> <para>Represents the attribte in schema: lBound </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTArray.UpperBounds"> <summary> <para> Array Upper Bounds Attribute.</para> <para>Represents the attribte in schema: uBound </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTArray.BaseType"> <summary> <para> Array Base Type.</para> <para>Represents the attribte in schema: baseType </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTBlob"> <summary> <para>Binary Blob.</para> <para>When the object is serialized out as xml, its qualified name is vt:blob.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBlob.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBlob.#ctor"> <summary> Initializes a new instance of the VTBlob class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBlob.#ctor(System.String)"> <summary> Initializes a new instance of the VTBlob class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBlob.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTBlob.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTBlob.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTOBlob"> <summary> <para>Binary Blob Object.</para> <para>When the object is serialized out as xml, its qualified name is vt:oblob.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOBlob.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOBlob.#ctor"> <summary> Initializes a new instance of the VTOBlob class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOBlob.#ctor(System.String)"> <summary> Initializes a new instance of the VTOBlob class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOBlob.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTOBlob.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTOBlob.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTStreamData"> <summary> <para>Binary Stream.</para> <para>When the object is serialized out as xml, its qualified name is vt:stream.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTStreamData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTStreamData.#ctor"> <summary> Initializes a new instance of the VTStreamData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTStreamData.#ctor(System.String)"> <summary> Initializes a new instance of the VTStreamData class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTStreamData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTStreamData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTStreamData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTOStreamData"> <summary> <para>Binary Stream Object.</para> <para>When the object is serialized out as xml, its qualified name is vt:ostream.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOStreamData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOStreamData.#ctor"> <summary> Initializes a new instance of the VTOStreamData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOStreamData.#ctor(System.String)"> <summary> Initializes a new instance of the VTOStreamData class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOStreamData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTOStreamData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTOStreamData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTStorage"> <summary> <para>Binary Storage.</para> <para>When the object is serialized out as xml, its qualified name is vt:storage.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTStorage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTStorage.#ctor"> <summary> Initializes a new instance of the VTStorage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTStorage.#ctor(System.String)"> <summary> Initializes a new instance of the VTStorage class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTStorage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTStorage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTStorage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTOStorage"> <summary> <para>Binary Storage Object.</para> <para>When the object is serialized out as xml, its qualified name is vt:ostorage.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOStorage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOStorage.#ctor"> <summary> Initializes a new instance of the VTOStorage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOStorage.#ctor(System.String)"> <summary> Initializes a new instance of the VTOStorage class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTOStorage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTOStorage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTOStorage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTEmpty"> <summary> <para>Empty.</para> <para>When the object is serialized out as xml, its qualified name is vt:empty.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTEmpty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTEmpty.#ctor"> <summary> Initializes a new instance of the VTEmpty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTEmpty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTEmpty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTEmpty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTNull"> <summary> <para>Null.</para> <para>When the object is serialized out as xml, its qualified name is vt:null.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTNull.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTNull.#ctor"> <summary> Initializes a new instance of the VTNull class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTNull.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTNull.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTNull.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTByte"> <summary> <para>1-Byte Signed Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:i1.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTByte.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTByte.#ctor"> <summary> Initializes a new instance of the VTByte class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTByte.#ctor(System.String)"> <summary> Initializes a new instance of the VTByte class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTByte.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTByte.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTByte.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTShort"> <summary> <para>2-Byte Signed Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:i2.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTShort.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTShort.#ctor"> <summary> Initializes a new instance of the VTShort class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTShort.#ctor(System.String)"> <summary> Initializes a new instance of the VTShort class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTShort.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTShort.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTShort.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTInt32"> <summary> <para>4-Byte Signed Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:i4.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInt32.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInt32.#ctor"> <summary> Initializes a new instance of the VTInt32 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInt32.#ctor(System.String)"> <summary> Initializes a new instance of the VTInt32 class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInt32.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTInt32.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTInt32.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTInteger"> <summary> <para>Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:int.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInteger.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInteger.#ctor"> <summary> Initializes a new instance of the VTInteger class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInteger.#ctor(System.String)"> <summary> Initializes a new instance of the VTInteger class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInteger.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTInteger.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTInteger.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTInt64"> <summary> <para>8-Byte Signed Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:i8.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInt64.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInt64.#ctor"> <summary> Initializes a new instance of the VTInt64 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInt64.#ctor(System.String)"> <summary> Initializes a new instance of the VTInt64 class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTInt64.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTInt64.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTInt64.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTUnsignedByte"> <summary> <para>1-Byte Unsigned Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:ui1.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedByte.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedByte.#ctor"> <summary> Initializes a new instance of the VTUnsignedByte class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedByte.#ctor(System.String)"> <summary> Initializes a new instance of the VTUnsignedByte class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedByte.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedByte.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedByte.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTUnsignedShort"> <summary> <para>2-Byte Unsigned Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:ui2.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedShort.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedShort.#ctor"> <summary> Initializes a new instance of the VTUnsignedShort class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedShort.#ctor(System.String)"> <summary> Initializes a new instance of the VTUnsignedShort class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedShort.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedShort.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedShort.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt32"> <summary> <para>4-Byte Unsigned Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:ui4.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt32.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt32.#ctor"> <summary> Initializes a new instance of the VTUnsignedInt32 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt32.#ctor(System.String)"> <summary> Initializes a new instance of the VTUnsignedInt32 class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt32.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt32.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt32.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInteger"> <summary> <para>Unsigned Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:uint.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInteger.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInteger.#ctor"> <summary> Initializes a new instance of the VTUnsignedInteger class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInteger.#ctor(System.String)"> <summary> Initializes a new instance of the VTUnsignedInteger class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInteger.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInteger.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInteger.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt64"> <summary> <para>8-Byte Unsigned Integer.</para> <para>When the object is serialized out as xml, its qualified name is vt:ui8.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt64.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt64.#ctor"> <summary> Initializes a new instance of the VTUnsignedInt64 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt64.#ctor(System.String)"> <summary> Initializes a new instance of the VTUnsignedInt64 class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt64.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt64.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTUnsignedInt64.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTFloat"> <summary> <para>4-Byte Real Number.</para> <para>When the object is serialized out as xml, its qualified name is vt:r4.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTFloat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTFloat.#ctor"> <summary> Initializes a new instance of the VTFloat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTFloat.#ctor(System.String)"> <summary> Initializes a new instance of the VTFloat class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTFloat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTFloat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTFloat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTDouble"> <summary> <para>8-Byte Real Number.</para> <para>When the object is serialized out as xml, its qualified name is vt:r8.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDouble.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDouble.#ctor"> <summary> Initializes a new instance of the VTDouble class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDouble.#ctor(System.String)"> <summary> Initializes a new instance of the VTDouble class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDouble.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTDouble.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTDouble.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTDecimal"> <summary> <para>Decimal.</para> <para>When the object is serialized out as xml, its qualified name is vt:decimal.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDecimal.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDecimal.#ctor"> <summary> Initializes a new instance of the VTDecimal class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDecimal.#ctor(System.String)"> <summary> Initializes a new instance of the VTDecimal class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDecimal.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTDecimal.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTDecimal.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTLPSTR"> <summary> <para>LPSTR.</para> <para>When the object is serialized out as xml, its qualified name is vt:lpstr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTLPSTR.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTLPSTR.#ctor"> <summary> Initializes a new instance of the VTLPSTR class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTLPSTR.#ctor(System.String)"> <summary> Initializes a new instance of the VTLPSTR class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTLPSTR.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTLPSTR.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTLPSTR.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTLPWSTR"> <summary> <para>LPWSTR.</para> <para>When the object is serialized out as xml, its qualified name is vt:lpwstr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTLPWSTR.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTLPWSTR.#ctor"> <summary> Initializes a new instance of the VTLPWSTR class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTLPWSTR.#ctor(System.String)"> <summary> Initializes a new instance of the VTLPWSTR class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTLPWSTR.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTLPWSTR.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTLPWSTR.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTBString"> <summary> <para>Basic String.</para> <para>When the object is serialized out as xml, its qualified name is vt:bstr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBString.#ctor"> <summary> Initializes a new instance of the VTBString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBString.#ctor(System.String)"> <summary> Initializes a new instance of the VTBString class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTBString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTBString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTDate"> <summary> <para>Date and Time.</para> <para>When the object is serialized out as xml, its qualified name is vt:date.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDate.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDate.#ctor"> <summary> Initializes a new instance of the VTDate class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDate.#ctor(System.String)"> <summary> Initializes a new instance of the VTDate class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTDate.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTDate.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTDate.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTFileTime"> <summary> <para>File Time.</para> <para>When the object is serialized out as xml, its qualified name is vt:filetime.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTFileTime.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTFileTime.#ctor"> <summary> Initializes a new instance of the VTFileTime class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTFileTime.#ctor(System.String)"> <summary> Initializes a new instance of the VTFileTime class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTFileTime.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTFileTime.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTFileTime.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTBool"> <summary> <para>Boolean.</para> <para>When the object is serialized out as xml, its qualified name is vt:bool.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBool.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBool.#ctor"> <summary> Initializes a new instance of the VTBool class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBool.#ctor(System.String)"> <summary> Initializes a new instance of the VTBool class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTBool.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTBool.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTBool.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTCurrency"> <summary> <para>Currency.</para> <para>When the object is serialized out as xml, its qualified name is vt:cy.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTCurrency.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTCurrency.#ctor"> <summary> Initializes a new instance of the VTCurrency class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTCurrency.#ctor(System.String)"> <summary> Initializes a new instance of the VTCurrency class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTCurrency.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTCurrency.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTCurrency.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTError"> <summary> <para>Error Status Code.</para> <para>When the object is serialized out as xml, its qualified name is vt:error.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTError.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTError.#ctor"> <summary> Initializes a new instance of the VTError class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTError.#ctor(System.String)"> <summary> Initializes a new instance of the VTError class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTError.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTError.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTError.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTVStreamData"> <summary> <para>Binary Versioned Stream.</para> <para>When the object is serialized out as xml, its qualified name is vt:vstream.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVStreamData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVStreamData.#ctor"> <summary> Initializes a new instance of the VTVStreamData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVStreamData.#ctor(System.String)"> <summary> Initializes a new instance of the VTVStreamData class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTVStreamData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTVStreamData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTVStreamData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTVStreamData.Version"> <summary> <para> VSTREAM Version Attribute.</para> <para>Represents the attribte in schema: version </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTClassId"> <summary> <para>Class ID.</para> <para>When the object is serialized out as xml, its qualified name is vt:clsid.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTClassId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTClassId.#ctor"> <summary> Initializes a new instance of the VTClassId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTClassId.#ctor(System.String)"> <summary> Initializes a new instance of the VTClassId class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTClassId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTClassId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTClassId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VTClipboardData"> <summary> <para>Clipboard Data.</para> <para>When the object is serialized out as xml, its qualified name is vt:cf.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTClipboardData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTClipboardData.#ctor"> <summary> Initializes a new instance of the VTClipboardData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTClipboardData.#ctor(System.String)"> <summary> Initializes a new instance of the VTClipboardData class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.VariantTypes.VTClipboardData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTClipboardData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTClipboardData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTClipboardData.Format"> <summary> <para> Format Attribute.</para> <para>Represents the attribte in schema: format </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.VariantTypes.VTClipboardData.Size"> <summary> <para> size.</para> <para>Represents the attribte in schema: size </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues"> <summary> Vector Base Type Simple Type </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Variant"> <summary> Variant Base Type. <para>When the item is serialized out as xml, its value is "variant".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.OneByteSignedInteger"> <summary> Vector Base Type Enumeration Value. <para>When the item is serialized out as xml, its value is "i1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.TwoBytesSignedInteger"> <summary> 2-Byte Signed Integer Base Type. <para>When the item is serialized out as xml, its value is "i2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.FourBytesSignedInteger"> <summary> 4-Byte Signed Integer Base Type. <para>When the item is serialized out as xml, its value is "i4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.EightBytesSignedInteger"> <summary> 8-Byte Signed Integer Base Type. <para>When the item is serialized out as xml, its value is "i8".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.OneByteUnsignedInteger"> <summary> 1-Byte Unsigned Integer Base Type. <para>When the item is serialized out as xml, its value is "ui1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.TwoBytesUnsignedInteger"> <summary> 2-Byte Unisigned Integer Base Type. <para>When the item is serialized out as xml, its value is "ui2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.FourBytesUnsignedInteger"> <summary> 4-Byte Unsigned Integer Base Type. <para>When the item is serialized out as xml, its value is "ui4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.EightBytesUnsignedInteger"> <summary> 8-Byte Unsigned Integer Base Type. <para>When the item is serialized out as xml, its value is "ui8".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.FourBytesReal"> <summary> 4-Byte Real Number Base Type. <para>When the item is serialized out as xml, its value is "r4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.EightBytesReal"> <summary> 8-Byte Real Number Base Type. <para>When the item is serialized out as xml, its value is "r8".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Lpstr"> <summary> LPSTR Base Type. <para>When the item is serialized out as xml, its value is "lpstr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Lpwstr"> <summary> LPWSTR Base Type. <para>When the item is serialized out as xml, its value is "lpwstr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Bstr"> <summary> Basic String Base Type. <para>When the item is serialized out as xml, its value is "bstr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Date"> <summary> Date and Time Base Type. <para>When the item is serialized out as xml, its value is "date".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Filetime"> <summary> File Time Base Type. <para>When the item is serialized out as xml, its value is "filetime".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Bool"> <summary> Boolean Base Type. <para>When the item is serialized out as xml, its value is "bool".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Currency"> <summary> Currency Base Type. <para>When the item is serialized out as xml, its value is "cy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.Error"> <summary> Error Status Code Base Type. <para>When the item is serialized out as xml, its value is "error".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.ClassId"> <summary> Class ID Base Type. <para>When the item is serialized out as xml, its value is "clsid".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.VectorBaseValues.ClipboardData"> <summary> Clipboard Data Base Type. <para>When the item is serialized out as xml, its value is "cf".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues"> <summary> Array Base Type Simple Type </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.Variant"> <summary> Variant Base Type. <para>When the item is serialized out as xml, its value is "variant".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.OneByteSignedInteger"> <summary> 1-Byte Signed Integer Base Type. <para>When the item is serialized out as xml, its value is "i1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.TwoBytesSignedInteger"> <summary> 2-Byte Signed Integer Base Type. <para>When the item is serialized out as xml, its value is "i2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.FourBytesSignedInteger"> <summary> 4-Byte Signed Integer Base Type. <para>When the item is serialized out as xml, its value is "i4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.Integer"> <summary> Integer Base Type. <para>When the item is serialized out as xml, its value is "int".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.OneByteUnsignedInteger"> <summary> 1-Byte Unsigned Integer Base Type. <para>When the item is serialized out as xml, its value is "ui1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.TwoBytesUnsignedInteger"> <summary> 2-Byte Unsigned Integer Base Type. <para>When the item is serialized out as xml, its value is "ui2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.FourBytesUnsignedInteger"> <summary> 4-Byte Unsigned Integer Base Type. <para>When the item is serialized out as xml, its value is "ui4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.UnsignedInteger"> <summary> Unsigned Integer Base Type. <para>When the item is serialized out as xml, its value is "uint".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.FourBytesReal"> <summary> 4-Byte Real Number Base Type. <para>When the item is serialized out as xml, its value is "r4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.EightBytesReal"> <summary> 8-Byte Real Number Base Type. <para>When the item is serialized out as xml, its value is "r8".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.Decimal"> <summary> Decimal Base Type. <para>When the item is serialized out as xml, its value is "decimal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.Bstr"> <summary> Basic String Base Type. <para>When the item is serialized out as xml, its value is "bstr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.Date"> <summary> Date and Time Base Type. <para>When the item is serialized out as xml, its value is "date".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.Bool"> <summary> Boolean Base Type. <para>When the item is serialized out as xml, its value is "bool".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.Currency"> <summary> Curency Base Type. <para>When the item is serialized out as xml, its value is "cy".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.VariantTypes.ArrayBaseValues.Error"> <summary> Error Status Code Base Type. <para>When the item is serialized out as xml, its value is "error".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Properties"> <summary> <para>Application Specific File Properties. It is the root element of ExtendedFilePropertiesPart.</para> <para>When the object is serialized out as xml, its qualified name is ap:Properties.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Template <ap:Template></description></item> <item><description>Manager <ap:Manager></description></item> <item><description>Company <ap:Company></description></item> <item><description>Pages <ap:Pages></description></item> <item><description>Words <ap:Words></description></item> <item><description>Characters <ap:Characters></description></item> <item><description>PresentationFormat <ap:PresentationFormat></description></item> <item><description>Lines <ap:Lines></description></item> <item><description>Paragraphs <ap:Paragraphs></description></item> <item><description>Slides <ap:Slides></description></item> <item><description>Notes <ap:Notes></description></item> <item><description>TotalTime <ap:TotalTime></description></item> <item><description>HiddenSlides <ap:HiddenSlides></description></item> <item><description>MultimediaClips <ap:MMClips></description></item> <item><description>ScaleCrop <ap:ScaleCrop></description></item> <item><description>HeadingPairs <ap:HeadingPairs></description></item> <item><description>TitlesOfParts <ap:TitlesOfParts></description></item> <item><description>LinksUpToDate <ap:LinksUpToDate></description></item> <item><description>CharactersWithSpaces <ap:CharactersWithSpaces></description></item> <item><description>SharedDocument <ap:SharedDoc></description></item> <item><description>HyperlinkBase <ap:HyperlinkBase></description></item> <item><description>HyperlinkList <ap:HLinks></description></item> <item><description>HyperlinksChanged <ap:HyperlinksChanged></description></item> <item><description>DigitalSignature <ap:DigSig></description></item> <item><description>Application <ap:Application></description></item> <item><description>ApplicationVersion <ap:AppVersion></description></item> <item><description>DocumentSecurity <ap:DocSecurity></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.#ctor(DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart)"> <summary> Properties constructor </summary> <param name="ownerPart">The owner part of the Properties</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.Load(DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart)"> <summary> Loads the DOM from the ExtendedFilePropertiesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Properties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Properties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.#ctor(System.String)"> <summary> Initializes a new instance of the Properties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.#ctor"> <summary> Initializes a new instance of the Properties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.Save(DocumentFormat.OpenXml.Packaging.ExtendedFilePropertiesPart)"> <summary> Saves the DOM into the ExtendedFilePropertiesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Properties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.ExtendedFilePropertiesPart"> <summary> Gets the ExtendedFilePropertiesPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Template"> <summary> <para> Name of Document Template.</para> <para>Represents the element tag in schema: ap:Template </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Manager"> <summary> <para> Name of Manager.</para> <para>Represents the element tag in schema: ap:Manager </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Company"> <summary> <para> Name of Company.</para> <para>Represents the element tag in schema: ap:Company </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Pages"> <summary> <para> Total Number of Pages.</para> <para>Represents the element tag in schema: ap:Pages </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Words"> <summary> <para> Word Count.</para> <para>Represents the element tag in schema: ap:Words </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Characters"> <summary> <para> Total Number of Characters.</para> <para>Represents the element tag in schema: ap:Characters </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.PresentationFormat"> <summary> <para> Intended Format of Presentation.</para> <para>Represents the element tag in schema: ap:PresentationFormat </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Lines"> <summary> <para> Number of Lines.</para> <para>Represents the element tag in schema: ap:Lines </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Paragraphs"> <summary> <para> Total Number of Paragraphs.</para> <para>Represents the element tag in schema: ap:Paragraphs </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Slides"> <summary> <para> Slides Metadata Element.</para> <para>Represents the element tag in schema: ap:Slides </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Notes"> <summary> <para> Number of Slides Containing Notes.</para> <para>Represents the element tag in schema: ap:Notes </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.TotalTime"> <summary> <para> Total Edit Time Metadata Element.</para> <para>Represents the element tag in schema: ap:TotalTime </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.HiddenSlides"> <summary> <para> Number of Hidden Slides.</para> <para>Represents the element tag in schema: ap:HiddenSlides </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.MultimediaClips"> <summary> <para> Total Number of Multimedia Clips.</para> <para>Represents the element tag in schema: ap:MMClips </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.ScaleCrop"> <summary> <para> Thumbnail Display Mode.</para> <para>Represents the element tag in schema: ap:ScaleCrop </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.HeadingPairs"> <summary> <para> Heading Pairs.</para> <para>Represents the element tag in schema: ap:HeadingPairs </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.TitlesOfParts"> <summary> <para> Part Titles.</para> <para>Represents the element tag in schema: ap:TitlesOfParts </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.LinksUpToDate"> <summary> <para> Links Up-to-Date.</para> <para>Represents the element tag in schema: ap:LinksUpToDate </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.CharactersWithSpaces"> <summary> <para> Number of Characters (With Spaces).</para> <para>Represents the element tag in schema: ap:CharactersWithSpaces </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.SharedDocument"> <summary> <para> Shared Document.</para> <para>Represents the element tag in schema: ap:SharedDoc </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.HyperlinkBase"> <summary> <para> Relative Hyperlink Base.</para> <para>Represents the element tag in schema: ap:HyperlinkBase </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.HyperlinkList"> <summary> <para> Hyperlink List.</para> <para>Represents the element tag in schema: ap:HLinks </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.HyperlinksChanged"> <summary> <para> Hyperlinks Changed.</para> <para>Represents the element tag in schema: ap:HyperlinksChanged </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.DigitalSignature"> <summary> <para> Digital Signature.</para> <para>Represents the element tag in schema: ap:DigSig </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.Application"> <summary> <para> Application Name.</para> <para>Represents the element tag in schema: ap:Application </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.ApplicationVersion"> <summary> <para> Application Version.</para> <para>Represents the element tag in schema: ap:AppVersion </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Properties.DocumentSecurity"> <summary> <para> Document Security.</para> <para>Represents the element tag in schema: ap:DocSecurity </para> </summary> <remark> xmlns:ap = http://schemas.openxmlformats.org/officeDocument/2006/extended-properties </remark> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Template"> <summary> <para>Name of Document Template.</para> <para>When the object is serialized out as xml, its qualified name is ap:Template.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Template.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Template.#ctor"> <summary> Initializes a new instance of the Template class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Template.#ctor(System.String)"> <summary> Initializes a new instance of the Template class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Template.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Template.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Template.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Manager"> <summary> <para>Name of Manager.</para> <para>When the object is serialized out as xml, its qualified name is ap:Manager.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Manager.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Manager.#ctor"> <summary> Initializes a new instance of the Manager class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Manager.#ctor(System.String)"> <summary> Initializes a new instance of the Manager class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Manager.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Manager.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Manager.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Company"> <summary> <para>Name of Company.</para> <para>When the object is serialized out as xml, its qualified name is ap:Company.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Company.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Company.#ctor"> <summary> Initializes a new instance of the Company class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Company.#ctor(System.String)"> <summary> Initializes a new instance of the Company class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Company.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Company.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Company.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.PresentationFormat"> <summary> <para>Intended Format of Presentation.</para> <para>When the object is serialized out as xml, its qualified name is ap:PresentationFormat.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.PresentationFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.PresentationFormat.#ctor"> <summary> Initializes a new instance of the PresentationFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.PresentationFormat.#ctor(System.String)"> <summary> Initializes a new instance of the PresentationFormat class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.PresentationFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.PresentationFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.PresentationFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkBase"> <summary> <para>Relative Hyperlink Base.</para> <para>When the object is serialized out as xml, its qualified name is ap:HyperlinkBase.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkBase.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkBase.#ctor"> <summary> Initializes a new instance of the HyperlinkBase class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkBase.#ctor(System.String)"> <summary> Initializes a new instance of the HyperlinkBase class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkBase.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkBase.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkBase.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Application"> <summary> <para>Application Name.</para> <para>When the object is serialized out as xml, its qualified name is ap:Application.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Application.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Application.#ctor"> <summary> Initializes a new instance of the Application class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Application.#ctor(System.String)"> <summary> Initializes a new instance of the Application class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Application.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Application.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Application.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.ApplicationVersion"> <summary> <para>Application Version.</para> <para>When the object is serialized out as xml, its qualified name is ap:AppVersion.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.ApplicationVersion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.ApplicationVersion.#ctor"> <summary> Initializes a new instance of the ApplicationVersion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.ApplicationVersion.#ctor(System.String)"> <summary> Initializes a new instance of the ApplicationVersion class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.ApplicationVersion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.ApplicationVersion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.ApplicationVersion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Pages"> <summary> <para>Total Number of Pages.</para> <para>When the object is serialized out as xml, its qualified name is ap:Pages.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Pages.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Pages.#ctor"> <summary> Initializes a new instance of the Pages class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Pages.#ctor(System.String)"> <summary> Initializes a new instance of the Pages class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Pages.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Pages.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Pages.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Words"> <summary> <para>Word Count.</para> <para>When the object is serialized out as xml, its qualified name is ap:Words.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Words.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Words.#ctor"> <summary> Initializes a new instance of the Words class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Words.#ctor(System.String)"> <summary> Initializes a new instance of the Words class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Words.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Words.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Words.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Characters"> <summary> <para>Total Number of Characters.</para> <para>When the object is serialized out as xml, its qualified name is ap:Characters.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Characters.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Characters.#ctor"> <summary> Initializes a new instance of the Characters class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Characters.#ctor(System.String)"> <summary> Initializes a new instance of the Characters class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Characters.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Characters.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Characters.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Lines"> <summary> <para>Number of Lines.</para> <para>When the object is serialized out as xml, its qualified name is ap:Lines.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Lines.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Lines.#ctor"> <summary> Initializes a new instance of the Lines class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Lines.#ctor(System.String)"> <summary> Initializes a new instance of the Lines class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Lines.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Lines.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Lines.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Paragraphs"> <summary> <para>Total Number of Paragraphs.</para> <para>When the object is serialized out as xml, its qualified name is ap:Paragraphs.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Paragraphs.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Paragraphs.#ctor"> <summary> Initializes a new instance of the Paragraphs class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Paragraphs.#ctor(System.String)"> <summary> Initializes a new instance of the Paragraphs class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Paragraphs.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Paragraphs.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Paragraphs.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Slides"> <summary> <para>Slides Metadata Element.</para> <para>When the object is serialized out as xml, its qualified name is ap:Slides.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Slides.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Slides.#ctor"> <summary> Initializes a new instance of the Slides class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Slides.#ctor(System.String)"> <summary> Initializes a new instance of the Slides class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Slides.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Slides.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Slides.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.Notes"> <summary> <para>Number of Slides Containing Notes.</para> <para>When the object is serialized out as xml, its qualified name is ap:Notes.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Notes.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Notes.#ctor"> <summary> Initializes a new instance of the Notes class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Notes.#ctor(System.String)"> <summary> Initializes a new instance of the Notes class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.Notes.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Notes.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.Notes.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.TotalTime"> <summary> <para>Total Edit Time Metadata Element.</para> <para>When the object is serialized out as xml, its qualified name is ap:TotalTime.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TotalTime.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TotalTime.#ctor"> <summary> Initializes a new instance of the TotalTime class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TotalTime.#ctor(System.String)"> <summary> Initializes a new instance of the TotalTime class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TotalTime.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.TotalTime.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.TotalTime.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.HiddenSlides"> <summary> <para>Number of Hidden Slides.</para> <para>When the object is serialized out as xml, its qualified name is ap:HiddenSlides.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HiddenSlides.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HiddenSlides.#ctor"> <summary> Initializes a new instance of the HiddenSlides class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HiddenSlides.#ctor(System.String)"> <summary> Initializes a new instance of the HiddenSlides class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HiddenSlides.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HiddenSlides.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HiddenSlides.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.MultimediaClips"> <summary> <para>Total Number of Multimedia Clips.</para> <para>When the object is serialized out as xml, its qualified name is ap:MMClips.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.MultimediaClips.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.MultimediaClips.#ctor"> <summary> Initializes a new instance of the MultimediaClips class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.MultimediaClips.#ctor(System.String)"> <summary> Initializes a new instance of the MultimediaClips class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.MultimediaClips.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.MultimediaClips.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.MultimediaClips.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.CharactersWithSpaces"> <summary> <para>Number of Characters (With Spaces).</para> <para>When the object is serialized out as xml, its qualified name is ap:CharactersWithSpaces.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.CharactersWithSpaces.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.CharactersWithSpaces.#ctor"> <summary> Initializes a new instance of the CharactersWithSpaces class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.CharactersWithSpaces.#ctor(System.String)"> <summary> Initializes a new instance of the CharactersWithSpaces class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.CharactersWithSpaces.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.CharactersWithSpaces.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.CharactersWithSpaces.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.DocumentSecurity"> <summary> <para>Document Security.</para> <para>When the object is serialized out as xml, its qualified name is ap:DocSecurity.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DocumentSecurity.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DocumentSecurity.#ctor"> <summary> Initializes a new instance of the DocumentSecurity class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DocumentSecurity.#ctor(System.String)"> <summary> Initializes a new instance of the DocumentSecurity class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DocumentSecurity.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.DocumentSecurity.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.DocumentSecurity.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.ScaleCrop"> <summary> <para>Thumbnail Display Mode.</para> <para>When the object is serialized out as xml, its qualified name is ap:ScaleCrop.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.ScaleCrop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.ScaleCrop.#ctor"> <summary> Initializes a new instance of the ScaleCrop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.ScaleCrop.#ctor(System.String)"> <summary> Initializes a new instance of the ScaleCrop class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.ScaleCrop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.ScaleCrop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.ScaleCrop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.LinksUpToDate"> <summary> <para>Links Up-to-Date.</para> <para>When the object is serialized out as xml, its qualified name is ap:LinksUpToDate.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.LinksUpToDate.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.LinksUpToDate.#ctor"> <summary> Initializes a new instance of the LinksUpToDate class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.LinksUpToDate.#ctor(System.String)"> <summary> Initializes a new instance of the LinksUpToDate class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.LinksUpToDate.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.LinksUpToDate.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.LinksUpToDate.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.SharedDocument"> <summary> <para>Shared Document.</para> <para>When the object is serialized out as xml, its qualified name is ap:SharedDoc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.SharedDocument.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.SharedDocument.#ctor"> <summary> Initializes a new instance of the SharedDocument class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.SharedDocument.#ctor(System.String)"> <summary> Initializes a new instance of the SharedDocument class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.SharedDocument.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.SharedDocument.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.SharedDocument.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.HyperlinksChanged"> <summary> <para>Hyperlinks Changed.</para> <para>When the object is serialized out as xml, its qualified name is ap:HyperlinksChanged.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinksChanged.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinksChanged.#ctor"> <summary> Initializes a new instance of the HyperlinksChanged class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinksChanged.#ctor(System.String)"> <summary> Initializes a new instance of the HyperlinksChanged class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinksChanged.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HyperlinksChanged.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HyperlinksChanged.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs"> <summary> <para>Heading Pairs.</para> <para>When the object is serialized out as xml, its qualified name is ap:HeadingPairs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.VariantTypes.VTVector <vt:vector></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.VectorVariantType"> <summary> Defines the VectorVariantType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.VariantTypes.VTVector <vt:vector></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.VectorVariantType.#ctor"> <summary> Initializes a new instance of the VectorVariantType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.VectorVariantType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VectorVariantType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.VectorVariantType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VectorVariantType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.VectorVariantType.#ctor(System.String)"> <summary> Initializes a new instance of the VectorVariantType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.VectorVariantType.VTVector"> <summary> <para> Vector.</para> <para>Represents the element tag in schema: vt:vector </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs.#ctor"> <summary> Initializes a new instance of the HeadingPairs class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HeadingPairs class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HeadingPairs class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs.#ctor(System.String)"> <summary> Initializes a new instance of the HeadingPairs class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HeadingPairs.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList"> <summary> <para>Hyperlink List.</para> <para>When the object is serialized out as xml, its qualified name is ap:HLinks.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.VariantTypes.VTVector <vt:vector></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList.#ctor"> <summary> Initializes a new instance of the HyperlinkList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HyperlinkList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HyperlinkList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList.#ctor(System.String)"> <summary> Initializes a new instance of the HyperlinkList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.HyperlinkList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts"> <summary> <para>Part Titles.</para> <para>When the object is serialized out as xml, its qualified name is ap:TitlesOfParts.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.VariantTypes.VTVector <vt:vector></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.#ctor"> <summary> Initializes a new instance of the TitlesOfParts class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TitlesOfParts class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TitlesOfParts class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.#ctor(System.String)"> <summary> Initializes a new instance of the TitlesOfParts class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.TitlesOfParts.VTVector"> <summary> <para> Vector.</para> <para>Represents the element tag in schema: vt:vector </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="T:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature"> <summary> <para>Digital Signature.</para> <para>When the object is serialized out as xml, its qualified name is ap:DigSig.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.VariantTypes.VTBlob <vt:blob></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.#ctor"> <summary> Initializes a new instance of the DigitalSignature class. </summary> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DigitalSignature class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DigitalSignature class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.#ctor(System.String)"> <summary> Initializes a new instance of the DigitalSignature class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.ExtendedProperties.DigitalSignature.VTBlob"> <summary> <para> Binary Blob.</para> <para>Represents the element tag in schema: vt:blob </para> </summary> <remark> xmlns:vt = http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Script"> <summary> <para>Script.</para> <para>When the object is serialized out as xml, its qualified name is m:scr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Script.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Script.#ctor"> <summary> Initializes a new instance of the Script class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Script.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Script.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Script.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Script.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Style"> <summary> <para>style.</para> <para>When the object is serialized out as xml, its qualified name is m:sty.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Style.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Style.#ctor"> <summary> Initializes a new instance of the Style class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Style.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Style.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Style.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Style.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Run"> <summary> <para>Defines the Run Class.</para> <para>When the object is serialized out as xml, its qualified name is m:r.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RunProperties <m:rPr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.RunProperties <w:rPr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Break <w:br></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Text <w:t></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedText <w:delText></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.FieldCode <w:instrText></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedFieldCode <w:delInstrText></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.NoBreakHyphen <w:noBreakHyphen></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SoftHyphen <w:softHyphen></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DayShort <w:dayShort></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MonthShort <w:monthShort></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.YearShort <w:yearShort></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DayLong <w:dayLong></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MonthLong <w:monthLong></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.YearLong <w:yearLong></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.AnnotationReferenceMark <w:annotationRef></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.FootnoteReferenceMark <w:footnoteRef></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.EndnoteReferenceMark <w:endnoteRef></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SeparatorMark <w:separator></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContinuationSeparatorMark <w:continuationSeparator></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SymbolChar <w:sym></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PageNumber <w:pgNum></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CarriageReturn <w:cr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.TabChar <w:tab></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.EmbeddedObject <w:object></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Picture <w:pict></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.FieldChar <w:fldChar></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Ruby <w:ruby></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.FootnoteReference <w:footnoteReference></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.EndnoteReference <w:endnoteReference></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentReference <w:commentReference></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Drawing <w:drawing></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PositionalTab <w:ptab></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.LastRenderedPageBreak <w:lastRenderedPageBreak></description></item> <item><description>Text <m:t></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Run.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Run.#ctor"> <summary> Initializes a new instance of the Run class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Run.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Run class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Run.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Run class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Run.#ctor(System.String)"> <summary> Initializes a new instance of the Run class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Run.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Run.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Run.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Run.MathRunProperties"> <summary> <para> Run Properties.</para> <para>Represents the element tag in schema: m:rPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Run.RunProperties"> <summary> <para> Run Properties.</para> <para>Represents the element tag in schema: w:rPr </para> </summary> <remark> xmlns:w = http://schemas.openxmlformats.org/wordprocessingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Accent"> <summary> <para>Accent.</para> <para>When the object is serialized out as xml, its qualified name is m:acc.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AccentProperties <m:accPr></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Accent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Accent.#ctor"> <summary> Initializes a new instance of the Accent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Accent.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Accent class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Accent.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Accent class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Accent.#ctor(System.String)"> <summary> Initializes a new instance of the Accent class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Accent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Accent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Accent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Accent.AccentProperties"> <summary> <para> Accent Properties.</para> <para>Represents the element tag in schema: m:accPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Accent.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Bar"> <summary> <para>Bar.</para> <para>When the object is serialized out as xml, its qualified name is m:bar.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BarProperties <m:barPr></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Bar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Bar.#ctor"> <summary> Initializes a new instance of the Bar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Bar.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Bar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Bar.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Bar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Bar.#ctor(System.String)"> <summary> Initializes a new instance of the Bar class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Bar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Bar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Bar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Bar.BarProperties"> <summary> <para> Bar Properties.</para> <para>Represents the element tag in schema: m:barPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Bar.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Box"> <summary> <para>Box Function.</para> <para>When the object is serialized out as xml, its qualified name is m:box.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BoxProperties <m:boxPr></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Box.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Box.#ctor"> <summary> Initializes a new instance of the Box class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Box.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Box class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Box.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Box class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Box.#ctor(System.String)"> <summary> Initializes a new instance of the Box class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Box.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Box.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Box.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Box.BoxProperties"> <summary> <para> Box Properties.</para> <para>Represents the element tag in schema: m:boxPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Box.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.BorderBox"> <summary> <para>Border-Box Function.</para> <para>When the object is serialized out as xml, its qualified name is m:borderBox.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BorderBoxProperties <m:borderBoxPr></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBox.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBox.#ctor"> <summary> Initializes a new instance of the BorderBox class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBox.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BorderBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBox.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BorderBox class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBox.#ctor(System.String)"> <summary> Initializes a new instance of the BorderBox class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBox.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBox.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBox.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBox.BorderBoxProperties"> <summary> <para> Border Box Properties.</para> <para>Represents the element tag in schema: m:borderBoxPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBox.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Delimiter"> <summary> <para>Delimiter Function.</para> <para>When the object is serialized out as xml, its qualified name is m:d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DelimiterProperties <m:dPr></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Delimiter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Delimiter.#ctor"> <summary> Initializes a new instance of the Delimiter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Delimiter.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Delimiter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Delimiter.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Delimiter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Delimiter.#ctor(System.String)"> <summary> Initializes a new instance of the Delimiter class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Delimiter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Delimiter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Delimiter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Delimiter.DelimiterProperties"> <summary> <para> Delimiter Properties.</para> <para>Represents the element tag in schema: m:dPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.EquationArray"> <summary> <para>Equation-Array Function.</para> <para>When the object is serialized out as xml, its qualified name is m:eqArr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EquationArrayProperties <m:eqArrPr></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArray.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArray.#ctor"> <summary> Initializes a new instance of the EquationArray class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArray.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EquationArray class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArray.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EquationArray class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArray.#ctor(System.String)"> <summary> Initializes a new instance of the EquationArray class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArray.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArray.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArray.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArray.EquationArrayProperties"> <summary> <para> Equation Array Properties.</para> <para>Represents the element tag in schema: m:eqArrPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Fraction"> <summary> <para>Fraction Function.</para> <para>When the object is serialized out as xml, its qualified name is m:f.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FractionProperties <m:fPr></description></item> <item><description>Numerator <m:num></description></item> <item><description>Denominator <m:den></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Fraction.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Fraction.#ctor"> <summary> Initializes a new instance of the Fraction class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Fraction.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Fraction class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Fraction.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Fraction class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Fraction.#ctor(System.String)"> <summary> Initializes a new instance of the Fraction class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Fraction.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Fraction.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Fraction.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Fraction.FractionProperties"> <summary> <para> Fraction Properties.</para> <para>Represents the element tag in schema: m:fPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Fraction.Numerator"> <summary> <para> Numerator.</para> <para>Represents the element tag in schema: m:num </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Fraction.Denominator"> <summary> <para> Denominator.</para> <para>Represents the element tag in schema: m:den </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.MathFunction"> <summary> <para>Function Apply Function.</para> <para>When the object is serialized out as xml, its qualified name is m:func.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FunctionProperties <m:funcPr></description></item> <item><description>FunctionName <m:fName></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFunction.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFunction.#ctor"> <summary> Initializes a new instance of the MathFunction class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFunction.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MathFunction class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFunction.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MathFunction class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFunction.#ctor(System.String)"> <summary> Initializes a new instance of the MathFunction class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFunction.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MathFunction.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MathFunction.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MathFunction.FunctionProperties"> <summary> <para> Function Properties.</para> <para>Represents the element tag in schema: m:funcPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathFunction.FunctionName"> <summary> <para> Function Name.</para> <para>Represents the element tag in schema: m:fName </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathFunction.Base"> <summary> <para> Base (Argument).</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.GroupChar"> <summary> <para>Group-Character Function.</para> <para>When the object is serialized out as xml, its qualified name is m:groupChr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GroupCharProperties <m:groupChrPr></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupChar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupChar.#ctor"> <summary> Initializes a new instance of the GroupChar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupChar.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupChar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupChar.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupChar class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupChar.#ctor(System.String)"> <summary> Initializes a new instance of the GroupChar class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupChar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupChar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupChar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupChar.GroupCharProperties"> <summary> <para> Group-Character Properties.</para> <para>Represents the element tag in schema: m:groupChrPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupChar.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.LimitLower"> <summary> <para>Lower-Limit Function.</para> <para>When the object is serialized out as xml, its qualified name is m:limLow.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LimitLowerProperties <m:limLowPr></description></item> <item><description>Base <m:e></description></item> <item><description>Limit <m:lim></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLower.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLower.#ctor"> <summary> Initializes a new instance of the LimitLower class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLower.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LimitLower class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLower.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LimitLower class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLower.#ctor(System.String)"> <summary> Initializes a new instance of the LimitLower class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLower.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLower.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLower.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLower.LimitLowerProperties"> <summary> <para> Lower Limit Properties.</para> <para>Represents the element tag in schema: m:limLowPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLower.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLower.Limit"> <summary> <para> Limit (Lower).</para> <para>Represents the element tag in schema: m:lim </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.LimitUpper"> <summary> <para>Upper-Limit Function.</para> <para>When the object is serialized out as xml, its qualified name is m:limUpp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>LimitUpperProperties <m:limUppPr></description></item> <item><description>Base <m:e></description></item> <item><description>Limit <m:lim></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpper.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpper.#ctor"> <summary> Initializes a new instance of the LimitUpper class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpper.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LimitUpper class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpper.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LimitUpper class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpper.#ctor(System.String)"> <summary> Initializes a new instance of the LimitUpper class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpper.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitUpper.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitUpper.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitUpper.LimitUpperProperties"> <summary> <para> Upper Limit Properties.</para> <para>Represents the element tag in schema: m:limUppPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitUpper.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitUpper.Limit"> <summary> <para> Limit (Upper).</para> <para>Represents the element tag in schema: m:lim </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Matrix"> <summary> <para>Matrix Function.</para> <para>When the object is serialized out as xml, its qualified name is m:m.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MatrixProperties <m:mPr></description></item> <item><description>MatrixRow <m:mr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Matrix.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Matrix.#ctor"> <summary> Initializes a new instance of the Matrix class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Matrix.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Matrix class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Matrix.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Matrix class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Matrix.#ctor(System.String)"> <summary> Initializes a new instance of the Matrix class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Matrix.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Matrix.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Matrix.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Matrix.MatrixProperties"> <summary> <para> Matrix Properties.</para> <para>Represents the element tag in schema: m:mPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Nary"> <summary> <para>n-ary Operator Function.</para> <para>When the object is serialized out as xml, its qualified name is m:nary.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NaryProperties <m:naryPr></description></item> <item><description>SubArgument <m:sub></description></item> <item><description>SuperArgument <m:sup></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Nary.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Nary.#ctor"> <summary> Initializes a new instance of the Nary class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Nary.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Nary class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Nary.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Nary class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Nary.#ctor(System.String)"> <summary> Initializes a new instance of the Nary class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Nary.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Nary.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Nary.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Nary.NaryProperties"> <summary> <para> n-ary Properties.</para> <para>Represents the element tag in schema: m:naryPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Nary.SubArgument"> <summary> <para> Lower limit (n-ary) .</para> <para>Represents the element tag in schema: m:sub </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Nary.SuperArgument"> <summary> <para> Upper limit (n-ary).</para> <para>Represents the element tag in schema: m:sup </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Nary.Base"> <summary> <para> Base (Argument).</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Phantom"> <summary> <para>Phantom Function.</para> <para>When the object is serialized out as xml, its qualified name is m:phant.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PhantomProperties <m:phantPr></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Phantom.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Phantom.#ctor"> <summary> Initializes a new instance of the Phantom class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Phantom.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Phantom class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Phantom.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Phantom class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Phantom.#ctor(System.String)"> <summary> Initializes a new instance of the Phantom class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Phantom.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Phantom.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Phantom.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Phantom.PhantomProperties"> <summary> <para> Phantom Properties.</para> <para>Represents the element tag in schema: m:phantPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Phantom.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Radical"> <summary> <para>Radical Function.</para> <para>When the object is serialized out as xml, its qualified name is m:rad.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RadicalProperties <m:radPr></description></item> <item><description>Degree <m:deg></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Radical.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Radical.#ctor"> <summary> Initializes a new instance of the Radical class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Radical.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Radical class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Radical.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Radical class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Radical.#ctor(System.String)"> <summary> Initializes a new instance of the Radical class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Radical.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Radical.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Radical.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Radical.RadicalProperties"> <summary> <para> Radical Properties.</para> <para>Represents the element tag in schema: m:radPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Radical.Degree"> <summary> <para> Degree.</para> <para>Represents the element tag in schema: m:deg </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Radical.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.PreSubSuper"> <summary> <para>Pre-Sub-Superscript Function.</para> <para>When the object is serialized out as xml, its qualified name is m:sPre.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PreSubSuperProperties <m:sPrePr></description></item> <item><description>SubArgument <m:sub></description></item> <item><description>SuperArgument <m:sup></description></item> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuper.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuper.#ctor"> <summary> Initializes a new instance of the PreSubSuper class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuper.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PreSubSuper class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuper.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PreSubSuper class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuper.#ctor(System.String)"> <summary> Initializes a new instance of the PreSubSuper class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuper.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuper.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuper.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuper.PreSubSuperProperties"> <summary> <para> Pre-Sub-Superscript Properties.</para> <para>Represents the element tag in schema: m:sPrePr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuper.SubArgument"> <summary> <para> Subscript (Pre-Sub-Superscript).</para> <para>Represents the element tag in schema: m:sub </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuper.SuperArgument"> <summary> <para> Superscript(Pre-Sub-Superscript function).</para> <para>Represents the element tag in schema: m:sup </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuper.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Subscript"> <summary> <para>Subscript Function.</para> <para>When the object is serialized out as xml, its qualified name is m:sSub.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SubscriptProperties <m:sSubPr></description></item> <item><description>Base <m:e></description></item> <item><description>SubArgument <m:sub></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Subscript.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Subscript.#ctor"> <summary> Initializes a new instance of the Subscript class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Subscript.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Subscript class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Subscript.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Subscript class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Subscript.#ctor(System.String)"> <summary> Initializes a new instance of the Subscript class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Subscript.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Subscript.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Subscript.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Subscript.SubscriptProperties"> <summary> <para> Subscript Properties.</para> <para>Represents the element tag in schema: m:sSubPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Subscript.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Subscript.SubArgument"> <summary> <para> Subscript (Subscript function).</para> <para>Represents the element tag in schema: m:sub </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.SubSuperscript"> <summary> <para>Sub-Superscript Function.</para> <para>When the object is serialized out as xml, its qualified name is m:sSubSup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SubSuperscriptProperties <m:sSubSupPr></description></item> <item><description>Base <m:e></description></item> <item><description>SubArgument <m:sub></description></item> <item><description>SuperArgument <m:sup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscript.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscript.#ctor"> <summary> Initializes a new instance of the SubSuperscript class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscript.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SubSuperscript class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscript.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SubSuperscript class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscript.#ctor(System.String)"> <summary> Initializes a new instance of the SubSuperscript class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscript.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscript.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscript.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscript.SubSuperscriptProperties"> <summary> <para> Sub-Superscript Properties.</para> <para>Represents the element tag in schema: m:sSubSupPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscript.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscript.SubArgument"> <summary> <para> Subscript (Sub-Superscript).</para> <para>Represents the element tag in schema: m:sub </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscript.SuperArgument"> <summary> <para> Superscript (Sub-Superscript function).</para> <para>Represents the element tag in schema: m:sup </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Superscript"> <summary> <para>Superscript Function.</para> <para>When the object is serialized out as xml, its qualified name is m:sSup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SuperscriptProperties <m:sSupPr></description></item> <item><description>Base <m:e></description></item> <item><description>SuperArgument <m:sup></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Superscript.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Superscript.#ctor"> <summary> Initializes a new instance of the Superscript class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Superscript.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Superscript class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Superscript.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Superscript class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Superscript.#ctor(System.String)"> <summary> Initializes a new instance of the Superscript class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Superscript.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Superscript.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Superscript.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Superscript.SuperscriptProperties"> <summary> <para> Superscript Properties.</para> <para>Represents the element tag in schema: m:sSupPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Superscript.Base"> <summary> <para> Base.</para> <para>Represents the element tag in schema: m:e </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Superscript.SuperArgument"> <summary> <para> Superscript (Superscript function).</para> <para>Represents the element tag in schema: m:sup </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Paragraph"> <summary> <para>Defines the Paragraph Class.</para> <para>When the object is serialized out as xml, its qualified name is m:oMathPara.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ParagraphProperties <m:oMathParaPr></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Run <w:r></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Paragraph.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Paragraph.#ctor"> <summary> Initializes a new instance of the Paragraph class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Paragraph.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Paragraph class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Paragraph.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Paragraph class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Paragraph.#ctor(System.String)"> <summary> Initializes a new instance of the Paragraph class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Paragraph.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Paragraph.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Paragraph.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Paragraph.ParagraphProperties"> <summary> <para> Office Math Paragraph Properties.</para> <para>Represents the element tag in schema: m:oMathParaPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.OfficeMath"> <summary> <para>Defines the OfficeMath Class.</para> <para>When the object is serialized out as xml, its qualified name is m:oMath.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMath.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMath.#ctor"> <summary> Initializes a new instance of the OfficeMath class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMath.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeMath class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMath.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeMath class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMath.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeMath class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMath.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.OfficeMath.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.OfficeMath.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.MathProperties"> <summary> <para>Math Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:mathPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MathFont <m:mathFont></description></item> <item><description>BreakBinary <m:brkBin></description></item> <item><description>BreakBinarySubtraction <m:brkBinSub></description></item> <item><description>SmallFraction <m:smallFrac></description></item> <item><description>DisplayDefaults <m:dispDef></description></item> <item><description>LeftMargin <m:lMargin></description></item> <item><description>RightMargin <m:rMargin></description></item> <item><description>DefaultJustification <m:defJc></description></item> <item><description>PreSpacing <m:preSp></description></item> <item><description>PostSpacing <m:postSp></description></item> <item><description>InterSpacing <m:interSp></description></item> <item><description>IntraSpacing <m:intraSp></description></item> <item><description>WrapIndent <m:wrapIndent></description></item> <item><description>WrapRight <m:wrapRight></description></item> <item><description>IntegralLimitLocation <m:intLim></description></item> <item><description>NaryLimitLocation <m:naryLim></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.MathProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MathProperties.#ctor"> <summary> Initializes a new instance of the MathProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MathProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MathProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MathProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MathProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MathProperties.#ctor(System.String)"> <summary> Initializes a new instance of the MathProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MathProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.MathFont"> <summary> <para> Math Font.</para> <para>Represents the element tag in schema: m:mathFont </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.BreakBinary"> <summary> <para> Break on Binary Operators.</para> <para>Represents the element tag in schema: m:brkBin </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.BreakBinarySubtraction"> <summary> <para> Break on Binary Subtraction.</para> <para>Represents the element tag in schema: m:brkBinSub </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.SmallFraction"> <summary> <para> Small Fraction.</para> <para>Represents the element tag in schema: m:smallFrac </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.DisplayDefaults"> <summary> <para> Use Display Math Defaults.</para> <para>Represents the element tag in schema: m:dispDef </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.LeftMargin"> <summary> <para> Left Margin.</para> <para>Represents the element tag in schema: m:lMargin </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.RightMargin"> <summary> <para> Right Margin.</para> <para>Represents the element tag in schema: m:rMargin </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.DefaultJustification"> <summary> <para> Default Justification.</para> <para>Represents the element tag in schema: m:defJc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.PreSpacing"> <summary> <para> Pre-Equation Spacing.</para> <para>Represents the element tag in schema: m:preSp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.PostSpacing"> <summary> <para> Post-Equation Spacing.</para> <para>Represents the element tag in schema: m:postSp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.InterSpacing"> <summary> <para> Inter-Equation Spacing.</para> <para>Represents the element tag in schema: m:interSp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MathProperties.IntraSpacing"> <summary> <para> Intra-Equation Spacing.</para> <para>Represents the element tag in schema: m:intraSp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Literal"> <summary> <para>Literal.</para> <para>When the object is serialized out as xml, its qualified name is m:lit.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.OnOffType"> <summary> Defines the OnOffType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.OnOffType.#ctor"> <summary> Initializes a new instance of the OnOffType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.OnOffType.Val"> <summary> <para> value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.Literal.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Literal.#ctor"> <summary> Initializes a new instance of the Literal class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Literal.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Literal.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Literal.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.NormalText"> <summary> <para>Normal Text.</para> <para>When the object is serialized out as xml, its qualified name is m:nor.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.NormalText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.NormalText.#ctor"> <summary> Initializes a new instance of the NormalText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.NormalText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.NormalText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.NormalText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Alignment"> <summary> <para>Align.</para> <para>When the object is serialized out as xml, its qualified name is m:aln.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Alignment.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Alignment.#ctor"> <summary> Initializes a new instance of the Alignment class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Alignment.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Alignment.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Alignment.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.OperatorEmulator"> <summary> <para>Operator Emulator.</para> <para>When the object is serialized out as xml, its qualified name is m:opEmu.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.OperatorEmulator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.OperatorEmulator.#ctor"> <summary> Initializes a new instance of the OperatorEmulator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.OperatorEmulator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.OperatorEmulator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.OperatorEmulator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.NoBreak"> <summary> <para>No Break.</para> <para>When the object is serialized out as xml, its qualified name is m:noBreak.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.NoBreak.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.NoBreak.#ctor"> <summary> Initializes a new instance of the NoBreak class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.NoBreak.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.NoBreak.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.NoBreak.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Differential"> <summary> <para>Differential.</para> <para>When the object is serialized out as xml, its qualified name is m:diff.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Differential.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Differential.#ctor"> <summary> Initializes a new instance of the Differential class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Differential.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Differential.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Differential.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.HideTop"> <summary> <para>Hide Top Edge.</para> <para>When the object is serialized out as xml, its qualified name is m:hideTop.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideTop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.HideTop.#ctor"> <summary> Initializes a new instance of the HideTop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideTop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.HideTop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.HideTop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.HideBottom"> <summary> <para>Hide Bottom Edge.</para> <para>When the object is serialized out as xml, its qualified name is m:hideBot.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideBottom.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.HideBottom.#ctor"> <summary> Initializes a new instance of the HideBottom class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideBottom.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.HideBottom.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.HideBottom.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.HideLeft"> <summary> <para>Hide Left Edge.</para> <para>When the object is serialized out as xml, its qualified name is m:hideLeft.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideLeft.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.HideLeft.#ctor"> <summary> Initializes a new instance of the HideLeft class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideLeft.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.HideLeft.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.HideLeft.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.HideRight"> <summary> <para>Hide Right Edge.</para> <para>When the object is serialized out as xml, its qualified name is m:hideRight.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideRight.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.HideRight.#ctor"> <summary> Initializes a new instance of the HideRight class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideRight.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.HideRight.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.HideRight.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.StrikeHorizontal"> <summary> <para>Border Box Strikethrough Horizontal.</para> <para>When the object is serialized out as xml, its qualified name is m:strikeH.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeHorizontal.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeHorizontal.#ctor"> <summary> Initializes a new instance of the StrikeHorizontal class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeHorizontal.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.StrikeHorizontal.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.StrikeHorizontal.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.StrikeVertical"> <summary> <para>Border Box Strikethrough Vertical.</para> <para>When the object is serialized out as xml, its qualified name is m:strikeV.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeVertical.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeVertical.#ctor"> <summary> Initializes a new instance of the StrikeVertical class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeVertical.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.StrikeVertical.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.StrikeVertical.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.StrikeBottomLeftToTopRight"> <summary> <para>Border Box Strikethrough Bottom-Left to Top-Right.</para> <para>When the object is serialized out as xml, its qualified name is m:strikeBLTR.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeBottomLeftToTopRight.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeBottomLeftToTopRight.#ctor"> <summary> Initializes a new instance of the StrikeBottomLeftToTopRight class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeBottomLeftToTopRight.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.StrikeBottomLeftToTopRight.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.StrikeBottomLeftToTopRight.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.StrikeTopLeftToBottomRight"> <summary> <para>Border Box Strikethrough Top-Left to Bottom-Right.</para> <para>When the object is serialized out as xml, its qualified name is m:strikeTLBR.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeTopLeftToBottomRight.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeTopLeftToBottomRight.#ctor"> <summary> Initializes a new instance of the StrikeTopLeftToBottomRight class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.StrikeTopLeftToBottomRight.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.StrikeTopLeftToBottomRight.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.StrikeTopLeftToBottomRight.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.GrowOperators"> <summary> <para>Delimiter Grow.</para> <para>When the object is serialized out as xml, its qualified name is m:grow.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.GrowOperators.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.GrowOperators.#ctor"> <summary> Initializes a new instance of the GrowOperators class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.GrowOperators.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.GrowOperators.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.GrowOperators.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.MaxDistribution"> <summary> <para>Maximum Distribution.</para> <para>When the object is serialized out as xml, its qualified name is m:maxDist.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MaxDistribution.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MaxDistribution.#ctor"> <summary> Initializes a new instance of the MaxDistribution class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MaxDistribution.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MaxDistribution.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MaxDistribution.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ObjectDistribution"> <summary> <para>Object Distribution.</para> <para>When the object is serialized out as xml, its qualified name is m:objDist.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ObjectDistribution.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ObjectDistribution.#ctor"> <summary> Initializes a new instance of the ObjectDistribution class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ObjectDistribution.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ObjectDistribution.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ObjectDistribution.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.HidePlaceholder"> <summary> <para>Hide Placeholders (Matrix).</para> <para>When the object is serialized out as xml, its qualified name is m:plcHide.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HidePlaceholder.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.HidePlaceholder.#ctor"> <summary> Initializes a new instance of the HidePlaceholder class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HidePlaceholder.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.HidePlaceholder.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.HidePlaceholder.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.HideSubArgument"> <summary> <para>Hide Subscript (n-ary).</para> <para>When the object is serialized out as xml, its qualified name is m:subHide.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideSubArgument.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.HideSubArgument.#ctor"> <summary> Initializes a new instance of the HideSubArgument class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideSubArgument.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.HideSubArgument.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.HideSubArgument.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.HideSuperArgument"> <summary> <para>Hide Superscript (n-ary).</para> <para>When the object is serialized out as xml, its qualified name is m:supHide.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideSuperArgument.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.HideSuperArgument.#ctor"> <summary> Initializes a new instance of the HideSuperArgument class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideSuperArgument.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.HideSuperArgument.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.HideSuperArgument.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ShowPhantom"> <summary> <para>Phantom Show.</para> <para>When the object is serialized out as xml, its qualified name is m:show.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ShowPhantom.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ShowPhantom.#ctor"> <summary> Initializes a new instance of the ShowPhantom class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ShowPhantom.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ShowPhantom.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ShowPhantom.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ZeroWidth"> <summary> <para>Phantom Zero Width.</para> <para>When the object is serialized out as xml, its qualified name is m:zeroWid.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroWidth.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroWidth.#ctor"> <summary> Initializes a new instance of the ZeroWidth class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroWidth.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ZeroWidth.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ZeroWidth.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ZeroAscent"> <summary> <para>Phantom Zero Ascent.</para> <para>When the object is serialized out as xml, its qualified name is m:zeroAsc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroAscent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroAscent.#ctor"> <summary> Initializes a new instance of the ZeroAscent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroAscent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ZeroAscent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ZeroAscent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ZeroDescent"> <summary> <para>Phantom Zero Descent.</para> <para>When the object is serialized out as xml, its qualified name is m:zeroDesc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroDescent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroDescent.#ctor"> <summary> Initializes a new instance of the ZeroDescent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ZeroDescent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ZeroDescent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ZeroDescent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Transparent"> <summary> <para>Transparent (Phantom).</para> <para>When the object is serialized out as xml, its qualified name is m:transp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Transparent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Transparent.#ctor"> <summary> Initializes a new instance of the Transparent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Transparent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Transparent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Transparent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.HideDegree"> <summary> <para>Hide Degree.</para> <para>When the object is serialized out as xml, its qualified name is m:degHide.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideDegree.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.HideDegree.#ctor"> <summary> Initializes a new instance of the HideDegree class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.HideDegree.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.HideDegree.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.HideDegree.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.AlignScripts"> <summary> <para>Align Scripts.</para> <para>When the object is serialized out as xml, its qualified name is m:alnScr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.AlignScripts.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.AlignScripts.#ctor"> <summary> Initializes a new instance of the AlignScripts class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.AlignScripts.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.AlignScripts.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.AlignScripts.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.SmallFraction"> <summary> <para>Small Fraction.</para> <para>When the object is serialized out as xml, its qualified name is m:smallFrac.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SmallFraction.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.SmallFraction.#ctor"> <summary> Initializes a new instance of the SmallFraction class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SmallFraction.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.SmallFraction.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SmallFraction.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.DisplayDefaults"> <summary> <para>Use Display Math Defaults.</para> <para>When the object is serialized out as xml, its qualified name is m:dispDef.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.DisplayDefaults.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.DisplayDefaults.#ctor"> <summary> Initializes a new instance of the DisplayDefaults class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.DisplayDefaults.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.DisplayDefaults.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.DisplayDefaults.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.WrapRight"> <summary> <para>Wrap Right.</para> <para>When the object is serialized out as xml, its qualified name is m:wrapRight.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.WrapRight.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.WrapRight.#ctor"> <summary> Initializes a new instance of the WrapRight class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.WrapRight.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.WrapRight.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.WrapRight.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Break"> <summary> <para>Break.</para> <para>When the object is serialized out as xml, its qualified name is m:brk.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Break.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Break.#ctor"> <summary> Initializes a new instance of the Break class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Break.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Break.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Break.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Break.AlignAt"> <summary> <para> Index of Operator to Align To.</para> <para>Represents the attribte in schema: m:alnAt </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.Break.Val"> <summary> <para> Index of Operator to Align To.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.RunProperties"> <summary> <para>Run Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:rPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Literal <m:lit></description></item> <item><description>NormalText <m:nor></description></item> <item><description>Script <m:scr></description></item> <item><description>Style <m:sty></description></item> <item><description>Break <m:brk></description></item> <item><description>Alignment <m:aln></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.RunProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.RunProperties.#ctor"> <summary> Initializes a new instance of the RunProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.RunProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RunProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.RunProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RunProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.RunProperties.#ctor(System.String)"> <summary> Initializes a new instance of the RunProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.RunProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.RunProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.RunProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.RunProperties.Literal"> <summary> <para> Literal.</para> <para>Represents the element tag in schema: m:lit </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Text"> <summary> <para>Text.</para> <para>When the object is serialized out as xml, its qualified name is m:t.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Text.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Text.#ctor"> <summary> Initializes a new instance of the Text class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Text.#ctor(System.String)"> <summary> Initializes a new instance of the Text class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Text.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Text.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Text.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Text.Space"> <summary> <para> space.</para> <para>Represents the attribte in schema: xml:space </para> </summary> <remark> xmlns:xml=http://www.w3.org/XML/1998/namespace </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.AccentChar"> <summary> <para>Accent Character.</para> <para>When the object is serialized out as xml, its qualified name is m:chr.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.CharType"> <summary> Defines the CharType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.CharType.#ctor"> <summary> Initializes a new instance of the CharType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.CharType.Val"> <summary> <para> value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentChar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentChar.#ctor"> <summary> Initializes a new instance of the AccentChar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentChar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.AccentChar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.AccentChar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.BeginChar"> <summary> <para>Delimiter Beginning Character.</para> <para>When the object is serialized out as xml, its qualified name is m:begChr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BeginChar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.BeginChar.#ctor"> <summary> Initializes a new instance of the BeginChar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BeginChar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.BeginChar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BeginChar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.SeparatorChar"> <summary> <para>Delimiter Separator Character.</para> <para>When the object is serialized out as xml, its qualified name is m:sepChr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SeparatorChar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.SeparatorChar.#ctor"> <summary> Initializes a new instance of the SeparatorChar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SeparatorChar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.SeparatorChar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SeparatorChar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.EndChar"> <summary> <para>Delimiter Ending Character.</para> <para>When the object is serialized out as xml, its qualified name is m:endChr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.EndChar.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.EndChar.#ctor"> <summary> Initializes a new instance of the EndChar class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.EndChar.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.EndChar.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.EndChar.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ControlProperties"> <summary> <para>Control Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:ctrlPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Wordprocessing.RunProperties <w:rPr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedMathControl <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedMathControl <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromMathControl <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToMathControl <w:moveTo></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.ControlProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ControlProperties.#ctor"> <summary> Initializes a new instance of the ControlProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ControlProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ControlProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ControlProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ControlProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ControlProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ControlProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ControlProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ControlProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ControlProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.AccentProperties"> <summary> <para>Accent Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:accPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AccentChar <m:chr></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentProperties.#ctor"> <summary> Initializes a new instance of the AccentProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AccentProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AccentProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentProperties.#ctor(System.String)"> <summary> Initializes a new instance of the AccentProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.AccentProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.AccentProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.AccentProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.AccentProperties.AccentChar"> <summary> <para> Accent Character.</para> <para>Represents the element tag in schema: m:chr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.AccentProperties.ControlProperties"> <summary> <para> Control Properties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Base"> <summary> <para>Base.</para> <para>When the object is serialized out as xml, its qualified name is m:e.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Math.OfficeMathArgumentType"> <summary> Defines the OfficeMathArgumentType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMathArgumentType.#ctor"> <summary> Initializes a new instance of the OfficeMathArgumentType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMathArgumentType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OfficeMathArgumentType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMathArgumentType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OfficeMathArgumentType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMathArgumentType.#ctor(System.String)"> <summary> Initializes a new instance of the OfficeMathArgumentType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Math.OfficeMathArgumentType.ArgumentProperties"> <summary> <para> Argument Properties.</para> <para>Represents the element tag in schema: m:argPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.Base.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Base.#ctor"> <summary> Initializes a new instance of the Base class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Base.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Base class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Base.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Base class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Base.#ctor(System.String)"> <summary> Initializes a new instance of the Base class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Base.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Base.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Base.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Numerator"> <summary> <para>Numerator.</para> <para>When the object is serialized out as xml, its qualified name is m:num.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Numerator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Numerator.#ctor"> <summary> Initializes a new instance of the Numerator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Numerator.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Numerator class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Numerator.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Numerator class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Numerator.#ctor(System.String)"> <summary> Initializes a new instance of the Numerator class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Numerator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Numerator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Numerator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Denominator"> <summary> <para>Denominator.</para> <para>When the object is serialized out as xml, its qualified name is m:den.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Denominator.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Denominator.#ctor"> <summary> Initializes a new instance of the Denominator class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Denominator.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Denominator class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Denominator.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Denominator class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Denominator.#ctor(System.String)"> <summary> Initializes a new instance of the Denominator class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Denominator.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Denominator.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Denominator.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.FunctionName"> <summary> <para>Function Name.</para> <para>When the object is serialized out as xml, its qualified name is m:fName.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionName.#ctor"> <summary> Initializes a new instance of the FunctionName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionName.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FunctionName class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionName.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FunctionName class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionName.#ctor(System.String)"> <summary> Initializes a new instance of the FunctionName class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.FunctionName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.FunctionName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Limit"> <summary> <para>Limit (Lower).</para> <para>When the object is serialized out as xml, its qualified name is m:lim.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Limit.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Limit.#ctor"> <summary> Initializes a new instance of the Limit class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Limit.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Limit class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Limit.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Limit class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Limit.#ctor(System.String)"> <summary> Initializes a new instance of the Limit class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Limit.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Limit.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Limit.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.SubArgument"> <summary> <para>Lower limit (n-ary) .</para> <para>When the object is serialized out as xml, its qualified name is m:sub.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.SubArgument.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.SubArgument.#ctor"> <summary> Initializes a new instance of the SubArgument class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SubArgument.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SubArgument class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubArgument.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SubArgument class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubArgument.#ctor(System.String)"> <summary> Initializes a new instance of the SubArgument class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubArgument.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.SubArgument.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SubArgument.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.SuperArgument"> <summary> <para>Upper limit (n-ary).</para> <para>When the object is serialized out as xml, its qualified name is m:sup.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperArgument.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperArgument.#ctor"> <summary> Initializes a new instance of the SuperArgument class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperArgument.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SuperArgument class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperArgument.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SuperArgument class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperArgument.#ctor(System.String)"> <summary> Initializes a new instance of the SuperArgument class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperArgument.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.SuperArgument.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SuperArgument.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Degree"> <summary> <para>Degree.</para> <para>When the object is serialized out as xml, its qualified name is m:deg.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentProperties <m:argPr></description></item> <item><description>Accent <m:acc></description></item> <item><description>Bar <m:bar></description></item> <item><description>Box <m:box></description></item> <item><description>BorderBox <m:borderBox></description></item> <item><description>Delimiter <m:d></description></item> <item><description>EquationArray <m:eqArr></description></item> <item><description>Fraction <m:f></description></item> <item><description>MathFunction <m:func></description></item> <item><description>GroupChar <m:groupChr></description></item> <item><description>LimitLower <m:limLow></description></item> <item><description>LimitUpper <m:limUpp></description></item> <item><description>Matrix <m:m></description></item> <item><description>Nary <m:nary></description></item> <item><description>Phantom <m:phant></description></item> <item><description>Radical <m:rad></description></item> <item><description>PreSubSuper <m:sPre></description></item> <item><description>Subscript <m:sSub></description></item> <item><description>SubSuperscript <m:sSubSup></description></item> <item><description>Superscript <m:sSup></description></item> <item><description>Run <m:r></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlRun <w:customXml></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SimpleField <w:fldSimple></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.Hyperlink <w:hyperlink></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SmartTagRun <w:smartTag></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.SdtRun <w:sdt></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ProofError <w:proofErr></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermStart <w:permStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.PermEnd <w:permEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkStart <w:bookmarkStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.BookmarkEnd <w:bookmarkEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeStart <w:commentRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CommentRangeEnd <w:commentRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeStart <w:moveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRangeEnd <w:moveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeStart <w:moveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRangeEnd <w:moveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeStart <w:customXmlInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlInsRangeEnd <w:customXmlInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeStart <w:customXmlDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlDelRangeEnd <w:customXmlDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeStart <w:customXmlMoveFromRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveFromRangeEnd <w:customXmlMoveFromRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeStart <w:customXmlMoveToRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.CustomXmlMoveToRangeEnd <w:customXmlMoveToRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeStart <w14:customXmlConflictInsRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictInsertionRangeEnd <w14:customXmlConflictInsRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeStart <w14:customXmlConflictDelRangeStart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.CustomXmlConflictDeletionRangeEnd <w14:customXmlConflictDelRangeEnd></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.InsertedRun <w:ins></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.DeletedRun <w:del></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveFromRun <w:moveFrom></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.MoveToRun <w:moveTo></description></item> <item><description>DocumentFormat.OpenXml.Wordprocessing.ContentPart <w:contentPart></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictInsertion <w14:conflictIns></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Word.RunConflictDeletion <w14:conflictDel></description></item> <item><description>Paragraph <m:oMathPara></description></item> <item><description>OfficeMath <m:oMath></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.Degree.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Degree.#ctor"> <summary> Initializes a new instance of the Degree class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Degree.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Degree class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Degree.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Degree class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Degree.#ctor(System.String)"> <summary> Initializes a new instance of the Degree class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.Degree.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Degree.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Degree.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.Position"> <summary> <para>Position (Bar).</para> <para>When the object is serialized out as xml, its qualified name is m:pos.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.TopBottomType"> <summary> Defines the TopBottomType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.TopBottomType.#ctor"> <summary> Initializes a new instance of the TopBottomType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.TopBottomType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.Position.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Position.#ctor"> <summary> Initializes a new instance of the Position class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Position.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Position.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Position.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.VerticalJustification"> <summary> <para>Vertical Justification.</para> <para>When the object is serialized out as xml, its qualified name is m:vertJc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.VerticalJustification.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.VerticalJustification.#ctor"> <summary> Initializes a new instance of the VerticalJustification class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.VerticalJustification.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.VerticalJustification.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.VerticalJustification.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.BarProperties"> <summary> <para>Bar Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:barPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Position <m:pos></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.BarProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.BarProperties.#ctor"> <summary> Initializes a new instance of the BarProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BarProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BarProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BarProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BarProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BarProperties.#ctor(System.String)"> <summary> Initializes a new instance of the BarProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BarProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.BarProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BarProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BarProperties.Position"> <summary> <para> Position (Bar).</para> <para>Represents the element tag in schema: m:pos </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BarProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.BoxProperties"> <summary> <para>Box Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:boxPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OperatorEmulator <m:opEmu></description></item> <item><description>NoBreak <m:noBreak></description></item> <item><description>Differential <m:diff></description></item> <item><description>Break <m:brk></description></item> <item><description>Alignment <m:aln></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.BoxProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.BoxProperties.#ctor"> <summary> Initializes a new instance of the BoxProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BoxProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BoxProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BoxProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BoxProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BoxProperties.#ctor(System.String)"> <summary> Initializes a new instance of the BoxProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BoxProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.BoxProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BoxProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BoxProperties.OperatorEmulator"> <summary> <para> Operator Emulator.</para> <para>Represents the element tag in schema: m:opEmu </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BoxProperties.NoBreak"> <summary> <para> No Break.</para> <para>Represents the element tag in schema: m:noBreak </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BoxProperties.Differential"> <summary> <para> Differential.</para> <para>Represents the element tag in schema: m:diff </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BoxProperties.Break"> <summary> <para> Break.</para> <para>Represents the element tag in schema: m:brk </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BoxProperties.Alignment"> <summary> <para> Alignment.</para> <para>Represents the element tag in schema: m:aln </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BoxProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.BorderBoxProperties"> <summary> <para>Border Box Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:borderBoxPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HideTop <m:hideTop></description></item> <item><description>HideBottom <m:hideBot></description></item> <item><description>HideLeft <m:hideLeft></description></item> <item><description>HideRight <m:hideRight></description></item> <item><description>StrikeHorizontal <m:strikeH></description></item> <item><description>StrikeVertical <m:strikeV></description></item> <item><description>StrikeBottomLeftToTopRight <m:strikeBLTR></description></item> <item><description>StrikeTopLeftToBottomRight <m:strikeTLBR></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBoxProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBoxProperties.#ctor"> <summary> Initializes a new instance of the BorderBoxProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBoxProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BorderBoxProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBoxProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BorderBoxProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBoxProperties.#ctor(System.String)"> <summary> Initializes a new instance of the BorderBoxProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.BorderBoxProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.HideTop"> <summary> <para> Hide Top Edge.</para> <para>Represents the element tag in schema: m:hideTop </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.HideBottom"> <summary> <para> Hide Bottom Edge.</para> <para>Represents the element tag in schema: m:hideBot </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.HideLeft"> <summary> <para> Hide Left Edge.</para> <para>Represents the element tag in schema: m:hideLeft </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.HideRight"> <summary> <para> Hide Right Edge.</para> <para>Represents the element tag in schema: m:hideRight </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.StrikeHorizontal"> <summary> <para> Border Box Strikethrough Horizontal.</para> <para>Represents the element tag in schema: m:strikeH </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.StrikeVertical"> <summary> <para> Border Box Strikethrough Vertical.</para> <para>Represents the element tag in schema: m:strikeV </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.StrikeBottomLeftToTopRight"> <summary> <para> Border Box Strikethrough Bottom-Left to Top-Right.</para> <para>Represents the element tag in schema: m:strikeBLTR </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.StrikeTopLeftToBottomRight"> <summary> <para> Border Box Strikethrough Top-Left to Bottom-Right.</para> <para>Represents the element tag in schema: m:strikeTLBR </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.BorderBoxProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Shape"> <summary> <para>Shape (Delimiters).</para> <para>When the object is serialized out as xml, its qualified name is m:shp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Shape.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.DelimiterProperties"> <summary> <para>Delimiter Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:dPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BeginChar <m:begChr></description></item> <item><description>SeparatorChar <m:sepChr></description></item> <item><description>EndChar <m:endChr></description></item> <item><description>GrowOperators <m:grow></description></item> <item><description>Shape <m:shp></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.DelimiterProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.DelimiterProperties.#ctor"> <summary> Initializes a new instance of the DelimiterProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.DelimiterProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DelimiterProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.DelimiterProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DelimiterProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.DelimiterProperties.#ctor(System.String)"> <summary> Initializes a new instance of the DelimiterProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.DelimiterProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.DelimiterProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.DelimiterProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.DelimiterProperties.BeginChar"> <summary> <para> Delimiter Beginning Character.</para> <para>Represents the element tag in schema: m:begChr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.DelimiterProperties.SeparatorChar"> <summary> <para> Delimiter Separator Character.</para> <para>Represents the element tag in schema: m:sepChr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.DelimiterProperties.EndChar"> <summary> <para> Delimiter Ending Character.</para> <para>Represents the element tag in schema: m:endChr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.DelimiterProperties.GrowOperators"> <summary> <para> Delimiter Grow.</para> <para>Represents the element tag in schema: m:grow </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.DelimiterProperties.Shape"> <summary> <para> Shape (Delimiters).</para> <para>Represents the element tag in schema: m:shp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.DelimiterProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.BaseJustification"> <summary> <para>Equation Array Base Justification.</para> <para>When the object is serialized out as xml, its qualified name is m:baseJc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BaseJustification.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.BaseJustification.#ctor"> <summary> Initializes a new instance of the BaseJustification class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BaseJustification.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.BaseJustification.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BaseJustification.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BaseJustification.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.RowSpacingRule"> <summary> <para>Row Spacing Rule.</para> <para>When the object is serialized out as xml, its qualified name is m:rSpRule.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.SpacingRuleType"> <summary> Defines the SpacingRuleType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SpacingRuleType.#ctor"> <summary> Initializes a new instance of the SpacingRuleType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SpacingRuleType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.RowSpacingRule.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.RowSpacingRule.#ctor"> <summary> Initializes a new instance of the RowSpacingRule class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.RowSpacingRule.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.RowSpacingRule.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.RowSpacingRule.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ColumnGapRule"> <summary> <para>Matrix Column Gap Rule.</para> <para>When the object is serialized out as xml, its qualified name is m:cGpRule.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnGapRule.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnGapRule.#ctor"> <summary> Initializes a new instance of the ColumnGapRule class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnGapRule.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ColumnGapRule.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ColumnGapRule.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.RowSpacing"> <summary> <para>Row Spacing (Equation Array).</para> <para>When the object is serialized out as xml, its qualified name is m:rSp.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.UnsignedShortType"> <summary> Defines the UnsignedShortType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.UnsignedShortType.#ctor"> <summary> Initializes a new instance of the UnsignedShortType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.UnsignedShortType.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.RowSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.RowSpacing.#ctor"> <summary> Initializes a new instance of the RowSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.RowSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.RowSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.RowSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ColumnGap"> <summary> <para>Matrix Column Gap.</para> <para>When the object is serialized out as xml, its qualified name is m:cGp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnGap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnGap.#ctor"> <summary> Initializes a new instance of the ColumnGap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnGap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ColumnGap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ColumnGap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.EquationArrayProperties"> <summary> <para>Equation Array Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:eqArrPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BaseJustification <m:baseJc></description></item> <item><description>MaxDistribution <m:maxDist></description></item> <item><description>ObjectDistribution <m:objDist></description></item> <item><description>RowSpacingRule <m:rSpRule></description></item> <item><description>RowSpacing <m:rSp></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArrayProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArrayProperties.#ctor"> <summary> Initializes a new instance of the EquationArrayProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArrayProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EquationArrayProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArrayProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EquationArrayProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArrayProperties.#ctor(System.String)"> <summary> Initializes a new instance of the EquationArrayProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.EquationArrayProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArrayProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArrayProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArrayProperties.BaseJustification"> <summary> <para> Equation Array Base Justification.</para> <para>Represents the element tag in schema: m:baseJc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArrayProperties.MaxDistribution"> <summary> <para> Maximum Distribution.</para> <para>Represents the element tag in schema: m:maxDist </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArrayProperties.ObjectDistribution"> <summary> <para> Object Distribution.</para> <para>Represents the element tag in schema: m:objDist </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArrayProperties.RowSpacingRule"> <summary> <para> Row Spacing Rule.</para> <para>Represents the element tag in schema: m:rSpRule </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArrayProperties.RowSpacing"> <summary> <para> Row Spacing (Equation Array).</para> <para>Represents the element tag in schema: m:rSp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.EquationArrayProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.FractionType"> <summary> <para>Fraction type.</para> <para>When the object is serialized out as xml, its qualified name is m:type.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionType.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionType.#ctor"> <summary> Initializes a new instance of the FractionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionType.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.FractionType.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.FractionType.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.FractionType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.FractionProperties"> <summary> <para>Fraction Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:fPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FractionType <m:type></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionProperties.#ctor"> <summary> Initializes a new instance of the FractionProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FractionProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FractionProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionProperties.#ctor(System.String)"> <summary> Initializes a new instance of the FractionProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FractionProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.FractionProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.FractionProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.FractionProperties.FractionType"> <summary> <para> Fraction type.</para> <para>Represents the element tag in schema: m:type </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.FractionProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.FunctionProperties"> <summary> <para>Function Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:funcPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionProperties.#ctor"> <summary> Initializes a new instance of the FunctionProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FunctionProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FunctionProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionProperties.#ctor(System.String)"> <summary> Initializes a new instance of the FunctionProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.FunctionProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.FunctionProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.FunctionProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.FunctionProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.GroupCharProperties"> <summary> <para>Group-Character Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:groupChrPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AccentChar <m:chr></description></item> <item><description>Position <m:pos></description></item> <item><description>VerticalJustification <m:vertJc></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupCharProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupCharProperties.#ctor"> <summary> Initializes a new instance of the GroupCharProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupCharProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupCharProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupCharProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupCharProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupCharProperties.#ctor(System.String)"> <summary> Initializes a new instance of the GroupCharProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.GroupCharProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupCharProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupCharProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupCharProperties.AccentChar"> <summary> <para> Group Character (Grouping Character).</para> <para>Represents the element tag in schema: m:chr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupCharProperties.Position"> <summary> <para> Position (Group Character).</para> <para>Represents the element tag in schema: m:pos </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupCharProperties.VerticalJustification"> <summary> <para> Vertical Justification.</para> <para>Represents the element tag in schema: m:vertJc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.GroupCharProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.LimitLowerProperties"> <summary> <para>Lower Limit Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:limLowPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLowerProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLowerProperties.#ctor"> <summary> Initializes a new instance of the LimitLowerProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLowerProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LimitLowerProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLowerProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LimitLowerProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLowerProperties.#ctor(System.String)"> <summary> Initializes a new instance of the LimitLowerProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLowerProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLowerProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLowerProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLowerProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.LimitUpperProperties"> <summary> <para>Upper Limit Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:limUppPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpperProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpperProperties.#ctor"> <summary> Initializes a new instance of the LimitUpperProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpperProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the LimitUpperProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpperProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the LimitUpperProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpperProperties.#ctor(System.String)"> <summary> Initializes a new instance of the LimitUpperProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitUpperProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitUpperProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitUpperProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitUpperProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.MatrixColumnCount"> <summary> <para>Matrix Column Count.</para> <para>When the object is serialized out as xml, its qualified name is m:count.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnCount.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnCount.#ctor"> <summary> Initializes a new instance of the MatrixColumnCount class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnCount.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnCount.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnCount.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnCount.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.MatrixColumnJustification"> <summary> <para>Matrix Column Justification.</para> <para>When the object is serialized out as xml, its qualified name is m:mcJc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnJustification.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnJustification.#ctor"> <summary> Initializes a new instance of the MatrixColumnJustification class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnJustification.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnJustification.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnJustification.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnJustification.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.MatrixColumnProperties"> <summary> <para>Matrix Column Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:mcPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MatrixColumnCount <m:count></description></item> <item><description>MatrixColumnJustification <m:mcJc></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnProperties.#ctor"> <summary> Initializes a new instance of the MatrixColumnProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MatrixColumnProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MatrixColumnProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnProperties.#ctor(System.String)"> <summary> Initializes a new instance of the MatrixColumnProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumnProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnProperties.MatrixColumnCount"> <summary> <para> Matrix Column Count.</para> <para>Represents the element tag in schema: m:count </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumnProperties.MatrixColumnJustification"> <summary> <para> Matrix Column Justification.</para> <para>Represents the element tag in schema: m:mcJc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.MatrixColumn"> <summary> <para>Matrix Column.</para> <para>When the object is serialized out as xml, its qualified name is m:mc.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MatrixColumnProperties <m:mcPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumn.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumn.#ctor"> <summary> Initializes a new instance of the MatrixColumn class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumn.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MatrixColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumn.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MatrixColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumn.#ctor(System.String)"> <summary> Initializes a new instance of the MatrixColumn class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumn.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumn.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumn.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumn.MatrixColumnProperties"> <summary> <para> Matrix Column Properties.</para> <para>Represents the element tag in schema: m:mcPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.ColumnSpacing"> <summary> <para>Matrix Column Spacing.</para> <para>When the object is serialized out as xml, its qualified name is m:cSp.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.TwipsMeasureType"> <summary> Defines the TwipsMeasureType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.TwipsMeasureType.#ctor"> <summary> Initializes a new instance of the TwipsMeasureType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.TwipsMeasureType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnSpacing.#ctor"> <summary> Initializes a new instance of the ColumnSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ColumnSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ColumnSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ColumnSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.LeftMargin"> <summary> <para>Left Margin.</para> <para>When the object is serialized out as xml, its qualified name is m:lMargin.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.LeftMargin.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.LeftMargin.#ctor"> <summary> Initializes a new instance of the LeftMargin class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.LeftMargin.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.LeftMargin.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LeftMargin.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.RightMargin"> <summary> <para>Right Margin.</para> <para>When the object is serialized out as xml, its qualified name is m:rMargin.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.RightMargin.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.RightMargin.#ctor"> <summary> Initializes a new instance of the RightMargin class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.RightMargin.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.RightMargin.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.RightMargin.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.PreSpacing"> <summary> <para>Pre-Equation Spacing.</para> <para>When the object is serialized out as xml, its qualified name is m:preSp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSpacing.#ctor"> <summary> Initializes a new instance of the PreSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.PostSpacing"> <summary> <para>Post-Equation Spacing.</para> <para>When the object is serialized out as xml, its qualified name is m:postSp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.PostSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.PostSpacing.#ctor"> <summary> Initializes a new instance of the PostSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.PostSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.PostSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.PostSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.InterSpacing"> <summary> <para>Inter-Equation Spacing.</para> <para>When the object is serialized out as xml, its qualified name is m:interSp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.InterSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.InterSpacing.#ctor"> <summary> Initializes a new instance of the InterSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.InterSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.InterSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.InterSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.IntraSpacing"> <summary> <para>Intra-Equation Spacing.</para> <para>When the object is serialized out as xml, its qualified name is m:intraSp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.IntraSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.IntraSpacing.#ctor"> <summary> Initializes a new instance of the IntraSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.IntraSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.IntraSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.IntraSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.WrapIndent"> <summary> <para>Wrap Indent.</para> <para>When the object is serialized out as xml, its qualified name is m:wrapIndent.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.WrapIndent.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.WrapIndent.#ctor"> <summary> Initializes a new instance of the WrapIndent class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.WrapIndent.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.WrapIndent.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.WrapIndent.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.MatrixColumns"> <summary> <para>Matrix Columns.</para> <para>When the object is serialized out as xml, its qualified name is m:mcs.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MatrixColumn <m:mc></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumns.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumns.#ctor"> <summary> Initializes a new instance of the MatrixColumns class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumns.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MatrixColumns class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumns.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MatrixColumns class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumns.#ctor(System.String)"> <summary> Initializes a new instance of the MatrixColumns class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixColumns.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumns.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixColumns.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.MatrixProperties"> <summary> <para>Matrix Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:mPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BaseJustification <m:baseJc></description></item> <item><description>HidePlaceholder <m:plcHide></description></item> <item><description>RowSpacingRule <m:rSpRule></description></item> <item><description>ColumnGapRule <m:cGpRule></description></item> <item><description>RowSpacing <m:rSp></description></item> <item><description>ColumnSpacing <m:cSp></description></item> <item><description>ColumnGap <m:cGp></description></item> <item><description>MatrixColumns <m:mcs></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixProperties.#ctor"> <summary> Initializes a new instance of the MatrixProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MatrixProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MatrixProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixProperties.#ctor(System.String)"> <summary> Initializes a new instance of the MatrixProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.BaseJustification"> <summary> <para> Matrix Base Justification.</para> <para>Represents the element tag in schema: m:baseJc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.HidePlaceholder"> <summary> <para> Hide Placeholders (Matrix).</para> <para>Represents the element tag in schema: m:plcHide </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.RowSpacingRule"> <summary> <para> Row Spacing Rule.</para> <para>Represents the element tag in schema: m:rSpRule </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.ColumnGapRule"> <summary> <para> Matrix Column Gap Rule.</para> <para>Represents the element tag in schema: m:cGpRule </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.RowSpacing"> <summary> <para> Row Spacing (Matrix).</para> <para>Represents the element tag in schema: m:rSp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.ColumnSpacing"> <summary> <para> Matrix Column Spacing.</para> <para>Represents the element tag in schema: m:cSp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.ColumnGap"> <summary> <para> Matrix Column Gap.</para> <para>Represents the element tag in schema: m:cGp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.MatrixColumns"> <summary> <para> Matrix Columns.</para> <para>Represents the element tag in schema: m:mcs </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.MatrixRow"> <summary> <para>Matrix Row.</para> <para>When the object is serialized out as xml, its qualified name is m:mr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Base <m:e></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixRow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixRow.#ctor"> <summary> Initializes a new instance of the MatrixRow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixRow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MatrixRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixRow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MatrixRow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixRow.#ctor(System.String)"> <summary> Initializes a new instance of the MatrixRow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.MatrixRow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixRow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MatrixRow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.LimitLocation"> <summary> <para>n-ary Limit Location.</para> <para>When the object is serialized out as xml, its qualified name is m:limLoc.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.LimitLocationType"> <summary> Defines the LimitLocationType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLocationType.#ctor"> <summary> Initializes a new instance of the LimitLocationType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLocationType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLocation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLocation.#ctor"> <summary> Initializes a new instance of the LimitLocation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.LimitLocation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLocation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.LimitLocation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.IntegralLimitLocation"> <summary> <para>Integral Limit Locations.</para> <para>When the object is serialized out as xml, its qualified name is m:intLim.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.IntegralLimitLocation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.IntegralLimitLocation.#ctor"> <summary> Initializes a new instance of the IntegralLimitLocation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.IntegralLimitLocation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.IntegralLimitLocation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.IntegralLimitLocation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.NaryLimitLocation"> <summary> <para>n-ary Limit Location.</para> <para>When the object is serialized out as xml, its qualified name is m:naryLim.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryLimitLocation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryLimitLocation.#ctor"> <summary> Initializes a new instance of the NaryLimitLocation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryLimitLocation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryLimitLocation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryLimitLocation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.NaryProperties"> <summary> <para>n-ary Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:naryPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AccentChar <m:chr></description></item> <item><description>LimitLocation <m:limLoc></description></item> <item><description>GrowOperators <m:grow></description></item> <item><description>HideSubArgument <m:subHide></description></item> <item><description>HideSuperArgument <m:supHide></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryProperties.#ctor"> <summary> Initializes a new instance of the NaryProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NaryProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NaryProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NaryProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.NaryProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryProperties.AccentChar"> <summary> <para> n-ary Operator Character.</para> <para>Represents the element tag in schema: m:chr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryProperties.LimitLocation"> <summary> <para> n-ary Limit Location.</para> <para>Represents the element tag in schema: m:limLoc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryProperties.GrowOperators"> <summary> <para> n-ary Grow.</para> <para>Represents the element tag in schema: m:grow </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryProperties.HideSubArgument"> <summary> <para> Hide Subscript (n-ary).</para> <para>Represents the element tag in schema: m:subHide </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryProperties.HideSuperArgument"> <summary> <para> Hide Superscript (n-ary).</para> <para>Represents the element tag in schema: m:supHide </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.NaryProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.PhantomProperties"> <summary> <para>Phantom Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:phantPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShowPhantom <m:show></description></item> <item><description>ZeroWidth <m:zeroWid></description></item> <item><description>ZeroAscent <m:zeroAsc></description></item> <item><description>ZeroDescent <m:zeroDesc></description></item> <item><description>Transparent <m:transp></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.PhantomProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.PhantomProperties.#ctor"> <summary> Initializes a new instance of the PhantomProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.PhantomProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PhantomProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PhantomProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PhantomProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PhantomProperties.#ctor(System.String)"> <summary> Initializes a new instance of the PhantomProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PhantomProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.PhantomProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.PhantomProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.PhantomProperties.ShowPhantom"> <summary> <para> Phantom Show.</para> <para>Represents the element tag in schema: m:show </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.PhantomProperties.ZeroWidth"> <summary> <para> Phantom Zero Width.</para> <para>Represents the element tag in schema: m:zeroWid </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.PhantomProperties.ZeroAscent"> <summary> <para> Phantom Zero Ascent.</para> <para>Represents the element tag in schema: m:zeroAsc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.PhantomProperties.ZeroDescent"> <summary> <para> Phantom Zero Descent.</para> <para>Represents the element tag in schema: m:zeroDesc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.PhantomProperties.Transparent"> <summary> <para> Transparent (Phantom).</para> <para>Represents the element tag in schema: m:transp </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.PhantomProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.RadicalProperties"> <summary> <para>Radical Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:radPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HideDegree <m:degHide></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.RadicalProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.RadicalProperties.#ctor"> <summary> Initializes a new instance of the RadicalProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.RadicalProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RadicalProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.RadicalProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RadicalProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.RadicalProperties.#ctor(System.String)"> <summary> Initializes a new instance of the RadicalProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.RadicalProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.RadicalProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.RadicalProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.RadicalProperties.HideDegree"> <summary> <para> Hide Degree.</para> <para>Represents the element tag in schema: m:degHide </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.RadicalProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.PreSubSuperProperties"> <summary> <para>Pre-Sub-Superscript Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:sPrePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuperProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuperProperties.#ctor"> <summary> Initializes a new instance of the PreSubSuperProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuperProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PreSubSuperProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuperProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PreSubSuperProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuperProperties.#ctor(System.String)"> <summary> Initializes a new instance of the PreSubSuperProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.PreSubSuperProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuperProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuperProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.PreSubSuperProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.SubscriptProperties"> <summary> <para>Subscript Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:sSubPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.SubscriptProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.SubscriptProperties.#ctor"> <summary> Initializes a new instance of the SubscriptProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SubscriptProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SubscriptProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubscriptProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SubscriptProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubscriptProperties.#ctor(System.String)"> <summary> Initializes a new instance of the SubscriptProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubscriptProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.SubscriptProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SubscriptProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SubscriptProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.SubSuperscriptProperties"> <summary> <para>Sub-Superscript Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:sSubSupPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AlignScripts <m:alnScr></description></item> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.#ctor"> <summary> Initializes a new instance of the SubSuperscriptProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SubSuperscriptProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SubSuperscriptProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.#ctor(System.String)"> <summary> Initializes a new instance of the SubSuperscriptProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.AlignScripts"> <summary> <para> Align Scripts.</para> <para>Represents the element tag in schema: m:alnScr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="P:DocumentFormat.OpenXml.Math.SubSuperscriptProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.SuperscriptProperties"> <summary> <para>Superscript Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:sSupPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ControlProperties <m:ctrlPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperscriptProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperscriptProperties.#ctor"> <summary> Initializes a new instance of the SuperscriptProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperscriptProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SuperscriptProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperscriptProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SuperscriptProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperscriptProperties.#ctor(System.String)"> <summary> Initializes a new instance of the SuperscriptProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.SuperscriptProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.SuperscriptProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SuperscriptProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.SuperscriptProperties.ControlProperties"> <summary> <para> ControlProperties.</para> <para>Represents the element tag in schema: m:ctrlPr </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.ArgumentSize"> <summary> <para>Argument Size.</para> <para>When the object is serialized out as xml, its qualified name is m:argSz.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentSize.#ctor"> <summary> Initializes a new instance of the ArgumentSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ArgumentSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ArgumentSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ArgumentSize.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.ArgumentProperties"> <summary> <para>Argument Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:argPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ArgumentSize <m:argSz></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentProperties.#ctor"> <summary> Initializes a new instance of the ArgumentProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ArgumentProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ArgumentProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ArgumentProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ArgumentProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ArgumentProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ArgumentProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ArgumentProperties.ArgumentSize"> <summary> <para> Argument Size.</para> <para>Represents the element tag in schema: m:argSz </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.Justification"> <summary> <para>Justification.</para> <para>When the object is serialized out as xml, its qualified name is m:jc.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.OfficeMathJustificationType"> <summary> Defines the OfficeMathJustificationType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.OfficeMathJustificationType.#ctor"> <summary> Initializes a new instance of the OfficeMathJustificationType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.OfficeMathJustificationType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="M:DocumentFormat.OpenXml.Math.Justification.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.Justification.#ctor"> <summary> Initializes a new instance of the Justification class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.Justification.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.Justification.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.Justification.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.DefaultJustification"> <summary> <para>Default Justification.</para> <para>When the object is serialized out as xml, its qualified name is m:defJc.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.DefaultJustification.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.DefaultJustification.#ctor"> <summary> Initializes a new instance of the DefaultJustification class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.DefaultJustification.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.DefaultJustification.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.DefaultJustification.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.MathFont"> <summary> <para>Math Font.</para> <para>When the object is serialized out as xml, its qualified name is m:mathFont.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFont.#ctor"> <summary> Initializes a new instance of the MathFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.MathFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.MathFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MathFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.MathFont.Val"> <summary> <para> val.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.BreakBinary"> <summary> <para>Break on Binary Operators.</para> <para>When the object is serialized out as xml, its qualified name is m:brkBin.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BreakBinary.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.BreakBinary.#ctor"> <summary> Initializes a new instance of the BreakBinary class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BreakBinary.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.BreakBinary.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BreakBinary.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BreakBinary.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.BreakBinarySubtraction"> <summary> <para>Break on Binary Subtraction.</para> <para>When the object is serialized out as xml, its qualified name is m:brkBinSub.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BreakBinarySubtraction.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.BreakBinarySubtraction.#ctor"> <summary> Initializes a new instance of the BreakBinarySubtraction class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.BreakBinarySubtraction.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.BreakBinarySubtraction.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BreakBinarySubtraction.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.BreakBinarySubtraction.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: m:val </para> </summary> <remark> xmlns:m=http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.ParagraphProperties"> <summary> <para>Office Math Paragraph Properties.</para> <para>When the object is serialized out as xml, its qualified name is m:oMathParaPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Justification <m:jc></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Math.ParagraphProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Math.ParagraphProperties.#ctor"> <summary> Initializes a new instance of the ParagraphProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Math.ParagraphProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ParagraphProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ParagraphProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ParagraphProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ParagraphProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Math.ParagraphProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Math.ParagraphProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ParagraphProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Math.ParagraphProperties.Justification"> <summary> <para> Justification.</para> <para>Represents the element tag in schema: m:jc </para> </summary> <remark> xmlns:m = http://schemas.openxmlformats.org/officeDocument/2006/math </remark> </member> <member name="T:DocumentFormat.OpenXml.Math.HorizontalAlignmentValues"> <summary> Defines the HorizontalAlignmentValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.HorizontalAlignmentValues.Left"> <summary> Left Justification. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.HorizontalAlignmentValues.Center"> <summary> Center. <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.HorizontalAlignmentValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ShapeDelimiterValues"> <summary> Defines the ShapeDelimiterValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.ShapeDelimiterValues.Centered"> <summary> Centered (Delimiters). <para>When the item is serialized out as xml, its value is "centered".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.ShapeDelimiterValues.Match"> <summary> Match. <para>When the item is serialized out as xml, its value is "match".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.FractionTypeValues"> <summary> Defines the FractionTypeValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.FractionTypeValues.Bar"> <summary> Bar Fraction. <para>When the item is serialized out as xml, its value is "bar".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.FractionTypeValues.Skewed"> <summary> Skewed. <para>When the item is serialized out as xml, its value is "skw".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.FractionTypeValues.Linear"> <summary> Linear Fraction. <para>When the item is serialized out as xml, its value is "lin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.FractionTypeValues.NoBar"> <summary> No-Bar Fraction (Stack). <para>When the item is serialized out as xml, its value is "noBar".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.LimitLocationValues"> <summary> Defines the LimitLocationValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.LimitLocationValues.UnderOver"> <summary> Under-Over location. <para>When the item is serialized out as xml, its value is "undOvr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.LimitLocationValues.SubscriptSuperscript"> <summary> Subscript-Superscript location. <para>When the item is serialized out as xml, its value is "subSup".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.VerticalJustificationValues"> <summary> Defines the VerticalJustificationValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.VerticalJustificationValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.VerticalJustificationValues.Bottom"> <summary> Bottom Alignment. <para>When the item is serialized out as xml, its value is "bot".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.ScriptValues"> <summary> Defines the ScriptValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.ScriptValues.Roman"> <summary> Roman. <para>When the item is serialized out as xml, its value is "roman".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.ScriptValues.Script"> <summary> Script. <para>When the item is serialized out as xml, its value is "script".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.ScriptValues.Fraktur"> <summary> Fraktur. <para>When the item is serialized out as xml, its value is "fraktur".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.ScriptValues.DoubleStruck"> <summary> double-struck. <para>When the item is serialized out as xml, its value is "double-struck".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.ScriptValues.SansSerif"> <summary> Sans-Serif. <para>When the item is serialized out as xml, its value is "sans-serif".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.ScriptValues.Monospace"> <summary> Monospace. <para>When the item is serialized out as xml, its value is "monospace".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.StyleValues"> <summary> Defines the StyleValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.StyleValues.Plain"> <summary> Plain. <para>When the item is serialized out as xml, its value is "p".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.StyleValues.Bold"> <summary> Bold. <para>When the item is serialized out as xml, its value is "b".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.StyleValues.Italic"> <summary> Italic. <para>When the item is serialized out as xml, its value is "i".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.StyleValues.BoldItalic"> <summary> Bold-Italic. <para>When the item is serialized out as xml, its value is "bi".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.JustificationValues"> <summary> Defines the JustificationValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.JustificationValues.Left"> <summary> Left Justification. <para>When the item is serialized out as xml, its value is "left".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.JustificationValues.Right"> <summary> Right. <para>When the item is serialized out as xml, its value is "right".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.JustificationValues.Center"> <summary> Center (Equation). <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.JustificationValues.CenterGroup"> <summary> Centered as Group (Equations). <para>When the item is serialized out as xml, its value is "centerGroup".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.BreakBinaryOperatorValues"> <summary> Defines the BreakBinaryOperatorValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BreakBinaryOperatorValues.Before"> <summary> Before. <para>When the item is serialized out as xml, its value is "before".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BreakBinaryOperatorValues.After"> <summary> After. <para>When the item is serialized out as xml, its value is "after".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BreakBinaryOperatorValues.Repeat"> <summary> Repeat. <para>When the item is serialized out as xml, its value is "repeat".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.BreakBinarySubtractionValues"> <summary> Defines the BreakBinarySubtractionValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BreakBinarySubtractionValues.MinusMinus"> <summary> Minus Minus. <para>When the item is serialized out as xml, its value is "--".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BreakBinarySubtractionValues.MinusPlus"> <summary> Minus Plus. <para>When the item is serialized out as xml, its value is "-+".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BreakBinarySubtractionValues.PlusMinus"> <summary> Plus Minus. <para>When the item is serialized out as xml, its value is "+-".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.VerticalAlignmentValues"> <summary> Defines the VerticalAlignmentValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.VerticalAlignmentValues.Top"> <summary> Top. <para>When the item is serialized out as xml, its value is "top".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.VerticalAlignmentValues.Center"> <summary> Center (Function). <para>When the item is serialized out as xml, its value is "center".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.VerticalAlignmentValues.Bottom"> <summary> bottom. <para>When the item is serialized out as xml, its value is "bottom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.VerticalAlignmentValues.Bot"> <summary> Bottom Alignment. <para>When the item is serialized out as xml, its value is "bot".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Math.BooleanValues"> <summary> Defines the BooleanValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BooleanValues.True"> <summary> true. <para>When the item is serialized out as xml, its value is "true".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BooleanValues.False"> <summary> false. <para>When the item is serialized out as xml, its value is "false".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BooleanValues.On"> <summary> On. <para>When the item is serialized out as xml, its value is "on".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BooleanValues.Off"> <summary> Off. <para>When the item is serialized out as xml, its value is "off".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BooleanValues.Zero"> <summary> 0. <para>When the item is serialized out as xml, its value is "0".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Math.BooleanValues.One"> <summary> 1. <para>When the item is serialized out as xml, its value is "1".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideAll"> <summary> <para>All Slides.</para> <para>When the object is serialized out as xml, its qualified name is p:sldAll.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EmptyType"> <summary> Defines the EmptyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmptyType.#ctor"> <summary> Initializes a new instance of the EmptyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideAll.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideAll.#ctor"> <summary> Initializes a new instance of the SlideAll class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideAll.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideAll.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideAll.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PresenterSlideMode"> <summary> <para>Presenter Slide Show Mode.</para> <para>When the object is serialized out as xml, its qualified name is p:present.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresenterSlideMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresenterSlideMode.#ctor"> <summary> Initializes a new instance of the PresenterSlideMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresenterSlideMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresenterSlideMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresenterSlideMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EndSoundAction"> <summary> <para>Stop Sound Action.</para> <para>When the object is serialized out as xml, its qualified name is p:endSnd.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSoundAction.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSoundAction.#ctor"> <summary> Initializes a new instance of the EndSoundAction class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSoundAction.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EndSoundAction.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EndSoundAction.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BuildAsOne"> <summary> <para>Build As One.</para> <para>When the object is serialized out as xml, its qualified name is p:bldAsOne.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildAsOne.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildAsOne.#ctor"> <summary> Initializes a new instance of the BuildAsOne class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildAsOne.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildAsOne.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildAsOne.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideTarget"> <summary> <para>Slide Target.</para> <para>When the object is serialized out as xml, its qualified name is p:sldTgt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideTarget.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideTarget.#ctor"> <summary> Initializes a new instance of the SlideTarget class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideTarget.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideTarget.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideTarget.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BackgroundAnimation"> <summary> <para>Background.</para> <para>When the object is serialized out as xml, its qualified name is p:bg.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundAnimation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundAnimation.#ctor"> <summary> Initializes a new instance of the BackgroundAnimation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundAnimation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundAnimation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundAnimation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CircleTransition"> <summary> <para>Circle Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:circle.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CircleTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CircleTransition.#ctor"> <summary> Initializes a new instance of the CircleTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CircleTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CircleTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CircleTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.DissolveTransition"> <summary> <para>Dissolve Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:dissolve.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DissolveTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DissolveTransition.#ctor"> <summary> Initializes a new instance of the DissolveTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DissolveTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.DissolveTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.DissolveTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.DiamondTransition"> <summary> <para>Diamond Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:diamond.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DiamondTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DiamondTransition.#ctor"> <summary> Initializes a new instance of the DiamondTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DiamondTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.DiamondTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.DiamondTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NewsflashTransition"> <summary> <para>Newsflash Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:newsflash.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NewsflashTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NewsflashTransition.#ctor"> <summary> Initializes a new instance of the NewsflashTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NewsflashTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NewsflashTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NewsflashTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PlusTransition"> <summary> <para>Plus Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:plus.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlusTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlusTransition.#ctor"> <summary> Initializes a new instance of the PlusTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlusTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlusTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlusTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.RandomTransition"> <summary> <para>Random Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:random.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RandomTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RandomTransition.#ctor"> <summary> Initializes a new instance of the RandomTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RandomTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RandomTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RandomTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.WedgeTransition"> <summary> <para>Wedge Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:wedge.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WedgeTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WedgeTransition.#ctor"> <summary> Initializes a new instance of the WedgeTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WedgeTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WedgeTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WedgeTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideRange"> <summary> <para>Slide Range.</para> <para>When the object is serialized out as xml, its qualified name is p:sldRg.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.IndexRangeType"> <summary> Defines the IndexRangeType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.IndexRangeType.#ctor"> <summary> Initializes a new instance of the IndexRangeType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.IndexRangeType.Start"> <summary> <para> Start.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.IndexRangeType.End"> <summary> <para> End.</para> <para>Represents the attribte in schema: end </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideRange.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideRange.#ctor"> <summary> Initializes a new instance of the SlideRange class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideRange.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideRange.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideRange.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CharRange"> <summary> <para>Character Range.</para> <para>When the object is serialized out as xml, its qualified name is p:charRg.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CharRange.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CharRange.#ctor"> <summary> Initializes a new instance of the CharRange class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CharRange.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CharRange.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CharRange.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ParagraphIndexRange"> <summary> <para>Paragraph Text Range.</para> <para>When the object is serialized out as xml, its qualified name is p:pRg.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParagraphIndexRange.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParagraphIndexRange.#ctor"> <summary> Initializes a new instance of the ParagraphIndexRange class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParagraphIndexRange.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ParagraphIndexRange.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ParagraphIndexRange.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CustomShowReference"> <summary> <para>Custom Show.</para> <para>When the object is serialized out as xml, its qualified name is p:custShow.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowReference.#ctor"> <summary> Initializes a new instance of the CustomShowReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShowReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShowReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShowReference.Id"> <summary> <para> Custom Show Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Extension"> <summary> <para>Extension.</para> <para>When the object is serialized out as xml, its qualified name is p:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Extension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Extension.#ctor"> <summary> Initializes a new instance of the Extension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Extension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Extension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Extension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Extension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Extension.#ctor(System.String)"> <summary> Initializes a new instance of the Extension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Extension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Extension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Extension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Extension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BrowseSlideMode"> <summary> <para>Browse Slide Show Mode.</para> <para>When the object is serialized out as xml, its qualified name is p:browse.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BrowseSlideMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BrowseSlideMode.#ctor"> <summary> Initializes a new instance of the BrowseSlideMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BrowseSlideMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BrowseSlideMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BrowseSlideMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BrowseSlideMode.ShowScrollbar"> <summary> <para> Show Scroll Bar in Window.</para> <para>Represents the attribte in schema: showScrollbar </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.KioskSlideMode"> <summary> <para>Kiosk Slide Show Mode.</para> <para>When the object is serialized out as xml, its qualified name is p:kiosk.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.KioskSlideMode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.KioskSlideMode.#ctor"> <summary> Initializes a new instance of the KioskSlideMode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.KioskSlideMode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.KioskSlideMode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.KioskSlideMode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.KioskSlideMode.Restart"> <summary> <para> Restart Show.</para> <para>Represents the attribte in schema: restart </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ColorMap"> <summary> <para>Color Scheme Map.</para> <para>When the object is serialized out as xml, its qualified name is p:clrMap.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMap.#ctor"> <summary> Initializes a new instance of the ColorMap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMap.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMap.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorMap class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMap.#ctor(System.String)"> <summary> Initializes a new instance of the ColorMap class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Background1"> <summary> <para> Background 1.</para> <para>Represents the attribte in schema: bg1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Text1"> <summary> <para> Text 1.</para> <para>Represents the attribte in schema: tx1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Background2"> <summary> <para> Background 2.</para> <para>Represents the attribte in schema: bg2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Text2"> <summary> <para> Text 2.</para> <para>Represents the attribte in schema: tx2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Accent1"> <summary> <para> Accent 1.</para> <para>Represents the attribte in schema: accent1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Accent2"> <summary> <para> Accent 2.</para> <para>Represents the attribte in schema: accent2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Accent3"> <summary> <para> Accent 3.</para> <para>Represents the attribte in schema: accent3 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Accent4"> <summary> <para> Accent 4.</para> <para>Represents the attribte in schema: accent4 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Accent5"> <summary> <para> Accent 5.</para> <para>Represents the attribte in schema: accent5 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Accent6"> <summary> <para> Accent 6.</para> <para>Represents the attribte in schema: accent6 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.Hyperlink"> <summary> <para> Hyperlink.</para> <para>Represents the attribte in schema: hlink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.FollowedHyperlink"> <summary> <para> Followed Hyperlink.</para> <para>Represents the attribte in schema: folHlink </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMap.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ColorMapOverride"> <summary> <para>Color Scheme Map Override.</para> <para>When the object is serialized out as xml, its qualified name is p:clrMapOvr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.MasterColorMapping <a:masterClrMapping></description></item> <item><description>DocumentFormat.OpenXml.Drawing.OverrideColorMapping <a:overrideClrMapping></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMapOverride.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMapOverride.#ctor"> <summary> Initializes a new instance of the ColorMapOverride class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMapOverride.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorMapOverride class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMapOverride.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorMapOverride class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMapOverride.#ctor(System.String)"> <summary> Initializes a new instance of the ColorMapOverride class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMapOverride.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMapOverride.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMapOverride.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMapOverride.MasterColorMapping"> <summary> <para> Master Color Mapping.</para> <para>Represents the element tag in schema: a:masterClrMapping </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMapOverride.OverrideColorMapping"> <summary> <para> Override Color Mapping.</para> <para>Represents the element tag in schema: a:overrideClrMapping </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BackgroundProperties"> <summary> <para>Background Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:bgPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundProperties.#ctor"> <summary> Initializes a new instance of the BackgroundProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackgroundProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackgroundProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundProperties.#ctor(System.String)"> <summary> Initializes a new instance of the BackgroundProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundProperties.ShadeToTitle"> <summary> <para> Shade to Title.</para> <para>Represents the attribte in schema: shadeToTitle </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference"> <summary> <para>Background Style Reference.</para> <para>When the object is serialized out as xml, its qualified name is p:bgRef.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.#ctor"> <summary> Initializes a new instance of the BackgroundStyleReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BackgroundStyleReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BackgroundStyleReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.#ctor(System.String)"> <summary> Initializes a new instance of the BackgroundStyleReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.Index"> <summary> <para> Style Matrix Index.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BackgroundStyleReference.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommentAuthorList"> <summary> <para>List of Comment Authors. It is the root element of CommentAuthorsPart.</para> <para>When the object is serialized out as xml, its qualified name is p:cmAuthorLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommentAuthor <p:cmAuthor></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.#ctor(DocumentFormat.OpenXml.Packaging.CommentAuthorsPart)"> <summary> CommentAuthorList constructor </summary> <param name="ownerPart">The owner part of the CommentAuthorList</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.Load(DocumentFormat.OpenXml.Packaging.CommentAuthorsPart)"> <summary> Loads the DOM from the CommentAuthorsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommentAuthorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommentAuthorList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.#ctor(System.String)"> <summary> Initializes a new instance of the CommentAuthorList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.#ctor"> <summary> Initializes a new instance of the CommentAuthorList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.Save(DocumentFormat.OpenXml.Packaging.CommentAuthorsPart)"> <summary> Saves the DOM into the CommentAuthorsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthorList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthorList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthorList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthorList.CommentAuthorsPart"> <summary> Gets the CommentAuthorsPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommentList"> <summary> <para>Comment List. It is the root element of SlideCommentsPart.</para> <para>When the object is serialized out as xml, its qualified name is p:cmLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Comment <p:cm></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.#ctor(DocumentFormat.OpenXml.Packaging.SlideCommentsPart)"> <summary> CommentList constructor </summary> <param name="ownerPart">The owner part of the CommentList</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.Load(DocumentFormat.OpenXml.Packaging.SlideCommentsPart)"> <summary> Loads the DOM from the SlideCommentsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommentList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommentList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.#ctor(System.String)"> <summary> Initializes a new instance of the CommentList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.#ctor"> <summary> Initializes a new instance of the CommentList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.Save(DocumentFormat.OpenXml.Packaging.SlideCommentsPart)"> <summary> Saves the DOM into the SlideCommentsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentList.SlideCommentsPart"> <summary> Gets the SlideCommentsPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OleObject"> <summary> <para>Global Element for OLE Objects and Controls.</para> <para>When the object is serialized out as xml, its qualified name is p:oleObj.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OleObjectEmbed <p:embed></description></item> <item><description>OleObjectLink <p:link></description></item> <item><description>Picture <p:pic></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObject.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObject.#ctor"> <summary> Initializes a new instance of the OleObject class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObject.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OleObject class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObject.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OleObject class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObject.#ctor(System.String)"> <summary> Initializes a new instance of the OleObject class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObject.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.ShapeId"> <summary> <para> spid.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.ShowAsIcon"> <summary> <para> showAsIcon.</para> <para>Represents the attribte in schema: showAsIcon </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.ImageWidth"> <summary> <para> imgW.</para> <para>Represents the attribte in schema: imgW </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.ImageHeight"> <summary> <para> imgH.</para> <para>Represents the attribte in schema: imgH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObject.ProgId"> <summary> <para> progId.</para> <para>Represents the attribte in schema: progId </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Presentation"> <summary> <para>Presentation. It is the root element of PresentationPart.</para> <para>When the object is serialized out as xml, its qualified name is p:presentation.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideMasterIdList <p:sldMasterIdLst></description></item> <item><description>NotesMasterIdList <p:notesMasterIdLst></description></item> <item><description>HandoutMasterIdList <p:handoutMasterIdLst></description></item> <item><description>SlideIdList <p:sldIdLst></description></item> <item><description>SlideSize <p:sldSz></description></item> <item><description>NotesSize <p:notesSz></description></item> <item><description>SmartTags <p:smartTags></description></item> <item><description>EmbeddedFontList <p:embeddedFontLst></description></item> <item><description>CustomShowList <p:custShowLst></description></item> <item><description>PhotoAlbum <p:photoAlbum></description></item> <item><description>CustomerDataList <p:custDataLst></description></item> <item><description>Kinsoku <p:kinsoku></description></item> <item><description>DefaultTextStyle <p:defaultTextStyle></description></item> <item><description>ModificationVerifier <p:modifyVerifier></description></item> <item><description>PresentationExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.#ctor(DocumentFormat.OpenXml.Packaging.PresentationPart)"> <summary> Presentation constructor </summary> <param name="ownerPart">The owner part of the Presentation</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.Load(DocumentFormat.OpenXml.Packaging.PresentationPart)"> <summary> Loads the DOM from the PresentationPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Presentation class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Presentation class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.#ctor(System.String)"> <summary> Initializes a new instance of the Presentation class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.#ctor"> <summary> Initializes a new instance of the Presentation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.Save(DocumentFormat.OpenXml.Packaging.PresentationPart)"> <summary> Saves the DOM into the PresentationPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Presentation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.ServerZoom"> <summary> <para> Server Zoom.</para> <para>Represents the attribte in schema: serverZoom </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.FirstSlideNum"> <summary> <para> First Slide Number.</para> <para>Represents the attribte in schema: firstSlideNum </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.ShowSpecialPlaceholderOnTitleSlide"> <summary> <para> Show Header and Footer Placeholders on Titles.</para> <para>Represents the attribte in schema: showSpecialPlsOnTitleSld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.RightToLeft"> <summary> <para> Right-To-Left Views.</para> <para>Represents the attribte in schema: rtl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.RemovePersonalInfoOnSave"> <summary> <para> Remove Personal Information on Save.</para> <para>Represents the attribte in schema: removePersonalInfoOnSave </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.CompatibilityMode"> <summary> <para> Compatibility Mode.</para> <para>Represents the attribte in schema: compatMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.StrictFirstAndLastChars"> <summary> <para> Strict First and Last Characters.</para> <para>Represents the attribte in schema: strictFirstAndLastChars </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.EmbedTrueTypeFonts"> <summary> <para> Embed True Type Fonts.</para> <para>Represents the attribte in schema: embedTrueTypeFonts </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.SaveSubsetFonts"> <summary> <para> Save Subset Fonts.</para> <para>Represents the attribte in schema: saveSubsetFonts </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.AutoCompressPictures"> <summary> <para> Automatically Compress Pictures.</para> <para>Represents the attribte in schema: autoCompressPictures </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.BookmarkIdSeed"> <summary> <para> Bookmark ID Seed.</para> <para>Represents the attribte in schema: bookmarkIdSeed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.Conformance"> <summary> <para> conformance, this property is only available in Office2010.</para> <para>Represents the attribte in schema: conformance </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.PresentationPart"> <summary> Gets the PresentationPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.SlideMasterIdList"> <summary> <para> List of Slide Master IDs.</para> <para>Represents the element tag in schema: p:sldMasterIdLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.NotesMasterIdList"> <summary> <para> List of Notes Master IDs.</para> <para>Represents the element tag in schema: p:notesMasterIdLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.HandoutMasterIdList"> <summary> <para> List of Handout Master IDs.</para> <para>Represents the element tag in schema: p:handoutMasterIdLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.SlideIdList"> <summary> <para> List of Slide IDs.</para> <para>Represents the element tag in schema: p:sldIdLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.SlideSize"> <summary> <para> Presentation Slide Size.</para> <para>Represents the element tag in schema: p:sldSz </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.NotesSize"> <summary> <para> Notes Slide Size.</para> <para>Represents the element tag in schema: p:notesSz </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.SmartTags"> <summary> <para> Smart Tags.</para> <para>Represents the element tag in schema: p:smartTags </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.EmbeddedFontList"> <summary> <para> Embedded Font List.</para> <para>Represents the element tag in schema: p:embeddedFontLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.CustomShowList"> <summary> <para> List of Custom Shows.</para> <para>Represents the element tag in schema: p:custShowLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.PhotoAlbum"> <summary> <para> Photo Album Information.</para> <para>Represents the element tag in schema: p:photoAlbum </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.CustomerDataList"> <summary> <para> List of Customer Data Buckets.</para> <para>Represents the element tag in schema: p:custDataLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.Kinsoku"> <summary> <para> Kinsoku Settings.</para> <para>Represents the element tag in schema: p:kinsoku </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.DefaultTextStyle"> <summary> <para> Presentation Default Text Style.</para> <para>Represents the element tag in schema: p:defaultTextStyle </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.ModificationVerifier"> <summary> <para> Modification Verifier.</para> <para>Represents the element tag in schema: p:modifyVerifier </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Presentation.PresentationExtensionList"> <summary> <para> Extension List.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PresentationProperties"> <summary> <para>Presentation-wide Properties. It is the root element of PresentationPropertiesPart.</para> <para>When the object is serialized out as xml, its qualified name is p:presentationPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HtmlPublishProperties <p:htmlPubPr></description></item> <item><description>WebProperties <p:webPr></description></item> <item><description>PrintingProperties <p:prnPr></description></item> <item><description>ShowProperties <p:showPr></description></item> <item><description>ColorMostRecentlyUsed <p:clrMru></description></item> <item><description>PresentationPropertiesExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.#ctor(DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart)"> <summary> PresentationProperties constructor </summary> <param name="ownerPart">The owner part of the PresentationProperties</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.Load(DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart)"> <summary> Loads the DOM from the PresentationPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresentationProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresentationProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.#ctor(System.String)"> <summary> Initializes a new instance of the PresentationProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.#ctor"> <summary> Initializes a new instance of the PresentationProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.Save(DocumentFormat.OpenXml.Packaging.PresentationPropertiesPart)"> <summary> Saves the DOM into the PresentationPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.PresentationPropertiesPart"> <summary> Gets the PresentationPropertiesPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.HtmlPublishProperties"> <summary> <para> HTML Publishing Properties, this property is only available in Office2007.</para> <para>Represents the element tag in schema: p:htmlPubPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.WebProperties"> <summary> <para> Web Properties, this property is only available in Office2007.</para> <para>Represents the element tag in schema: p:webPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.PrintingProperties"> <summary> <para> Printing Properties.</para> <para>Represents the element tag in schema: p:prnPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.ShowProperties"> <summary> <para> Presentation-wide Show Properties.</para> <para>Represents the element tag in schema: p:showPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.ColorMostRecentlyUsed"> <summary> <para> Color MRU.</para> <para>Represents the element tag in schema: p:clrMru </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationProperties.PresentationPropertiesExtensionList"> <summary> <para> PresentationPropertiesExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Slide"> <summary> <para>Presentation Slide. It is the root element of SlidePart.</para> <para>When the object is serialized out as xml, its qualified name is p:sld.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideData <p:cSld></description></item> <item><description>ColorMapOverride <p:clrMapOvr></description></item> <item><description>Transition <p:transition></description></item> <item><description>Timing <p:timing></description></item> <item><description>SlideExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.#ctor(DocumentFormat.OpenXml.Packaging.SlidePart)"> <summary> Slide constructor </summary> <param name="ownerPart">The owner part of the Slide</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.Load(DocumentFormat.OpenXml.Packaging.SlidePart)"> <summary> Loads the DOM from the SlidePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Slide class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Slide class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.#ctor(System.String)"> <summary> Initializes a new instance of the Slide class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.#ctor"> <summary> Initializes a new instance of the Slide class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.Save(DocumentFormat.OpenXml.Packaging.SlidePart)"> <summary> Saves the DOM into the SlidePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Slide.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.ShowMasterShapes"> <summary> <para> Show Master Shapes.</para> <para>Represents the attribte in schema: showMasterSp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.ShowMasterPlaceholderAnimations"> <summary> <para> Show Master Placeholder Animations.</para> <para>Represents the attribte in schema: showMasterPhAnim </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.Show"> <summary> <para> Show Slide in Slide Show.</para> <para>Represents the attribte in schema: show </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.SlidePart"> <summary> Gets the SlidePart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.CommonSlideData"> <summary> <para> Common slide data for slides.</para> <para>Represents the element tag in schema: p:cSld </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.ColorMapOverride"> <summary> <para> Color Scheme Map Override.</para> <para>Represents the element tag in schema: p:clrMapOvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.Transition"> <summary> <para> Slide Transition.</para> <para>Represents the element tag in schema: p:transition </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.Timing"> <summary> <para> Slide Timing Information for a Slide.</para> <para>Represents the element tag in schema: p:timing </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Slide.SlideExtensionList"> <summary> <para> SlideExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideLayout"> <summary> <para>Slide Layout. It is the root element of SlideLayoutPart.</para> <para>When the object is serialized out as xml, its qualified name is p:sldLayout.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideData <p:cSld></description></item> <item><description>ColorMapOverride <p:clrMapOvr></description></item> <item><description>Transition <p:transition></description></item> <item><description>Timing <p:timing></description></item> <item><description>HeaderFooter <p:hf></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.#ctor(DocumentFormat.OpenXml.Packaging.SlideLayoutPart)"> <summary> SlideLayout constructor </summary> <param name="ownerPart">The owner part of the SlideLayout</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.Load(DocumentFormat.OpenXml.Packaging.SlideLayoutPart)"> <summary> Loads the DOM from the SlideLayoutPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideLayout class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideLayout class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.#ctor(System.String)"> <summary> Initializes a new instance of the SlideLayout class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.#ctor"> <summary> Initializes a new instance of the SlideLayout class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.Save(DocumentFormat.OpenXml.Packaging.SlideLayoutPart)"> <summary> Saves the DOM into the SlideLayoutPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayout.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.ShowMasterShapes"> <summary> <para> Show Master Shapes.</para> <para>Represents the attribte in schema: showMasterSp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.ShowMasterPlaceholderAnimations"> <summary> <para> Show Master Placeholder Animations.</para> <para>Represents the attribte in schema: showMasterPhAnim </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.MatchingName"> <summary> <para> Matching Name.</para> <para>Represents the attribte in schema: matchingName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.Type"> <summary> <para> Slide Layout Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.Preserve"> <summary> <para> Preserve Slide Layout.</para> <para>Represents the attribte in schema: preserve </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.UserDrawn"> <summary> <para> Is User Drawn.</para> <para>Represents the attribte in schema: userDrawn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.SlideLayoutPart"> <summary> Gets the SlideLayoutPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.CommonSlideData"> <summary> <para> Common slide data for slide layouts.</para> <para>Represents the element tag in schema: p:cSld </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.ColorMapOverride"> <summary> <para> Color Scheme Map Override.</para> <para>Represents the element tag in schema: p:clrMapOvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.Transition"> <summary> <para> Slide Transition for a Slide Layout.</para> <para>Represents the element tag in schema: p:transition </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.Timing"> <summary> <para> Slide Timing Information for a Slide Layout.</para> <para>Represents the element tag in schema: p:timing </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.HeaderFooter"> <summary> <para> Header/Footer information for a slide layout.</para> <para>Represents the element tag in schema: p:hf </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayout.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideMaster"> <summary> <para>Slide Master. It is the root element of SlideMasterPart.</para> <para>When the object is serialized out as xml, its qualified name is p:sldMaster.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideData <p:cSld></description></item> <item><description>ColorMap <p:clrMap></description></item> <item><description>SlideLayoutIdList <p:sldLayoutIdLst></description></item> <item><description>Transition <p:transition></description></item> <item><description>Timing <p:timing></description></item> <item><description>HeaderFooter <p:hf></description></item> <item><description>TextStyles <p:txStyles></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.#ctor(DocumentFormat.OpenXml.Packaging.SlideMasterPart)"> <summary> SlideMaster constructor </summary> <param name="ownerPart">The owner part of the SlideMaster</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.Load(DocumentFormat.OpenXml.Packaging.SlideMasterPart)"> <summary> Loads the DOM from the SlideMasterPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideMaster class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideMaster class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.#ctor(System.String)"> <summary> Initializes a new instance of the SlideMaster class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.#ctor"> <summary> Initializes a new instance of the SlideMaster class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.Save(DocumentFormat.OpenXml.Packaging.SlideMasterPart)"> <summary> Saves the DOM into the SlideMasterPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMaster.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.Preserve"> <summary> <para> Preserve Slide Master.</para> <para>Represents the attribte in schema: preserve </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.SlideMasterPart"> <summary> Gets the SlideMasterPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.CommonSlideData"> <summary> <para> Common slide data for slide masters.</para> <para>Represents the element tag in schema: p:cSld </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.ColorMap"> <summary> <para> Color Scheme Map.</para> <para>Represents the element tag in schema: p:clrMap </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.SlideLayoutIdList"> <summary> <para> List of Slide Layouts.</para> <para>Represents the element tag in schema: p:sldLayoutIdLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.Transition"> <summary> <para> Slide Transition for a Slide Master.</para> <para>Represents the element tag in schema: p:transition </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.Timing"> <summary> <para> Slide Timing Information for Slide Masters.</para> <para>Represents the element tag in schema: p:timing </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.HeaderFooter"> <summary> <para> Header/Footer information for a slide master.</para> <para>Represents the element tag in schema: p:hf </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.TextStyles"> <summary> <para> Slide Master Text Styles.</para> <para>Represents the element tag in schema: p:txStyles </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMaster.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.HandoutMaster"> <summary> <para>Handout Master. It is the root element of HandoutMasterPart.</para> <para>When the object is serialized out as xml, its qualified name is p:handoutMaster.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideData <p:cSld></description></item> <item><description>ColorMap <p:clrMap></description></item> <item><description>HeaderFooter <p:hf></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.#ctor(DocumentFormat.OpenXml.Packaging.HandoutMasterPart)"> <summary> HandoutMaster constructor </summary> <param name="ownerPart">The owner part of the HandoutMaster</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.Load(DocumentFormat.OpenXml.Packaging.HandoutMasterPart)"> <summary> Loads the DOM from the HandoutMasterPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HandoutMaster class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HandoutMaster class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.#ctor(System.String)"> <summary> Initializes a new instance of the HandoutMaster class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.#ctor"> <summary> Initializes a new instance of the HandoutMaster class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.Save(DocumentFormat.OpenXml.Packaging.HandoutMasterPart)"> <summary> Saves the DOM into the HandoutMasterPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMaster.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMaster.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMaster.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMaster.HandoutMasterPart"> <summary> Gets the HandoutMasterPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMaster.CommonSlideData"> <summary> <para> Common slide data for handout master.</para> <para>Represents the element tag in schema: p:cSld </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMaster.ColorMap"> <summary> <para> Color Scheme Map.</para> <para>Represents the element tag in schema: p:clrMap </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMaster.HeaderFooter"> <summary> <para> Header/Footer information for a handout master.</para> <para>Represents the element tag in schema: p:hf </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMaster.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NotesMaster"> <summary> <para>Notes Master. It is the root element of NotesMasterPart.</para> <para>When the object is serialized out as xml, its qualified name is p:notesMaster.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideData <p:cSld></description></item> <item><description>ColorMap <p:clrMap></description></item> <item><description>HeaderFooter <p:hf></description></item> <item><description>NotesStyle <p:notesStyle></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.#ctor(DocumentFormat.OpenXml.Packaging.NotesMasterPart)"> <summary> NotesMaster constructor </summary> <param name="ownerPart">The owner part of the NotesMaster</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.Load(DocumentFormat.OpenXml.Packaging.NotesMasterPart)"> <summary> Loads the DOM from the NotesMasterPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NotesMaster class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NotesMaster class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.#ctor(System.String)"> <summary> Initializes a new instance of the NotesMaster class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.#ctor"> <summary> Initializes a new instance of the NotesMaster class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.Save(DocumentFormat.OpenXml.Packaging.NotesMasterPart)"> <summary> Saves the DOM into the NotesMasterPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMaster.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMaster.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMaster.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMaster.NotesMasterPart"> <summary> Gets the NotesMasterPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMaster.CommonSlideData"> <summary> <para> Common Slide Data.</para> <para>Represents the element tag in schema: p:cSld </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMaster.ColorMap"> <summary> <para> Color Scheme Map.</para> <para>Represents the element tag in schema: p:clrMap </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMaster.HeaderFooter"> <summary> <para> Header/Footer Information for a Notes Master.</para> <para>Represents the element tag in schema: p:hf </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMaster.NotesStyle"> <summary> <para> Notes Text Style.</para> <para>Represents the element tag in schema: p:notesStyle </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMaster.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NotesSlide"> <summary> <para>Notes Slide. It is the root element of NotesSlidePart.</para> <para>When the object is serialized out as xml, its qualified name is p:notes.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideData <p:cSld></description></item> <item><description>ColorMapOverride <p:clrMapOvr></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.#ctor(DocumentFormat.OpenXml.Packaging.NotesSlidePart)"> <summary> NotesSlide constructor </summary> <param name="ownerPart">The owner part of the NotesSlide</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.Load(DocumentFormat.OpenXml.Packaging.NotesSlidePart)"> <summary> Loads the DOM from the NotesSlidePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NotesSlide class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NotesSlide class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.#ctor(System.String)"> <summary> Initializes a new instance of the NotesSlide class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.#ctor"> <summary> Initializes a new instance of the NotesSlide class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.Save(DocumentFormat.OpenXml.Packaging.NotesSlidePart)"> <summary> Saves the DOM into the NotesSlidePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSlide.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSlide.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSlide.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSlide.ShowMasterShapes"> <summary> <para> Show Master Shapes.</para> <para>Represents the attribte in schema: showMasterSp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSlide.ShowMasterPlaceholderAnimations"> <summary> <para> Show Master Placeholder Animations.</para> <para>Represents the attribte in schema: showMasterPhAnim </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSlide.NotesSlidePart"> <summary> Gets the NotesSlidePart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSlide.CommonSlideData"> <summary> <para> Common slide data for notes slides.</para> <para>Represents the element tag in schema: p:cSld </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSlide.ColorMapOverride"> <summary> <para> Color Scheme Map Override.</para> <para>Represents the element tag in schema: p:clrMapOvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSlide.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideSyncProperties"> <summary> <para>Slide Synchronization Properties. It is the root element of SlideSyncDataPart.</para> <para>When the object is serialized out as xml, its qualified name is p:sldSyncPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.#ctor(DocumentFormat.OpenXml.Packaging.SlideSyncDataPart)"> <summary> SlideSyncProperties constructor </summary> <param name="ownerPart">The owner part of the SlideSyncProperties</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.Load(DocumentFormat.OpenXml.Packaging.SlideSyncDataPart)"> <summary> Loads the DOM from the SlideSyncDataPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideSyncProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideSyncProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.#ctor(System.String)"> <summary> Initializes a new instance of the SlideSyncProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.#ctor"> <summary> Initializes a new instance of the SlideSyncProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.Save(DocumentFormat.OpenXml.Packaging.SlideSyncDataPart)"> <summary> Saves the DOM into the SlideSyncDataPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.ServerSlideId"> <summary> <para> Server's Slide File ID.</para> <para>Represents the attribte in schema: serverSldId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.ServerSlideModifiedTime"> <summary> <para> Server's Slide File's modification date/time.</para> <para>Represents the attribte in schema: serverSldModifiedTime </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.ClientInsertedTime"> <summary> <para> Client Slide Insertion date/time.</para> <para>Represents the attribte in schema: clientInsertedTime </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.SlideSyncDataPart"> <summary> Gets the SlideSyncDataPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSyncProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TagList"> <summary> <para>Programmable Tab List. It is the root element of UserDefinedTagsPart.</para> <para>When the object is serialized out as xml, its qualified name is p:tagLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tag <p:tag></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.#ctor(DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart)"> <summary> TagList constructor </summary> <param name="ownerPart">The owner part of the TagList</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.Load(DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart)"> <summary> Loads the DOM from the UserDefinedTagsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TagList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TagList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.#ctor(System.String)"> <summary> Initializes a new instance of the TagList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.#ctor"> <summary> Initializes a new instance of the TagList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.Save(DocumentFormat.OpenXml.Packaging.UserDefinedTagsPart)"> <summary> Saves the DOM into the UserDefinedTagsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TagList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TagList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TagList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TagList.UserDefinedTagsPart"> <summary> Gets the UserDefinedTagsPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ViewProperties"> <summary> <para>Presentation-wide View Properties. It is the root element of ViewPropertiesPart.</para> <para>When the object is serialized out as xml, its qualified name is p:viewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NormalViewProperties <p:normalViewPr></description></item> <item><description>SlideViewProperties <p:slideViewPr></description></item> <item><description>OutlineViewProperties <p:outlineViewPr></description></item> <item><description>NotesTextViewProperties <p:notesTextViewPr></description></item> <item><description>SorterViewProperties <p:sorterViewPr></description></item> <item><description>NotesViewProperties <p:notesViewPr></description></item> <item><description>GridSpacing <p:gridSpacing></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.#ctor(DocumentFormat.OpenXml.Packaging.ViewPropertiesPart)"> <summary> ViewProperties constructor </summary> <param name="ownerPart">The owner part of the ViewProperties</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.Load(DocumentFormat.OpenXml.Packaging.ViewPropertiesPart)"> <summary> Loads the DOM from the ViewPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.#ctor"> <summary> Initializes a new instance of the ViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.Save(DocumentFormat.OpenXml.Packaging.ViewPropertiesPart)"> <summary> Saves the DOM into the ViewPropertiesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.LastView"> <summary> <para> Last View.</para> <para>Represents the attribte in schema: lastView </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.ShowComments"> <summary> <para> Show Comments.</para> <para>Represents the attribte in schema: showComments </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.ViewPropertiesPart"> <summary> Gets the ViewPropertiesPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.NormalViewProperties"> <summary> <para> Normal View Properties.</para> <para>Represents the element tag in schema: p:normalViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.SlideViewProperties"> <summary> <para> Slide View Properties.</para> <para>Represents the element tag in schema: p:slideViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.OutlineViewProperties"> <summary> <para> Outline View Properties.</para> <para>Represents the element tag in schema: p:outlineViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.NotesTextViewProperties"> <summary> <para> Notes Text View Properties.</para> <para>Represents the element tag in schema: p:notesTextViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.SorterViewProperties"> <summary> <para> Slide Sorter View Properties.</para> <para>Represents the element tag in schema: p:sorterViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.NotesViewProperties"> <summary> <para> Notes View Properties.</para> <para>Represents the element tag in schema: p:notesViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.GridSpacing"> <summary> <para> Grid Spacing.</para> <para>Represents the element tag in schema: p:gridSpacing </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ViewProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ContentPart"> <summary> <para>Defines the ContentPart Class.</para> <para>This class is only available in Office2010.</para> <para>When the object is serialized out as xml, its qualified name is p:contentPart.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.NonVisualContentPartProperties <p14:nvContentPartPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.Transform2D <p14:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ExtensionListModify <p14:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ContentPart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ContentPart.#ctor"> <summary> Initializes a new instance of the ContentPart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ContentPart.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ContentPart.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ContentPart class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ContentPart.#ctor(System.String)"> <summary> Initializes a new instance of the ContentPart class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ContentPart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ContentPart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ContentPart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ContentPart.BwMode"> <summary> <para> bwMode.</para> <para>Represents the attribte in schema: p14:bwMode </para> </summary> <remark> xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ContentPart.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ContentPart.NonVisualContentPartProperties"> <summary> <para> NonVisualContentPartProperties.</para> <para>Represents the element tag in schema: p14:nvContentPartPr </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ContentPart.Transform2D"> <summary> <para> Transform2D.</para> <para>Represents the element tag in schema: p14:xfrm </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ContentPart.ExtensionListModify"> <summary> <para> ExtensionListModify.</para> <para>Represents the element tag in schema: p14:extLst </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Sound"> <summary> <para>Sound.</para> <para>When the object is serialized out as xml, its qualified name is p:snd.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EmbeddedWavAudioFileType"> <summary> Defines the EmbeddedWavAudioFileType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedWavAudioFileType.#ctor"> <summary> Initializes a new instance of the EmbeddedWavAudioFileType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedWavAudioFileType.Embed"> <summary> <para> Embedded Audio File Relationship ID.</para> <para>Represents the attribte in schema: r:embed </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedWavAudioFileType.Name"> <summary> <para> Sound Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedWavAudioFileType.BuiltIn"> <summary> <para> Recognized Built-In Sound.</para> <para>Represents the attribte in schema: builtIn </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Sound.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Sound.#ctor"> <summary> Initializes a new instance of the Sound class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Sound.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Sound.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Sound.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SoundTarget"> <summary> <para>Sound Target.</para> <para>When the object is serialized out as xml, its qualified name is p:sndTgt.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundTarget.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundTarget.#ctor"> <summary> Initializes a new instance of the SoundTarget class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundTarget.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SoundTarget.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SoundTarget.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.StartSoundAction"> <summary> <para>Start Sound Action.</para> <para>When the object is serialized out as xml, its qualified name is p:stSnd.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Sound <p:snd></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartSoundAction.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartSoundAction.#ctor"> <summary> Initializes a new instance of the StartSoundAction class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartSoundAction.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StartSoundAction class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartSoundAction.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StartSoundAction class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartSoundAction.#ctor(System.String)"> <summary> Initializes a new instance of the StartSoundAction class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartSoundAction.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StartSoundAction.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StartSoundAction.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StartSoundAction.Loop"> <summary> <para> Loop Sound.</para> <para>Represents the attribte in schema: loop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StartSoundAction.Sound"> <summary> <para> Sound.</para> <para>Represents the element tag in schema: p:snd </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeAbsolute"> <summary> <para>Time Absolute.</para> <para>When the object is serialized out as xml, its qualified name is p:tmAbs.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAbsolute.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAbsolute.#ctor"> <summary> Initializes a new instance of the TimeAbsolute class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAbsolute.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAbsolute.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAbsolute.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAbsolute.Val"> <summary> <para> Time.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimePercentage"> <summary> <para>Time Percentage.</para> <para>When the object is serialized out as xml, its qualified name is p:tmPct.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimePercentage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimePercentage.#ctor"> <summary> Initializes a new instance of the TimePercentage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimePercentage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimePercentage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimePercentage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimePercentage.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TargetElement"> <summary> <para>Target Element Trigger Choice.</para> <para>When the object is serialized out as xml, its qualified name is p:tgtEl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideTarget <p:sldTgt></description></item> <item><description>SoundTarget <p:sndTgt></description></item> <item><description>ShapeTarget <p:spTgt></description></item> <item><description>InkTarget <p:inkTgt></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.BookmarkTarget <p14:bmkTgt></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TargetElement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TargetElement.#ctor"> <summary> Initializes a new instance of the TargetElement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TargetElement.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TargetElement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TargetElement.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TargetElement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TargetElement.#ctor(System.String)"> <summary> Initializes a new instance of the TargetElement class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TargetElement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TargetElement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TargetElement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TargetElement.SlideTarget"> <summary> <para> Slide Target.</para> <para>Represents the element tag in schema: p:sldTgt </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TargetElement.SoundTarget"> <summary> <para> Sound Target.</para> <para>Represents the element tag in schema: p:sndTgt </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TargetElement.ShapeTarget"> <summary> <para> Shape Target.</para> <para>Represents the element tag in schema: p:spTgt </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TargetElement.InkTarget"> <summary> <para> Ink Target.</para> <para>Represents the element tag in schema: p:inkTgt </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TargetElement.BookmarkTarget"> <summary> <para> BookmarkTarget, this property is only available in Office2010.</para> <para>Represents the element tag in schema: p14:bmkTgt </para> </summary> <remark> xmlns:p14 = http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeNode"> <summary> <para>Time Node.</para> <para>When the object is serialized out as xml, its qualified name is p:tn.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNode.#ctor"> <summary> Initializes a new instance of the TimeNode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeNode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeNode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeNode.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.RuntimeNodeTrigger"> <summary> <para>Runtime Node Trigger Choice.</para> <para>When the object is serialized out as xml, its qualified name is p:rtn.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RuntimeNodeTrigger.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RuntimeNodeTrigger.#ctor"> <summary> Initializes a new instance of the RuntimeNodeTrigger class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RuntimeNodeTrigger.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RuntimeNodeTrigger.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RuntimeNodeTrigger.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RuntimeNodeTrigger.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Condition"> <summary> <para>Condition.</para> <para>When the object is serialized out as xml, its qualified name is p:cond.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TargetElement <p:tgtEl></description></item> <item><description>TimeNode <p:tn></description></item> <item><description>RuntimeNodeTrigger <p:rtn></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeListConditionalType"> <summary> Defines the TimeListConditionalType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TargetElement <p:tgtEl></description></item> <item><description>TimeNode <p:tn></description></item> <item><description>RuntimeNodeTrigger <p:rtn></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.#ctor"> <summary> Initializes a new instance of the TimeListConditionalType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TimeListConditionalType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TimeListConditionalType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.#ctor(System.String)"> <summary> Initializes a new instance of the TimeListConditionalType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.Event"> <summary> <para> Trigger Event.</para> <para>Represents the attribte in schema: evt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.Delay"> <summary> <para> Trigger Delay.</para> <para>Represents the attribte in schema: delay </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.TargetElement"> <summary> <para> Target Element Trigger Choice.</para> <para>Represents the element tag in schema: p:tgtEl </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.TimeNode"> <summary> <para> Time Node.</para> <para>Represents the element tag in schema: p:tn </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListConditionalType.RuntimeNodeTrigger"> <summary> <para> Runtime Node Trigger Choice.</para> <para>Represents the element tag in schema: p:rtn </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Condition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Condition.#ctor"> <summary> Initializes a new instance of the Condition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Condition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Condition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Condition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Condition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Condition.#ctor(System.String)"> <summary> Initializes a new instance of the Condition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Condition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Condition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Condition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EndSync"> <summary> <para>EndSync.</para> <para>When the object is serialized out as xml, its qualified name is p:endSync.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TargetElement <p:tgtEl></description></item> <item><description>TimeNode <p:tn></description></item> <item><description>RuntimeNodeTrigger <p:rtn></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSync.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSync.#ctor"> <summary> Initializes a new instance of the EndSync class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSync.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EndSync class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSync.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EndSync class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSync.#ctor(System.String)"> <summary> Initializes a new instance of the EndSync class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndSync.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EndSync.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EndSync.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ParallelTimeNode"> <summary> <para>Parallel Time Node.</para> <para>When the object is serialized out as xml, its qualified name is p:par.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonTimeNode <p:cTn></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.#ctor"> <summary> Initializes a new instance of the ParallelTimeNode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ParallelTimeNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ParallelTimeNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.#ctor(System.String)"> <summary> Initializes a new instance of the ParallelTimeNode class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ParallelTimeNode.CommonTimeNode"> <summary> <para> Parallel TimeNode.</para> <para>Represents the element tag in schema: p:cTn </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SequenceTimeNode"> <summary> <para>Sequence Time Node.</para> <para>When the object is serialized out as xml, its qualified name is p:seq.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonTimeNode <p:cTn></description></item> <item><description>PreviousConditionList <p:prevCondLst></description></item> <item><description>NextConditionList <p:nextCondLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.#ctor"> <summary> Initializes a new instance of the SequenceTimeNode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SequenceTimeNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SequenceTimeNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.#ctor(System.String)"> <summary> Initializes a new instance of the SequenceTimeNode class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.Concurrent"> <summary> <para> Concurrent.</para> <para>Represents the attribte in schema: concurrent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.PreviousAction"> <summary> <para> Previous Action.</para> <para>Represents the attribte in schema: prevAc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.NextAction"> <summary> <para> Next Action.</para> <para>Represents the attribte in schema: nextAc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.CommonTimeNode"> <summary> <para> Common TimeNode Properties.</para> <para>Represents the element tag in schema: p:cTn </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.PreviousConditionList"> <summary> <para> Previous Conditions List.</para> <para>Represents the element tag in schema: p:prevCondLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SequenceTimeNode.NextConditionList"> <summary> <para> Next Conditions List.</para> <para>Represents the element tag in schema: p:nextCondLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode"> <summary> <para>Exclusive.</para> <para>When the object is serialized out as xml, its qualified name is p:excl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonTimeNode <p:cTn></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.#ctor"> <summary> Initializes a new instance of the ExclusiveTimeNode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExclusiveTimeNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExclusiveTimeNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.#ctor(System.String)"> <summary> Initializes a new instance of the ExclusiveTimeNode class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ExclusiveTimeNode.CommonTimeNode"> <summary> <para> Common TimeNode Properties.</para> <para>Represents the element tag in schema: p:cTn </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Animate"> <summary> <para>Animate.</para> <para>When the object is serialized out as xml, its qualified name is p:anim.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonBehavior <p:cBhvr></description></item> <item><description>TimeAnimateValueList <p:tavLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Animate.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Animate.#ctor"> <summary> Initializes a new instance of the Animate class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Animate.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Animate class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Animate.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Animate class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Animate.#ctor(System.String)"> <summary> Initializes a new instance of the Animate class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Animate.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.By"> <summary> <para> By.</para> <para>Represents the attribte in schema: by </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.From"> <summary> <para> From.</para> <para>Represents the attribte in schema: from </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.To"> <summary> <para> To.</para> <para>Represents the attribte in schema: to </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.CalculationMode"> <summary> <para> Calculation Mode.</para> <para>Represents the attribte in schema: calcmode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.ValueType"> <summary> <para> Value Type.</para> <para>Represents the attribte in schema: valueType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.BounceEnd"> <summary> <para> bounceEnd, this property is only available in Office2010.</para> <para>Represents the attribte in schema: p14:bounceEnd </para> </summary> <remark> xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.CommonBehavior"> <summary> <para> CommonBehavior.</para> <para>Represents the element tag in schema: p:cBhvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Animate.TimeAnimateValueList"> <summary> <para> Time Animated Value List.</para> <para>Represents the element tag in schema: p:tavLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateColor"> <summary> <para>Animate Color Behavior.</para> <para>When the object is serialized out as xml, its qualified name is p:animClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonBehavior <p:cBhvr></description></item> <item><description>ByColor <p:by></description></item> <item><description>FromColor <p:from></description></item> <item><description>ToColor <p:to></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateColor.#ctor"> <summary> Initializes a new instance of the AnimateColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AnimateColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AnimateColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateColor.#ctor(System.String)"> <summary> Initializes a new instance of the AnimateColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateColor.ColorSpace"> <summary> <para> Color Space.</para> <para>Represents the attribte in schema: clrSpc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateColor.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateColor.CommonBehavior"> <summary> <para> CommonBehavior.</para> <para>Represents the element tag in schema: p:cBhvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateColor.ByColor"> <summary> <para> By.</para> <para>Represents the element tag in schema: p:by </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateColor.FromColor"> <summary> <para> From.</para> <para>Represents the element tag in schema: p:from </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateColor.ToColor"> <summary> <para> To.</para> <para>Represents the element tag in schema: p:to </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateEffect"> <summary> <para>Animate Effect.</para> <para>When the object is serialized out as xml, its qualified name is p:animEffect.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonBehavior <p:cBhvr></description></item> <item><description>Progress <p:progress></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateEffect.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateEffect.#ctor"> <summary> Initializes a new instance of the AnimateEffect class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateEffect.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AnimateEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateEffect.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AnimateEffect class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateEffect.#ctor(System.String)"> <summary> Initializes a new instance of the AnimateEffect class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateEffect.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateEffect.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateEffect.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateEffect.Transition"> <summary> <para> Transition.</para> <para>Represents the attribte in schema: transition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateEffect.Filter"> <summary> <para> Filter.</para> <para>Represents the attribte in schema: filter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateEffect.PropertyList"> <summary> <para> Property List.</para> <para>Represents the attribte in schema: prLst </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateEffect.CommonBehavior"> <summary> <para> CommonBehavior.</para> <para>Represents the element tag in schema: p:cBhvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateEffect.Progress"> <summary> <para> Progress.</para> <para>Represents the element tag in schema: p:progress </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateMotion"> <summary> <para>Animate Motion.</para> <para>When the object is serialized out as xml, its qualified name is p:animMotion.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonBehavior <p:cBhvr></description></item> <item><description>ByPosition <p:by></description></item> <item><description>FromPosition <p:from></description></item> <item><description>ToPosition <p:to></description></item> <item><description>RotationCenter <p:rCtr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateMotion.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateMotion.#ctor"> <summary> Initializes a new instance of the AnimateMotion class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateMotion.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AnimateMotion class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateMotion.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AnimateMotion class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateMotion.#ctor(System.String)"> <summary> Initializes a new instance of the AnimateMotion class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateMotion.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.Origin"> <summary> <para> Origin.</para> <para>Represents the attribte in schema: origin </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.Path"> <summary> <para> Path.</para> <para>Represents the attribte in schema: path </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.PathEditMode"> <summary> <para> Path Edit Mode.</para> <para>Represents the attribte in schema: pathEditMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.RelativeAngle"> <summary> <para> Relative Angle.</para> <para>Represents the attribte in schema: rAng </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.PointTypes"> <summary> <para> Points Types.</para> <para>Represents the attribte in schema: ptsTypes </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.BounceEnd"> <summary> <para> bounceEnd, this property is only available in Office2010.</para> <para>Represents the attribte in schema: p14:bounceEnd </para> </summary> <remark> xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.CommonBehavior"> <summary> <para> CommonBehavior.</para> <para>Represents the element tag in schema: p:cBhvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.ByPosition"> <summary> <para> ByPosition.</para> <para>Represents the element tag in schema: p:by </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.FromPosition"> <summary> <para> From.</para> <para>Represents the element tag in schema: p:from </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.ToPosition"> <summary> <para> ToPosition.</para> <para>Represents the element tag in schema: p:to </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateMotion.RotationCenter"> <summary> <para> Rotation Center.</para> <para>Represents the element tag in schema: p:rCtr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateRotation"> <summary> <para>Animate Rotation.</para> <para>When the object is serialized out as xml, its qualified name is p:animRot.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonBehavior <p:cBhvr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateRotation.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateRotation.#ctor"> <summary> Initializes a new instance of the AnimateRotation class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateRotation.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AnimateRotation class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateRotation.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AnimateRotation class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateRotation.#ctor(System.String)"> <summary> Initializes a new instance of the AnimateRotation class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateRotation.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateRotation.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateRotation.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateRotation.By"> <summary> <para> By.</para> <para>Represents the attribte in schema: by </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateRotation.From"> <summary> <para> From.</para> <para>Represents the attribte in schema: from </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateRotation.To"> <summary> <para> To.</para> <para>Represents the attribte in schema: to </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateRotation.BounceEnd"> <summary> <para> bounceEnd, this property is only available in Office2010.</para> <para>Represents the attribte in schema: p14:bounceEnd </para> </summary> <remark> xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateRotation.CommonBehavior"> <summary> <para> CommonBehavior.</para> <para>Represents the element tag in schema: p:cBhvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateScale"> <summary> <para>Animate Scale.</para> <para>When the object is serialized out as xml, its qualified name is p:animScale.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonBehavior <p:cBhvr></description></item> <item><description>ByPosition <p:by></description></item> <item><description>FromPosition <p:from></description></item> <item><description>ToPosition <p:to></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateScale.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateScale.#ctor"> <summary> Initializes a new instance of the AnimateScale class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateScale.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AnimateScale class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateScale.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AnimateScale class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateScale.#ctor(System.String)"> <summary> Initializes a new instance of the AnimateScale class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AnimateScale.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateScale.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateScale.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateScale.BounceEnd"> <summary> <para> bounceEnd, this property is only available in Office2010.</para> <para>Represents the attribte in schema: p14:bounceEnd </para> </summary> <remark> xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateScale.CommonBehavior"> <summary> <para> CommonBehavior.</para> <para>Represents the element tag in schema: p:cBhvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateScale.ByPosition"> <summary> <para> By.</para> <para>Represents the element tag in schema: p:by </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateScale.FromPosition"> <summary> <para> FromPosition.</para> <para>Represents the element tag in schema: p:from </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AnimateScale.ToPosition"> <summary> <para> To.</para> <para>Represents the element tag in schema: p:to </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Command"> <summary> <para>Command.</para> <para>When the object is serialized out as xml, its qualified name is p:cmd.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonBehavior <p:cBhvr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Command.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Command.#ctor"> <summary> Initializes a new instance of the Command class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Command.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Command class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Command.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Command class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Command.#ctor(System.String)"> <summary> Initializes a new instance of the Command class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Command.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Command.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Command.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Command.Type"> <summary> <para> Command Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Command.CommandName"> <summary> <para> Command.</para> <para>Represents the attribte in schema: cmd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Command.CommonBehavior"> <summary> <para> CommonBehavior.</para> <para>Represents the element tag in schema: p:cBhvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SetBehavior"> <summary> <para>Set Time Node Behavior.</para> <para>When the object is serialized out as xml, its qualified name is p:set.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonBehavior <p:cBhvr></description></item> <item><description>ToVariantValue <p:to></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SetBehavior.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SetBehavior.#ctor"> <summary> Initializes a new instance of the SetBehavior class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SetBehavior.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SetBehavior class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SetBehavior.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SetBehavior class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SetBehavior.#ctor(System.String)"> <summary> Initializes a new instance of the SetBehavior class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SetBehavior.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SetBehavior.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SetBehavior.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SetBehavior.CommonBehavior"> <summary> <para> Common Behavior.</para> <para>Represents the element tag in schema: p:cBhvr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SetBehavior.ToVariantValue"> <summary> <para> To.</para> <para>Represents the element tag in schema: p:to </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Audio"> <summary> <para>Audio.</para> <para>When the object is serialized out as xml, its qualified name is p:audio.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonMediaNode <p:cMediaNode></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Audio.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Audio.#ctor"> <summary> Initializes a new instance of the Audio class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Audio.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Audio class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Audio.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Audio class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Audio.#ctor(System.String)"> <summary> Initializes a new instance of the Audio class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Audio.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Audio.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Audio.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Audio.IsNarration"> <summary> <para> Is Narration.</para> <para>Represents the attribte in schema: isNarration </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Audio.CommonMediaNode"> <summary> <para> Common Media Node Properties.</para> <para>Represents the element tag in schema: p:cMediaNode </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Video"> <summary> <para>Video.</para> <para>When the object is serialized out as xml, its qualified name is p:video.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonMediaNode <p:cMediaNode></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Video.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Video.#ctor"> <summary> Initializes a new instance of the Video class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Video.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Video class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Video.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Video class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Video.#ctor(System.String)"> <summary> Initializes a new instance of the Video class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Video.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Video.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Video.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Video.FullScreen"> <summary> <para> Full Screen.</para> <para>Represents the attribte in schema: fullScrn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Video.CommonMediaNode"> <summary> <para> Common Media Node Properties.</para> <para>Represents the element tag in schema: p:cMediaNode </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommonTimeNode"> <summary> <para>Parallel TimeNode.</para> <para>When the object is serialized out as xml, its qualified name is p:cTn.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StartConditionList <p:stCondLst></description></item> <item><description>EndConditionList <p:endCondLst></description></item> <item><description>EndSync <p:endSync></description></item> <item><description>Iterate <p:iterate></description></item> <item><description>ChildTimeNodeList <p:childTnLst></description></item> <item><description>SubTimeNodeList <p:subTnLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonTimeNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonTimeNode.#ctor"> <summary> Initializes a new instance of the CommonTimeNode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonTimeNode.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommonTimeNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonTimeNode.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommonTimeNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonTimeNode.#ctor(System.String)"> <summary> Initializes a new instance of the CommonTimeNode class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonTimeNode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Id"> <summary> <para> ID.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.PresetId"> <summary> <para> Preset ID.</para> <para>Represents the attribte in schema: presetID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.PresetClass"> <summary> <para> Preset Types.</para> <para>Represents the attribte in schema: presetClass </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.PresetSubtype"> <summary> <para> Preset SubType.</para> <para>Represents the attribte in schema: presetSubtype </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Duration"> <summary> <para> Duration.</para> <para>Represents the attribte in schema: dur </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.RepeatCount"> <summary> <para> Repeat Count.</para> <para>Represents the attribte in schema: repeatCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.RepeatDuration"> <summary> <para> Repeat Duration.</para> <para>Represents the attribte in schema: repeatDur </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Speed"> <summary> <para> Speed.</para> <para>Represents the attribte in schema: spd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Acceleration"> <summary> <para> Acceleration.</para> <para>Represents the attribte in schema: accel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Deceleration"> <summary> <para> Deceleration.</para> <para>Represents the attribte in schema: decel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.AutoReverse"> <summary> <para> Auto Reverse.</para> <para>Represents the attribte in schema: autoRev </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Restart"> <summary> <para> Restart.</para> <para>Represents the attribte in schema: restart </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Fill"> <summary> <para> Fill.</para> <para>Represents the attribte in schema: fill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.SyncBehavior"> <summary> <para> Synchronization Behavior.</para> <para>Represents the attribte in schema: syncBehavior </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.TimeFilter"> <summary> <para> Time Filter.</para> <para>Represents the attribte in schema: tmFilter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.EventFilter"> <summary> <para> Event Filter.</para> <para>Represents the attribte in schema: evtFilter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Display"> <summary> <para> Display.</para> <para>Represents the attribte in schema: display </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.MasterRelation"> <summary> <para> Master Relation.</para> <para>Represents the attribte in schema: masterRel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.BuildLevel"> <summary> <para> Build level.</para> <para>Represents the attribte in schema: bldLvl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.GroupId"> <summary> <para> Group ID.</para> <para>Represents the attribte in schema: grpId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.AfterEffect"> <summary> <para> After Effect.</para> <para>Represents the attribte in schema: afterEffect </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.NodeType"> <summary> <para> Node Type.</para> <para>Represents the attribte in schema: nodeType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.NodePlaceholder"> <summary> <para> Node Placeholder.</para> <para>Represents the attribte in schema: nodePh </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.PresetBounceEnd"> <summary> <para> presetBounceEnd, this property is only available in Office2010.</para> <para>Represents the attribte in schema: p14:presetBounceEnd </para> </summary> <remark> xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.StartConditionList"> <summary> <para> Start Conditions List.</para> <para>Represents the element tag in schema: p:stCondLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.EndConditionList"> <summary> <para> End Conditions List.</para> <para>Represents the element tag in schema: p:endCondLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.EndSync"> <summary> <para> EndSync.</para> <para>Represents the element tag in schema: p:endSync </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.Iterate"> <summary> <para> Iterate.</para> <para>Represents the element tag in schema: p:iterate </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.ChildTimeNodeList"> <summary> <para> Children Time Node List.</para> <para>Represents the element tag in schema: p:childTnLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonTimeNode.SubTimeNodeList"> <summary> <para> Sub-TimeNodes List.</para> <para>Represents the element tag in schema: p:subTnLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PreviousConditionList"> <summary> <para>Previous Conditions List.</para> <para>When the object is serialized out as xml, its qualified name is p:prevCondLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Condition <p:cond></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeListTimeConditionalListType"> <summary> Defines the TimeListTimeConditionalListType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Condition <p:cond></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListTimeConditionalListType.#ctor"> <summary> Initializes a new instance of the TimeListTimeConditionalListType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListTimeConditionalListType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TimeListTimeConditionalListType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListTimeConditionalListType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TimeListTimeConditionalListType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListTimeConditionalListType.#ctor(System.String)"> <summary> Initializes a new instance of the TimeListTimeConditionalListType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PreviousConditionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PreviousConditionList.#ctor"> <summary> Initializes a new instance of the PreviousConditionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PreviousConditionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PreviousConditionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PreviousConditionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PreviousConditionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PreviousConditionList.#ctor(System.String)"> <summary> Initializes a new instance of the PreviousConditionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PreviousConditionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PreviousConditionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PreviousConditionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NextConditionList"> <summary> <para>Next Conditions List.</para> <para>When the object is serialized out as xml, its qualified name is p:nextCondLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Condition <p:cond></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NextConditionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NextConditionList.#ctor"> <summary> Initializes a new instance of the NextConditionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NextConditionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NextConditionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NextConditionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NextConditionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NextConditionList.#ctor(System.String)"> <summary> Initializes a new instance of the NextConditionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NextConditionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NextConditionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NextConditionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.StartConditionList"> <summary> <para>Start Conditions List.</para> <para>When the object is serialized out as xml, its qualified name is p:stCondLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Condition <p:cond></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartConditionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartConditionList.#ctor"> <summary> Initializes a new instance of the StartConditionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartConditionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StartConditionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartConditionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StartConditionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartConditionList.#ctor(System.String)"> <summary> Initializes a new instance of the StartConditionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StartConditionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StartConditionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StartConditionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EndConditionList"> <summary> <para>End Conditions List.</para> <para>When the object is serialized out as xml, its qualified name is p:endCondLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Condition <p:cond></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndConditionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndConditionList.#ctor"> <summary> Initializes a new instance of the EndConditionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndConditionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EndConditionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndConditionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EndConditionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndConditionList.#ctor(System.String)"> <summary> Initializes a new instance of the EndConditionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EndConditionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EndConditionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EndConditionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AttributeName"> <summary> <para>Attribute Name.</para> <para>When the object is serialized out as xml, its qualified name is p:attrName.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeName.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeName.#ctor"> <summary> Initializes a new instance of the AttributeName class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeName.#ctor(System.String)"> <summary> Initializes a new instance of the AttributeName class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeName.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AttributeName.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AttributeName.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Text"> <summary> <para>Comment's Text Content.</para> <para>When the object is serialized out as xml, its qualified name is p:text.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Text.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Text.#ctor"> <summary> Initializes a new instance of the Text class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Text.#ctor(System.String)"> <summary> Initializes a new instance of the Text class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Text.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Text.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Text.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AttributeNameList"> <summary> <para>Attribute Name List.</para> <para>When the object is serialized out as xml, its qualified name is p:attrNameLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AttributeName <p:attrName></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeNameList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeNameList.#ctor"> <summary> Initializes a new instance of the AttributeNameList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeNameList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AttributeNameList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeNameList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AttributeNameList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeNameList.#ctor(System.String)"> <summary> Initializes a new instance of the AttributeNameList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.AttributeNameList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AttributeNameList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.AttributeNameList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BooleanVariantValue"> <summary> <para>Boolean Variant.</para> <para>When the object is serialized out as xml, its qualified name is p:boolVal.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BooleanVariantValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BooleanVariantValue.#ctor"> <summary> Initializes a new instance of the BooleanVariantValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BooleanVariantValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BooleanVariantValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BooleanVariantValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BooleanVariantValue.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.IntegerVariantValue"> <summary> <para>Integer.</para> <para>When the object is serialized out as xml, its qualified name is p:intVal.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.IntegerVariantValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.IntegerVariantValue.#ctor"> <summary> Initializes a new instance of the IntegerVariantValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.IntegerVariantValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.IntegerVariantValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.IntegerVariantValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.IntegerVariantValue.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.FloatVariantValue"> <summary> <para>Float Value.</para> <para>When the object is serialized out as xml, its qualified name is p:fltVal.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FloatVariantValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FloatVariantValue.#ctor"> <summary> Initializes a new instance of the FloatVariantValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FloatVariantValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FloatVariantValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FloatVariantValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FloatVariantValue.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.StringVariantValue"> <summary> <para>String Value.</para> <para>When the object is serialized out as xml, its qualified name is p:strVal.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StringVariantValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StringVariantValue.#ctor"> <summary> Initializes a new instance of the StringVariantValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StringVariantValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StringVariantValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StringVariantValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StringVariantValue.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ColorValue"> <summary> <para>Color Value.</para> <para>When the object is serialized out as xml, its qualified name is p:clrVal.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ColorType"> <summary> Defines the ColorType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorType.#ctor"> <summary> Initializes a new instance of the ColorType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorType.#ctor(System.String)"> <summary> Initializes a new instance of the ColorType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorType.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorType.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorType.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorType.SystemColor"> <summary> <para> System Color.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorType.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorType.PresetColor"> <summary> <para> Preset Color.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorValue.#ctor"> <summary> Initializes a new instance of the ColorValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorValue.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorValue class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorValue.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorValue class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorValue.#ctor(System.String)"> <summary> Initializes a new instance of the ColorValue class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PenColor"> <summary> <para>Pen Color for Slide Show.</para> <para>When the object is serialized out as xml, its qualified name is p:penClr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PenColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PenColor.#ctor"> <summary> Initializes a new instance of the PenColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PenColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PenColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PenColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PenColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PenColor.#ctor(System.String)"> <summary> Initializes a new instance of the PenColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PenColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PenColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PenColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeAnimateValue"> <summary> <para>Time Animate Value.</para> <para>When the object is serialized out as xml, its qualified name is p:tav.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VariantValue <p:val></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.#ctor"> <summary> Initializes a new instance of the TimeAnimateValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TimeAnimateValue class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TimeAnimateValue class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.#ctor(System.String)"> <summary> Initializes a new instance of the TimeAnimateValue class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.Time"> <summary> <para> Time.</para> <para>Represents the attribte in schema: tm </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.Fomula"> <summary> <para> Formula.</para> <para>Represents the attribte in schema: fmla </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAnimateValue.VariantValue"> <summary> <para> Value.</para> <para>Represents the element tag in schema: p:val </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.RgbColor"> <summary> <para>RGB.</para> <para>When the object is serialized out as xml, its qualified name is p:rgb.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RgbColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RgbColor.#ctor"> <summary> Initializes a new instance of the RgbColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RgbColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RgbColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RgbColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RgbColor.Red"> <summary> <para> Red.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RgbColor.Green"> <summary> <para> Green.</para> <para>Represents the attribte in schema: g </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RgbColor.Blue"> <summary> <para> Blue.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.HslColor"> <summary> <para>HSL.</para> <para>When the object is serialized out as xml, its qualified name is p:hsl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HslColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HslColor.#ctor"> <summary> Initializes a new instance of the HslColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HslColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HslColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HslColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HslColor.Hue"> <summary> <para> Hue.</para> <para>Represents the attribte in schema: h </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HslColor.Saturation"> <summary> <para> Saturation.</para> <para>Represents the attribte in schema: s </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HslColor.Lightness"> <summary> <para> Lightness.</para> <para>Represents the attribte in schema: l </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommonBehavior"> <summary> <para>Defines the CommonBehavior Class.</para> <para>When the object is serialized out as xml, its qualified name is p:cBhvr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonTimeNode <p:cTn></description></item> <item><description>TargetElement <p:tgtEl></description></item> <item><description>AttributeNameList <p:attrNameLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonBehavior.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonBehavior.#ctor"> <summary> Initializes a new instance of the CommonBehavior class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonBehavior.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommonBehavior class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonBehavior.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommonBehavior class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonBehavior.#ctor(System.String)"> <summary> Initializes a new instance of the CommonBehavior class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonBehavior.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.Additive"> <summary> <para> Additive.</para> <para>Represents the attribte in schema: additive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.Accumulate"> <summary> <para> Accumulate.</para> <para>Represents the attribte in schema: accumulate </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.TransformType"> <summary> <para> Transform Type.</para> <para>Represents the attribte in schema: xfrmType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.From"> <summary> <para> From.</para> <para>Represents the attribte in schema: from </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.To"> <summary> <para> To.</para> <para>Represents the attribte in schema: to </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.By"> <summary> <para> By.</para> <para>Represents the attribte in schema: by </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.RuntimeContext"> <summary> <para> Runtime Context.</para> <para>Represents the attribte in schema: rctx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.Override"> <summary> <para> Override.</para> <para>Represents the attribte in schema: override </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.CommonTimeNode"> <summary> <para> CommonTimeNode.</para> <para>Represents the element tag in schema: p:cTn </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.TargetElement"> <summary> <para> Target Element.</para> <para>Represents the element tag in schema: p:tgtEl </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonBehavior.AttributeNameList"> <summary> <para> Attribute Name List.</para> <para>Represents the element tag in schema: p:attrNameLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Progress"> <summary> <para>Progress.</para> <para>When the object is serialized out as xml, its qualified name is p:progress.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FloatVariantValue <p:fltVal></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Progress.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Progress.#ctor"> <summary> Initializes a new instance of the Progress class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Progress.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Progress class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Progress.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Progress class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Progress.#ctor(System.String)"> <summary> Initializes a new instance of the Progress class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Progress.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Progress.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Progress.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Progress.FloatVariantValue"> <summary> <para> Float Value.</para> <para>Represents the element tag in schema: p:fltVal </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ToVariantValue"> <summary> <para>To.</para> <para>When the object is serialized out as xml, its qualified name is p:to.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BooleanVariantValue <p:boolVal></description></item> <item><description>IntegerVariantValue <p:intVal></description></item> <item><description>FloatVariantValue <p:fltVal></description></item> <item><description>StringVariantValue <p:strVal></description></item> <item><description>ColorValue <p:clrVal></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType"> <summary> Defines the TimeListAnimationVariantType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BooleanVariantValue <p:boolVal></description></item> <item><description>IntegerVariantValue <p:intVal></description></item> <item><description>FloatVariantValue <p:fltVal></description></item> <item><description>StringVariantValue <p:strVal></description></item> <item><description>ColorValue <p:clrVal></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.#ctor"> <summary> Initializes a new instance of the TimeListAnimationVariantType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TimeListAnimationVariantType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TimeListAnimationVariantType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.#ctor(System.String)"> <summary> Initializes a new instance of the TimeListAnimationVariantType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.BooleanVariantValue"> <summary> <para> Boolean Variant.</para> <para>Represents the element tag in schema: p:boolVal </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.IntegerVariantValue"> <summary> <para> Integer.</para> <para>Represents the element tag in schema: p:intVal </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.FloatVariantValue"> <summary> <para> Float Value.</para> <para>Represents the element tag in schema: p:fltVal </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.StringVariantValue"> <summary> <para> String Value.</para> <para>Represents the element tag in schema: p:strVal </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListAnimationVariantType.ColorValue"> <summary> <para> Color Value.</para> <para>Represents the element tag in schema: p:clrVal </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToVariantValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToVariantValue.#ctor"> <summary> Initializes a new instance of the ToVariantValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToVariantValue.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ToVariantValue class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToVariantValue.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ToVariantValue class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToVariantValue.#ctor(System.String)"> <summary> Initializes a new instance of the ToVariantValue class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToVariantValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ToVariantValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ToVariantValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.VariantValue"> <summary> <para>Value.</para> <para>When the object is serialized out as xml, its qualified name is p:val.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BooleanVariantValue <p:boolVal></description></item> <item><description>IntegerVariantValue <p:intVal></description></item> <item><description>FloatVariantValue <p:fltVal></description></item> <item><description>StringVariantValue <p:strVal></description></item> <item><description>ColorValue <p:clrVal></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.VariantValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.VariantValue.#ctor"> <summary> Initializes a new instance of the VariantValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.VariantValue.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VariantValue class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.VariantValue.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VariantValue class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.VariantValue.#ctor(System.String)"> <summary> Initializes a new instance of the VariantValue class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.VariantValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.VariantValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.VariantValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommonMediaNode"> <summary> <para>Common Media Node Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:cMediaNode.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonTimeNode <p:cTn></description></item> <item><description>TargetElement <p:tgtEl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonMediaNode.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonMediaNode.#ctor"> <summary> Initializes a new instance of the CommonMediaNode class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonMediaNode.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommonMediaNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonMediaNode.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommonMediaNode class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonMediaNode.#ctor(System.String)"> <summary> Initializes a new instance of the CommonMediaNode class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonMediaNode.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonMediaNode.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonMediaNode.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonMediaNode.Volume"> <summary> <para> Volume.</para> <para>Represents the attribte in schema: vol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonMediaNode.Mute"> <summary> <para> Mute.</para> <para>Represents the attribte in schema: mute </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonMediaNode.SlideCount"> <summary> <para> Number of Slides.</para> <para>Represents the attribte in schema: numSld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonMediaNode.ShowWhenStopped"> <summary> <para> Show When Stopped.</para> <para>Represents the attribte in schema: showWhenStopped </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonMediaNode.CommonTimeNode"> <summary> <para> Common Time Node Properties.</para> <para>Represents the element tag in schema: p:cTn </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonMediaNode.TargetElement"> <summary> <para> TargetElement.</para> <para>Represents the element tag in schema: p:tgtEl </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeNodeList"> <summary> <para>Time Node List.</para> <para>When the object is serialized out as xml, its qualified name is p:tnLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ParallelTimeNode <p:par></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNodeList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNodeList.#ctor"> <summary> Initializes a new instance of the TimeNodeList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNodeList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TimeNodeList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNodeList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TimeNodeList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNodeList.#ctor(System.String)"> <summary> Initializes a new instance of the TimeNodeList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeNodeList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeNodeList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeNodeList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeNodeList.ParallelTimeNode"> <summary> <para> ParallelTimeNode.</para> <para>Represents the element tag in schema: p:par </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Template"> <summary> <para>Template Effects.</para> <para>When the object is serialized out as xml, its qualified name is p:tmpl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TimeNodeList <p:tnLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Template.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Template.#ctor"> <summary> Initializes a new instance of the Template class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Template.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Template class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Template.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Template class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Template.#ctor(System.String)"> <summary> Initializes a new instance of the Template class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Template.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Template.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Template.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Template.Level"> <summary> <para> Level.</para> <para>Represents the attribte in schema: lvl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Template.TimeNodeList"> <summary> <para> Time Node List.</para> <para>Represents the element tag in schema: p:tnLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TemplateList"> <summary> <para>Template effects.</para> <para>When the object is serialized out as xml, its qualified name is p:tmplLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Template <p:tmpl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TemplateList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TemplateList.#ctor"> <summary> Initializes a new instance of the TemplateList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TemplateList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TemplateList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TemplateList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TemplateList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TemplateList.#ctor(System.String)"> <summary> Initializes a new instance of the TemplateList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TemplateList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TemplateList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TemplateList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BuildSubElement"> <summary> <para>Build Sub Elements.</para> <para>When the object is serialized out as xml, its qualified name is p:bldSub.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BuildDiagram <a:bldDgm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BuildChart <a:bldChart></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildSubElement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildSubElement.#ctor"> <summary> Initializes a new instance of the BuildSubElement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildSubElement.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BuildSubElement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildSubElement.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BuildSubElement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildSubElement.#ctor(System.String)"> <summary> Initializes a new instance of the BuildSubElement class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildSubElement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildSubElement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildSubElement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildSubElement.BuildDiagram"> <summary> <para> Build Diagram.</para> <para>Represents the element tag in schema: a:bldDgm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildSubElement.BuildChart"> <summary> <para> Build Chart.</para> <para>Represents the element tag in schema: a:bldChart </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BuildParagraph"> <summary> <para>Build Paragraph.</para> <para>When the object is serialized out as xml, its qualified name is p:bldP.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TemplateList <p:tmplLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildParagraph.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildParagraph.#ctor"> <summary> Initializes a new instance of the BuildParagraph class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildParagraph.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BuildParagraph class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildParagraph.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BuildParagraph class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildParagraph.#ctor(System.String)"> <summary> Initializes a new instance of the BuildParagraph class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildParagraph.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.ShapeId"> <summary> <para> Shape ID.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.GroupId"> <summary> <para> Group ID.</para> <para>Represents the attribte in schema: grpId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.UiExpand"> <summary> <para> Expand UI.</para> <para>Represents the attribte in schema: uiExpand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.Build"> <summary> <para> Build Types.</para> <para>Represents the attribte in schema: build </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.BuildLevel"> <summary> <para> Build Level.</para> <para>Represents the attribte in schema: bldLvl </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.AnimateBackground"> <summary> <para> Animate Background.</para> <para>Represents the attribte in schema: animBg </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.AutoAnimateBackground"> <summary> <para> Auto Update Animation Background.</para> <para>Represents the attribte in schema: autoUpdateAnimBg </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.Reverse"> <summary> <para> Reverse.</para> <para>Represents the attribte in schema: rev </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.AutoAdvance"> <summary> <para> Auto Advance Time.</para> <para>Represents the attribte in schema: advAuto </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildParagraph.TemplateList"> <summary> <para> Template effects.</para> <para>Represents the element tag in schema: p:tmplLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BuildDiagram"> <summary> <para>Build Diagram.</para> <para>When the object is serialized out as xml, its qualified name is p:bldDgm.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildDiagram.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildDiagram.#ctor"> <summary> Initializes a new instance of the BuildDiagram class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildDiagram.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildDiagram.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildDiagram.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildDiagram.ShapeId"> <summary> <para> Shape ID.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildDiagram.GroupId"> <summary> <para> Group ID.</para> <para>Represents the attribte in schema: grpId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildDiagram.UiExpand"> <summary> <para> Expand UI.</para> <para>Represents the attribte in schema: uiExpand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildDiagram.Build"> <summary> <para> Diagram Build Types.</para> <para>Represents the attribte in schema: bld </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BuildOleChart"> <summary> <para>Build OLE Chart.</para> <para>When the object is serialized out as xml, its qualified name is p:bldOleChart.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildOleChart.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildOleChart.#ctor"> <summary> Initializes a new instance of the BuildOleChart class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildOleChart.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildOleChart.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildOleChart.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildOleChart.ShapeId"> <summary> <para> Shape ID.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildOleChart.GroupId"> <summary> <para> Group ID.</para> <para>Represents the attribte in schema: grpId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildOleChart.UiExpand"> <summary> <para> Expand UI.</para> <para>Represents the attribte in schema: uiExpand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildOleChart.Build"> <summary> <para> Build.</para> <para>Represents the attribte in schema: bld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildOleChart.AnimateBackground"> <summary> <para> Animate Background.</para> <para>Represents the attribte in schema: animBg </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BuildGraphics"> <summary> <para>Build Graphics.</para> <para>When the object is serialized out as xml, its qualified name is p:bldGraphic.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BuildAsOne <p:bldAsOne></description></item> <item><description>BuildSubElement <p:bldSub></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildGraphics.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildGraphics.#ctor"> <summary> Initializes a new instance of the BuildGraphics class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildGraphics.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BuildGraphics class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildGraphics.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BuildGraphics class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildGraphics.#ctor(System.String)"> <summary> Initializes a new instance of the BuildGraphics class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildGraphics.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildGraphics.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildGraphics.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildGraphics.ShapeId"> <summary> <para> Shape ID.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildGraphics.GroupId"> <summary> <para> Group ID.</para> <para>Represents the attribte in schema: grpId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildGraphics.UiExpand"> <summary> <para> Expand UI.</para> <para>Represents the attribte in schema: uiExpand </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildGraphics.BuildAsOne"> <summary> <para> Build As One.</para> <para>Represents the element tag in schema: p:bldAsOne </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildGraphics.BuildSubElement"> <summary> <para> Build Sub Elements.</para> <para>Represents the element tag in schema: p:bldSub </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BuildList"> <summary> <para>Build List.</para> <para>When the object is serialized out as xml, its qualified name is p:bldLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BuildParagraph <p:bldP></description></item> <item><description>BuildDiagram <p:bldDgm></description></item> <item><description>BuildOleChart <p:bldOleChart></description></item> <item><description>BuildGraphics <p:bldGraphic></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildList.#ctor"> <summary> Initializes a new instance of the BuildList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BuildList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BuildList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildList.#ctor(System.String)"> <summary> Initializes a new instance of the BuildList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BuildList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BuildList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification"> <summary> <para>Defines the ExtensionListWithModification Class.</para> <para>When the object is serialized out as xml, its qualified name is p:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Extension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.#ctor"> <summary> Initializes a new instance of the ExtensionListWithModification class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionListWithModification class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionListWithModification class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionListWithModification class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ExtensionListWithModification.Modify"> <summary> <para> Modify.</para> <para>Represents the attribte in schema: mod </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ByColor"> <summary> <para>By.</para> <para>When the object is serialized out as xml, its qualified name is p:by.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RgbColor <p:rgb></description></item> <item><description>HslColor <p:hsl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByColor.#ctor"> <summary> Initializes a new instance of the ByColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ByColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ByColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByColor.#ctor(System.String)"> <summary> Initializes a new instance of the ByColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ByColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ByColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ByColor.RgbColor"> <summary> <para> RGB.</para> <para>Represents the element tag in schema: p:rgb </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ByColor.HslColor"> <summary> <para> HSL.</para> <para>Represents the element tag in schema: p:hsl </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.FromColor"> <summary> <para>From.</para> <para>When the object is serialized out as xml, its qualified name is p:from.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Color3Type"> <summary> Defines the Color3Type class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Color3Type.#ctor"> <summary> Initializes a new instance of the Color3Type class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Color3Type.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Color3Type class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Color3Type.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Color3Type class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Color3Type.#ctor(System.String)"> <summary> Initializes a new instance of the Color3Type class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Color3Type.RgbColorModelPercentage"> <summary> <para> RGB Color Model - Percentage Variant, this property is only available in Office2010.</para> <para>Represents the element tag in schema: a:scrgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Color3Type.RgbColorModelHex"> <summary> <para> RGB Color Model - Hex Variant.</para> <para>Represents the element tag in schema: a:srgbClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Color3Type.HslColor"> <summary> <para> Hue, Saturation, Luminance Color Model, this property is only available in Office2010.</para> <para>Represents the element tag in schema: a:hslClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Color3Type.SystemColor"> <summary> <para> System Color, this property is only available in Office2010.</para> <para>Represents the element tag in schema: a:sysClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Color3Type.SchemeColor"> <summary> <para> Scheme Color.</para> <para>Represents the element tag in schema: a:schemeClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Color3Type.PresetColor"> <summary> <para> Preset Color, this property is only available in Office2010.</para> <para>Represents the element tag in schema: a:prstClr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromColor.#ctor"> <summary> Initializes a new instance of the FromColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FromColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FromColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromColor.#ctor(System.String)"> <summary> Initializes a new instance of the FromColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FromColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FromColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ToColor"> <summary> <para>To.</para> <para>When the object is serialized out as xml, its qualified name is p:to.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToColor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToColor.#ctor"> <summary> Initializes a new instance of the ToColor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToColor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ToColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToColor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ToColor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToColor.#ctor(System.String)"> <summary> Initializes a new instance of the ToColor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToColor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ToColor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ToColor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideListEntry"> <summary> <para>Presentation Slide.</para> <para>When the object is serialized out as xml, its qualified name is p:sld.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideListEntry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideListEntry.#ctor"> <summary> Initializes a new instance of the SlideListEntry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideListEntry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideListEntry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideListEntry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideListEntry.Id"> <summary> <para> Relationship ID.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CustomerData"> <summary> <para>Customer Data.</para> <para>When the object is serialized out as xml, its qualified name is p:custData.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerData.#ctor"> <summary> Initializes a new instance of the CustomerData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomerData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomerData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomerData.Id"> <summary> <para> Relationship ID.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CustomerDataTags"> <summary> <para>Customer Data Tags.</para> <para>When the object is serialized out as xml, its qualified name is p:tags.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataTags.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataTags.#ctor"> <summary> Initializes a new instance of the CustomerDataTags class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataTags.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomerDataTags.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomerDataTags.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomerDataTags.Id"> <summary> <para> Relationship ID.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ExtensionList"> <summary> <para>Defines the ExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is p:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Extension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionList.#ctor"> <summary> Initializes a new instance of the ExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommentAuthor"> <summary> <para>Comment Author.</para> <para>When the object is serialized out as xml, its qualified name is p:cmAuthor.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthor.#ctor"> <summary> Initializes a new instance of the CommentAuthor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommentAuthor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommentAuthor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthor.#ctor(System.String)"> <summary> Initializes a new instance of the CommentAuthor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommentAuthor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthor.Id"> <summary> <para> Comment Author ID.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthor.Name"> <summary> <para> Comment Author Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthor.Initials"> <summary> <para> Comment Author Initials.</para> <para>Represents the attribte in schema: initials </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthor.LastIndex"> <summary> <para> Index of Comment Author's last comment.</para> <para>Represents the attribte in schema: lastIdx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthor.ColorIndex"> <summary> <para> Comment Author Color Index.</para> <para>Represents the attribte in schema: clrIdx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommentAuthor.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Comment"> <summary> <para>Comment.</para> <para>When the object is serialized out as xml, its qualified name is p:cm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Position <p:pos></description></item> <item><description>Text <p:text></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Comment.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Comment.#ctor"> <summary> Initializes a new instance of the Comment class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Comment.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Comment class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Comment.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Comment class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Comment.#ctor(System.String)"> <summary> Initializes a new instance of the Comment class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Comment.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Comment.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Comment.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Comment.AuthorId"> <summary> <para> Comment Author ID.</para> <para>Represents the attribte in schema: authorId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Comment.DateTime"> <summary> <para> Comment Date/Time.</para> <para>Represents the attribte in schema: dt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Comment.Index"> <summary> <para> Comment Index.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Comment.Position"> <summary> <para> Comment Position.</para> <para>Represents the element tag in schema: p:pos </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Comment.Text"> <summary> <para> Comment's Text Content.</para> <para>Represents the element tag in schema: p:text </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Comment.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Control"> <summary> <para>Embedded Control.</para> <para>When the object is serialized out as xml, its qualified name is p:control.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> <item><description>Picture <p:pic></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Control.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Control.#ctor"> <summary> Initializes a new instance of the Control class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Control.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Control class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Control.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Control class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Control.#ctor(System.String)"> <summary> Initializes a new instance of the Control class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Control.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.ShapeId"> <summary> <para> spid.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.Name"> <summary> <para> name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.ShowAsIcon"> <summary> <para> showAsIcon.</para> <para>Represents the attribte in schema: showAsIcon </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.Id"> <summary> <para> id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.ImageWidth"> <summary> <para> imgW.</para> <para>Represents the attribte in schema: imgW </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.ImageHeight"> <summary> <para> imgH.</para> <para>Represents the attribte in schema: imgH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Control.Picture"> <summary> <para> Picture.</para> <para>Represents the element tag in schema: p:pic </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideId"> <summary> <para>Slide ID.</para> <para>When the object is serialized out as xml, its qualified name is p:sldId.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideId.#ctor"> <summary> Initializes a new instance of the SlideId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideId.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideId.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideId.#ctor(System.String)"> <summary> Initializes a new instance of the SlideId class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideId.Id"> <summary> <para> Slide Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideId.RelationshipId"> <summary> <para> Relationship Identifier.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideId.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideMasterId"> <summary> <para>Slide Master ID.</para> <para>When the object is serialized out as xml, its qualified name is p:sldMasterId.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterId.#ctor"> <summary> Initializes a new instance of the SlideMasterId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterId.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideMasterId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterId.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideMasterId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterId.#ctor(System.String)"> <summary> Initializes a new instance of the SlideMasterId class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMasterId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMasterId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMasterId.Id"> <summary> <para> Slide Master Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMasterId.RelationshipId"> <summary> <para> Relationship Identifier.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMasterId.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NotesMasterId"> <summary> <para>Notes Master ID.</para> <para>When the object is serialized out as xml, its qualified name is p:notesMasterId.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterId.#ctor"> <summary> Initializes a new instance of the NotesMasterId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterId.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NotesMasterId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterId.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NotesMasterId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterId.#ctor(System.String)"> <summary> Initializes a new instance of the NotesMasterId class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMasterId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMasterId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMasterId.Id"> <summary> <para> Relationship Identifier.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMasterId.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.HandoutMasterId"> <summary> <para>Handout Master ID.</para> <para>When the object is serialized out as xml, its qualified name is p:handoutMasterId.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterId.#ctor"> <summary> Initializes a new instance of the HandoutMasterId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterId.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HandoutMasterId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterId.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HandoutMasterId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterId.#ctor(System.String)"> <summary> Initializes a new instance of the HandoutMasterId class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMasterId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMasterId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMasterId.Id"> <summary> <para> Relationship Identifier.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMasterId.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Font"> <summary> <para>Embedded Font Name.</para> <para>When the object is serialized out as xml, its qualified name is p:font.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Font.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Font.#ctor"> <summary> Initializes a new instance of the Font class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Font.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Font.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Font.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Font.Typeface"> <summary> <para> Text Typeface.</para> <para>Represents the attribte in schema: typeface </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Font.Panose"> <summary> <para> Panose Setting.</para> <para>Represents the attribte in schema: panose </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Font.PitchFamily"> <summary> <para> Similar Font Family.</para> <para>Represents the attribte in schema: pitchFamily </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Font.CharacterSet"> <summary> <para> Similar Character Set.</para> <para>Represents the attribte in schema: charset </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.RegularFont"> <summary> <para>Regular Embedded Font.</para> <para>When the object is serialized out as xml, its qualified name is p:regular.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EmbeddedFontDataIdType"> <summary> Defines the EmbeddedFontDataIdType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFontDataIdType.#ctor"> <summary> Initializes a new instance of the EmbeddedFontDataIdType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFontDataIdType.Id"> <summary> <para> Relationship Identifier.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RegularFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RegularFont.#ctor"> <summary> Initializes a new instance of the RegularFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RegularFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RegularFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RegularFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BoldFont"> <summary> <para>Bold Embedded Font.</para> <para>When the object is serialized out as xml, its qualified name is p:bold.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BoldFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BoldFont.#ctor"> <summary> Initializes a new instance of the BoldFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BoldFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BoldFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BoldFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ItalicFont"> <summary> <para>Italic Embedded Font.</para> <para>When the object is serialized out as xml, its qualified name is p:italic.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ItalicFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ItalicFont.#ctor"> <summary> Initializes a new instance of the ItalicFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ItalicFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ItalicFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ItalicFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BoldItalicFont"> <summary> <para>Bold Italic Embedded Font.</para> <para>When the object is serialized out as xml, its qualified name is p:boldItalic.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BoldItalicFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BoldItalicFont.#ctor"> <summary> Initializes a new instance of the BoldItalicFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BoldItalicFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BoldItalicFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BoldItalicFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EmbeddedFont"> <summary> <para>Embedded Font.</para> <para>When the object is serialized out as xml, its qualified name is p:embeddedFont.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Font <p:font></description></item> <item><description>RegularFont <p:regular></description></item> <item><description>BoldFont <p:bold></description></item> <item><description>ItalicFont <p:italic></description></item> <item><description>BoldItalicFont <p:boldItalic></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFont.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFont.#ctor"> <summary> Initializes a new instance of the EmbeddedFont class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFont.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EmbeddedFont class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFont.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EmbeddedFont class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFont.#ctor(System.String)"> <summary> Initializes a new instance of the EmbeddedFont class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFont.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFont.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFont.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFont.Font"> <summary> <para> Embedded Font Name.</para> <para>Represents the element tag in schema: p:font </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFont.RegularFont"> <summary> <para> Regular Embedded Font.</para> <para>Represents the element tag in schema: p:regular </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFont.BoldFont"> <summary> <para> Bold Embedded Font.</para> <para>Represents the element tag in schema: p:bold </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFont.ItalicFont"> <summary> <para> Italic Embedded Font.</para> <para>Represents the element tag in schema: p:italic </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFont.BoldItalicFont"> <summary> <para> Bold Italic Embedded Font.</para> <para>Represents the element tag in schema: p:boldItalic </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideList"> <summary> <para>List of Presentation Slides.</para> <para>When the object is serialized out as xml, its qualified name is p:sldLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideListEntry <p:sld></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideList.#ctor"> <summary> Initializes a new instance of the SlideList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideList.#ctor(System.String)"> <summary> Initializes a new instance of the SlideList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CustomShow"> <summary> <para>Custom Show.</para> <para>When the object is serialized out as xml, its qualified name is p:custShow.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideList <p:sldLst></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShow.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShow.#ctor"> <summary> Initializes a new instance of the CustomShow class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShow.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomShow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShow.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomShow class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShow.#ctor(System.String)"> <summary> Initializes a new instance of the CustomShow class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShow.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShow.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShow.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShow.Name"> <summary> <para> Custom Show Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShow.Id"> <summary> <para> Custom Show ID.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShow.SlideList"> <summary> <para> List of Presentation Slides.</para> <para>Represents the element tag in schema: p:sldLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShow.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties"> <summary> <para>Non-Visual Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:cNvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnClick <a:hlinkClick></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HyperlinkOnHover <a:hlinkHover></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualDrawingPropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.Id"> <summary> <para> Unique Identifier.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.Description"> <summary> <para> Alternative Text for Object.</para> <para>Represents the attribte in schema: descr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.Title"> <summary> <para> title, this property is only available in Office2010.</para> <para>Represents the attribte in schema: title </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.HyperlinkOnClick"> <summary> <para> Drawing Element On Click Hyperlink.</para> <para>Represents the element tag in schema: a:hlinkClick </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.HyperlinkOnHover"> <summary> <para> Hyperlink for Hover.</para> <para>Represents the element tag in schema: a:hlinkHover </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualDrawingProperties.NonVisualDrawingPropertiesExtensionList"> <summary> <para> NonVisualDrawingPropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties"> <summary> <para>Non-Visual Drawing Properties for a Shape.</para> <para>When the object is serialized out as xml, its qualified name is p:cNvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ShapeLocks <a:spLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.TextBox"> <summary> <para> Text Box.</para> <para>Represents the attribte in schema: txBox </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.ShapeLocks"> <summary> <para> Shape Locks.</para> <para>Represents the element tag in schema: a:spLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties"> <summary> <para>Application Non-Visual Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:nvPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PlaceholderShape <p:ph></description></item> <item><description>DocumentFormat.OpenXml.Drawing.AudioFromCD <a:audioCd></description></item> <item><description>DocumentFormat.OpenXml.Drawing.WaveAudioFile <a:wavAudioFile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.AudioFromFile <a:audioFile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.VideoFromFile <a:videoFile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.QuickTimeFromFile <a:quickTimeFile></description></item> <item><description>CustomerDataList <p:custDataLst></description></item> <item><description>ApplicationNonVisualDrawingPropertiesExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.#ctor"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.IsPhoto"> <summary> <para> Is a Photo Album.</para> <para>Represents the attribte in schema: isPhoto </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.UserDrawn"> <summary> <para> Is User Drawn.</para> <para>Represents the attribte in schema: userDrawn </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingProperties.PlaceholderShape"> <summary> <para> Placeholder Shape.</para> <para>Represents the element tag in schema: p:ph </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties"> <summary> <para>Non-Visual Properties for a Shape.</para> <para>When the object is serialized out as xml, its qualified name is p:nvSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <p:cNvPr></description></item> <item><description>NonVisualShapeDrawingProperties <p:cNvSpPr></description></item> <item><description>ApplicationNonVisualDrawingProperties <p:nvPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.NonVisualDrawingProperties"> <summary> <para> Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: p:cNvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.NonVisualShapeDrawingProperties"> <summary> <para> Non-Visual Drawing Properties for a Shape.</para> <para>Represents the element tag in schema: p:cNvSpPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualShapeProperties.ApplicationNonVisualDrawingProperties"> <summary> <para> Application Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: p:nvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ShapeProperties"> <summary> <para>Defines the ShapeProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is p:spPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Transform2D <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.CustomGeometry <a:custGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetGeometry <a:prstGeom></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Outline <a:ln></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Shape3DType <a:sp3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ShapePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeProperties.#ctor"> <summary> Initializes a new instance of the ShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeProperties.Transform2D"> <summary> <para> 2D Transform for Individual Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ShapeStyle"> <summary> <para>Shape Style.</para> <para>When the object is serialized out as xml, its qualified name is p:style.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.LineReference <a:lnRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FillReference <a:fillRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectReference <a:effectRef></description></item> <item><description>DocumentFormat.OpenXml.Drawing.FontReference <a:fontRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeStyle.#ctor"> <summary> Initializes a new instance of the ShapeStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeStyle.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeStyle.LineReference"> <summary> <para> LineReference.</para> <para>Represents the element tag in schema: a:lnRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeStyle.FillReference"> <summary> <para> FillReference.</para> <para>Represents the element tag in schema: a:fillRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeStyle.EffectReference"> <summary> <para> EffectReference.</para> <para>Represents the element tag in schema: a:effectRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeStyle.FontReference"> <summary> <para> Font Reference.</para> <para>Represents the element tag in schema: a:fontRef </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TextBody"> <summary> <para>Shape Text Body.</para> <para>When the object is serialized out as xml, its qualified name is p:txBody.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.BodyProperties <a:bodyPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ListStyle <a:lstStyle></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Paragraph <a:p></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextBody.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextBody.#ctor"> <summary> Initializes a new instance of the TextBody class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextBody.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextBody.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextBody class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextBody.#ctor(System.String)"> <summary> Initializes a new instance of the TextBody class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextBody.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextBody.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextBody.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextBody.BodyProperties"> <summary> <para> Body Properties.</para> <para>Represents the element tag in schema: a:bodyPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextBody.ListStyle"> <summary> <para> Text List Styles.</para> <para>Represents the element tag in schema: a:lstStyle </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties"> <summary> <para>Non-Visual Connector Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:cNvCxnSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ConnectionShapeLocks <a:cxnSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.StartConnection <a:stCxn></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EndConnection <a:endCxn></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectorShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.ConnectionShapeLocks"> <summary> <para> Connection Shape Locks.</para> <para>Represents the element tag in schema: a:cxnSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.StartConnection"> <summary> <para> Connection Start.</para> <para>Represents the element tag in schema: a:stCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.EndConnection"> <summary> <para> Connection End.</para> <para>Represents the element tag in schema: a:endCxn </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectorShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties"> <summary> <para>Non-Visual Properties for a Connection Shape.</para> <para>When the object is serialized out as xml, its qualified name is p:nvCxnSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <p:cNvPr></description></item> <item><description>NonVisualConnectorShapeDrawingProperties <p:cNvCxnSpPr></description></item> <item><description>ApplicationNonVisualDrawingProperties <p:nvPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualConnectionShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.NonVisualDrawingProperties"> <summary> <para> Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: p:cNvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.NonVisualConnectorShapeDrawingProperties"> <summary> <para> Non-Visual Connector Shape Drawing Properties.</para> <para>Represents the element tag in schema: p:cNvCxnSpPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualConnectionShapeProperties.ApplicationNonVisualDrawingProperties"> <summary> <para> Application Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: p:nvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties"> <summary> <para>Non-Visual Picture Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:cNvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.PictureLocks <a:picLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NonVisualPicturePropertiesExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.PreferRelativeResize"> <summary> <para> Relative Resize Preferred.</para> <para>Represents the attribte in schema: preferRelativeResize </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.PictureLocks"> <summary> <para> Picture Locks.</para> <para>Represents the element tag in schema: a:picLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureDrawingProperties.NonVisualPicturePropertiesExtensionList"> <summary> <para> NonVisualPicturePropertiesExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties"> <summary> <para>Non-Visual Properties for a Picture.</para> <para>When the object is serialized out as xml, its qualified name is p:nvPicPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <p:cNvPr></description></item> <item><description>NonVisualPictureDrawingProperties <p:cNvPicPr></description></item> <item><description>ApplicationNonVisualDrawingProperties <p:nvPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.#ctor"> <summary> Initializes a new instance of the NonVisualPictureProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualPictureProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualPictureProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.NonVisualDrawingProperties"> <summary> <para> NonVisualDrawingProperties.</para> <para>Represents the element tag in schema: p:cNvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.NonVisualPictureDrawingProperties"> <summary> <para> Non-Visual Picture Drawing Properties.</para> <para>Represents the element tag in schema: p:cNvPicPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualPictureProperties.ApplicationNonVisualDrawingProperties"> <summary> <para> ApplicationNonVisualDrawingProperties.</para> <para>Represents the element tag in schema: p:nvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BlipFill"> <summary> <para>Picture Fill.</para> <para>When the object is serialized out as xml, its qualified name is p:blipFill.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Blip <a:blip></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SourceRectangle <a:srcRect></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Tile <a:tile></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Stretch <a:stretch></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlipFill.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlipFill.#ctor"> <summary> Initializes a new instance of the BlipFill class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlipFill.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlipFill.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BlipFill class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlipFill.#ctor(System.String)"> <summary> Initializes a new instance of the BlipFill class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlipFill.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BlipFill.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BlipFill.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BlipFill.Dpi"> <summary> <para> DPI Setting.</para> <para>Represents the attribte in schema: dpi </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BlipFill.RotateWithShape"> <summary> <para> Rotate With Shape.</para> <para>Represents the attribte in schema: rotWithShape </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BlipFill.Blip"> <summary> <para> Blip.</para> <para>Represents the element tag in schema: a:blip </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BlipFill.SourceRectangle"> <summary> <para> Source Rectangle.</para> <para>Represents the element tag in schema: a:srcRect </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties"> <summary> <para>Non-Visual Graphic Frame Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:cNvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GraphicFrameLocks <a:graphicFrameLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.GraphicFrameLocks"> <summary> <para> Graphic Frame Locks.</para> <para>Represents the element tag in schema: a:graphicFrameLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties"> <summary> <para>Non-Visual Properties for a Graphic Frame.</para> <para>When the object is serialized out as xml, its qualified name is p:nvGraphicFramePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <p:cNvPr></description></item> <item><description>NonVisualGraphicFrameDrawingProperties <p:cNvGraphicFramePr></description></item> <item><description>ApplicationNonVisualDrawingProperties <p:nvPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGraphicFrameProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.NonVisualDrawingProperties"> <summary> <para> Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: p:cNvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.NonVisualGraphicFrameDrawingProperties"> <summary> <para> Non-Visual Graphic Frame Drawing Properties.</para> <para>Represents the element tag in schema: p:cNvGraphicFramePr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGraphicFrameProperties.ApplicationNonVisualDrawingProperties"> <summary> <para> Application Non-Visual Drawing Properties.</para> <para>Represents the element tag in schema: p:nvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Transform"> <summary> <para>2D Transform for Graphic Frame.</para> <para>When the object is serialized out as xml, its qualified name is p:xfrm.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Offset <a:off></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Extents <a:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transform.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transform.#ctor"> <summary> Initializes a new instance of the Transform class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transform.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transform class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transform.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transform class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transform.#ctor(System.String)"> <summary> Initializes a new instance of the Transform class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transform.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transform.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transform.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transform.Rotation"> <summary> <para> Rotation.</para> <para>Represents the attribte in schema: rot </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transform.HorizontalFlip"> <summary> <para> Horizontal Flip.</para> <para>Represents the attribte in schema: flipH </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transform.VerticalFlip"> <summary> <para> Vertical Flip.</para> <para>Represents the attribte in schema: flipV </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transform.Offset"> <summary> <para> Offset.</para> <para>Represents the element tag in schema: a:off </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transform.Extents"> <summary> <para> Extents.</para> <para>Represents the element tag in schema: a:ext </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties"> <summary> <para>Non-Visual Group Shape Drawing Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:cNvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.GroupShapeLocks <a:grpSpLocks></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupShapeDrawingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.GroupShapeLocks"> <summary> <para> Group Shape Locks.</para> <para>Represents the element tag in schema: a:grpSpLocks </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeDrawingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommonSlideData"> <summary> <para>Common slide data for slide layouts.</para> <para>When the object is serialized out as xml, its qualified name is p:cSld.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Background <p:bg></description></item> <item><description>ShapeTree <p:spTree></description></item> <item><description>CustomerDataList <p:custDataLst></description></item> <item><description>ControlList <p:controls></description></item> <item><description>CommonSlideDataExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideData.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideData.#ctor"> <summary> Initializes a new instance of the CommonSlideData class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideData.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommonSlideData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideData.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommonSlideData class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideData.#ctor(System.String)"> <summary> Initializes a new instance of the CommonSlideData class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideData.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideData.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideData.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideData.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideData.Background"> <summary> <para> Slide Background.</para> <para>Represents the element tag in schema: p:bg </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideData.ShapeTree"> <summary> <para> Shape Tree.</para> <para>Represents the element tag in schema: p:spTree </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideData.CustomerDataList"> <summary> <para> Customer Data List.</para> <para>Represents the element tag in schema: p:custDataLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideData.ControlList"> <summary> <para> List of controls.</para> <para>Represents the element tag in schema: p:controls </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideData.CommonSlideDataExtensionList"> <summary> <para> CommonSlideDataExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Transition"> <summary> <para>Slide Transition for a Slide Layout.</para> <para>When the object is serialized out as xml, its qualified name is p:transition.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BlindsTransition <p:blinds></description></item> <item><description>CheckerTransition <p:checker></description></item> <item><description>CircleTransition <p:circle></description></item> <item><description>DissolveTransition <p:dissolve></description></item> <item><description>CombTransition <p:comb></description></item> <item><description>CoverTransition <p:cover></description></item> <item><description>CutTransition <p:cut></description></item> <item><description>DiamondTransition <p:diamond></description></item> <item><description>FadeTransition <p:fade></description></item> <item><description>NewsflashTransition <p:newsflash></description></item> <item><description>PlusTransition <p:plus></description></item> <item><description>PullTransition <p:pull></description></item> <item><description>PushTransition <p:push></description></item> <item><description>RandomTransition <p:random></description></item> <item><description>RandomBarTransition <p:randomBar></description></item> <item><description>SplitTransition <p:split></description></item> <item><description>StripsTransition <p:strips></description></item> <item><description>WedgeTransition <p:wedge></description></item> <item><description>WheelTransition <p:wheel></description></item> <item><description>WipeTransition <p:wipe></description></item> <item><description>ZoomTransition <p:zoom></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.FlashTransition <p14:flash></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.VortexTransition <p14:vortex></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.SwitchTransition <p14:switch></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.FlipTransition <p14:flip></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.RippleTransition <p14:ripple></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.GlitterTransition <p14:glitter></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.HoneycombTransition <p14:honeycomb></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.PrismTransition <p14:prism></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.DoorsTransition <p14:doors></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.WindowTransition <p14:window></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ShredTransition <p14:shred></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.FerrisTransition <p14:ferris></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.FlythroughTransition <p14:flythrough></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.WarpTransition <p14:warp></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.GalleryTransition <p14:gallery></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ConveyorTransition <p14:conveyor></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.PanTransition <p14:pan></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.RevealTransition <p14:reveal></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.WheelReverseTransition <p14:wheelReverse></description></item> <item><description>SoundAction <p:sndAc></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transition.#ctor"> <summary> Initializes a new instance of the Transition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Transition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Transition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transition.#ctor(System.String)"> <summary> Initializes a new instance of the Transition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Transition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transition.Speed"> <summary> <para> Transition Speed.</para> <para>Represents the attribte in schema: spd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transition.Duration"> <summary> <para> dur, this property is only available in Office2010.</para> <para>Represents the attribte in schema: p14:dur </para> </summary> <remark> xmlns:p14=http://schemas.microsoft.com/office/powerpoint/2010/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transition.AdvanceOnClick"> <summary> <para> Advance on Click.</para> <para>Represents the attribte in schema: advClick </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Transition.AdvanceAfterTime"> <summary> <para> Advance after time.</para> <para>Represents the attribte in schema: advTm </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Timing"> <summary> <para>Slide Timing Information for a Slide Layout.</para> <para>When the object is serialized out as xml, its qualified name is p:timing.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TimeNodeList <p:tnLst></description></item> <item><description>BuildList <p:bldLst></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Timing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Timing.#ctor"> <summary> Initializes a new instance of the Timing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Timing.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Timing class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Timing.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Timing class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Timing.#ctor(System.String)"> <summary> Initializes a new instance of the Timing class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Timing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Timing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Timing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Timing.TimeNodeList"> <summary> <para> TimeNodeList.</para> <para>Represents the element tag in schema: p:tnLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Timing.BuildList"> <summary> <para> Build List.</para> <para>Represents the element tag in schema: p:bldLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Timing.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.HeaderFooter"> <summary> <para>Header/Footer information for a slide layout.</para> <para>When the object is serialized out as xml, its qualified name is p:hf.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HeaderFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HeaderFooter.#ctor"> <summary> Initializes a new instance of the HeaderFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HeaderFooter.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HeaderFooter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HeaderFooter.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HeaderFooter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HeaderFooter.#ctor(System.String)"> <summary> Initializes a new instance of the HeaderFooter class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HeaderFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HeaderFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HeaderFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HeaderFooter.SlideNumber"> <summary> <para> Slide Number Placeholder.</para> <para>Represents the attribte in schema: sldNum </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HeaderFooter.Header"> <summary> <para> Header Placeholder.</para> <para>Represents the attribte in schema: hdr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HeaderFooter.Footer"> <summary> <para> Footer Placeholder.</para> <para>Represents the attribte in schema: ftr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HeaderFooter.DateTime"> <summary> <para> Date/Time Placeholder.</para> <para>Represents the attribte in schema: dt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HeaderFooter.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TitleStyle"> <summary> <para>Slide Master Title Text Style.</para> <para>When the object is serialized out as xml, its qualified name is p:titleStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties <a:defPPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties <a:lvl1pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties <a:lvl2pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties <a:lvl3pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties <a:lvl4pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties <a:lvl5pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties <a:lvl6pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties <a:lvl7pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties <a:lvl8pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties <a:lvl9pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TextListStyleType"> <summary> Defines the TextListStyleType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties <a:defPPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties <a:lvl1pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties <a:lvl2pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties <a:lvl3pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties <a:lvl4pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties <a:lvl5pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties <a:lvl6pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties <a:lvl7pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties <a:lvl8pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties <a:lvl9pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextListStyleType.#ctor"> <summary> Initializes a new instance of the TextListStyleType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextListStyleType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextListStyleType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextListStyleType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextListStyleType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextListStyleType.#ctor(System.String)"> <summary> Initializes a new instance of the TextListStyleType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.DefaultParagraphProperties"> <summary> <para> Default Paragraph Style.</para> <para>Represents the element tag in schema: a:defPPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level1ParagraphProperties"> <summary> <para> List Level 1 Text Style.</para> <para>Represents the element tag in schema: a:lvl1pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level2ParagraphProperties"> <summary> <para> List Level 2 Text Style.</para> <para>Represents the element tag in schema: a:lvl2pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level3ParagraphProperties"> <summary> <para> List Level 3 Text Style.</para> <para>Represents the element tag in schema: a:lvl3pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level4ParagraphProperties"> <summary> <para> List Level 4 Text Style.</para> <para>Represents the element tag in schema: a:lvl4pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level5ParagraphProperties"> <summary> <para> List Level 5 Text Style.</para> <para>Represents the element tag in schema: a:lvl5pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level6ParagraphProperties"> <summary> <para> List Level 6 Text Style.</para> <para>Represents the element tag in schema: a:lvl6pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level7ParagraphProperties"> <summary> <para> List Level 7 Text Style.</para> <para>Represents the element tag in schema: a:lvl7pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level8ParagraphProperties"> <summary> <para> List Level 8 Text Style.</para> <para>Represents the element tag in schema: a:lvl8pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.Level9ParagraphProperties"> <summary> <para> List Level 9 Text Style.</para> <para>Represents the element tag in schema: a:lvl9pPr </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextListStyleType.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: a:extLst </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TitleStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TitleStyle.#ctor"> <summary> Initializes a new instance of the TitleStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TitleStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TitleStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TitleStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TitleStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TitleStyle.#ctor(System.String)"> <summary> Initializes a new instance of the TitleStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TitleStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TitleStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TitleStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BodyStyle"> <summary> <para>Slide Master Body Text Style.</para> <para>When the object is serialized out as xml, its qualified name is p:bodyStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties <a:defPPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties <a:lvl1pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties <a:lvl2pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties <a:lvl3pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties <a:lvl4pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties <a:lvl5pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties <a:lvl6pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties <a:lvl7pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties <a:lvl8pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties <a:lvl9pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BodyStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BodyStyle.#ctor"> <summary> Initializes a new instance of the BodyStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BodyStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BodyStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BodyStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BodyStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BodyStyle.#ctor(System.String)"> <summary> Initializes a new instance of the BodyStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BodyStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BodyStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BodyStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OtherStyle"> <summary> <para>Slide Master Other Text Style.</para> <para>When the object is serialized out as xml, its qualified name is p:otherStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties <a:defPPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties <a:lvl1pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties <a:lvl2pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties <a:lvl3pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties <a:lvl4pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties <a:lvl5pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties <a:lvl6pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties <a:lvl7pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties <a:lvl8pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties <a:lvl9pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OtherStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OtherStyle.#ctor"> <summary> Initializes a new instance of the OtherStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OtherStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OtherStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OtherStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OtherStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OtherStyle.#ctor(System.String)"> <summary> Initializes a new instance of the OtherStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OtherStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OtherStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OtherStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NotesStyle"> <summary> <para>Notes Text Style.</para> <para>When the object is serialized out as xml, its qualified name is p:notesStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties <a:defPPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties <a:lvl1pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties <a:lvl2pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties <a:lvl3pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties <a:lvl4pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties <a:lvl5pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties <a:lvl6pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties <a:lvl7pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties <a:lvl8pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties <a:lvl9pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesStyle.#ctor"> <summary> Initializes a new instance of the NotesStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NotesStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NotesStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesStyle.#ctor(System.String)"> <summary> Initializes a new instance of the NotesStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.DefaultTextStyle"> <summary> <para>Presentation Default Text Style.</para> <para>When the object is serialized out as xml, its qualified name is p:defaultTextStyle.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.DefaultParagraphProperties <a:defPPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level1ParagraphProperties <a:lvl1pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level2ParagraphProperties <a:lvl2pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level3ParagraphProperties <a:lvl3pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level4ParagraphProperties <a:lvl4pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level5ParagraphProperties <a:lvl5pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level6ParagraphProperties <a:lvl6pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level7ParagraphProperties <a:lvl7pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level8ParagraphProperties <a:lvl8pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Level9ParagraphProperties <a:lvl9pPr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DefaultTextStyle.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DefaultTextStyle.#ctor"> <summary> Initializes a new instance of the DefaultTextStyle class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DefaultTextStyle.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DefaultTextStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DefaultTextStyle.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DefaultTextStyle class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DefaultTextStyle.#ctor(System.String)"> <summary> Initializes a new instance of the DefaultTextStyle class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.DefaultTextStyle.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.DefaultTextStyle.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.DefaultTextStyle.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideLayoutId"> <summary> <para>Slide Layout Id.</para> <para>When the object is serialized out as xml, its qualified name is p:sldLayoutId.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutId.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutId.#ctor"> <summary> Initializes a new instance of the SlideLayoutId class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutId.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideLayoutId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutId.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideLayoutId class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutId.#ctor(System.String)"> <summary> Initializes a new instance of the SlideLayoutId class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutId.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayoutId.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayoutId.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayoutId.Id"> <summary> <para> ID Tag.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayoutId.RelationshipId"> <summary> <para> ID Tag.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayoutId.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList"> <summary> <para>List of Slide Layouts.</para> <para>When the object is serialized out as xml, its qualified name is p:sldLayoutIdLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideLayoutId <p:sldLayoutId></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList.#ctor"> <summary> Initializes a new instance of the SlideLayoutIdList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideLayoutIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideLayoutIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList.#ctor(System.String)"> <summary> Initializes a new instance of the SlideLayoutIdList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideLayoutIdList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TextStyles"> <summary> <para>Slide Master Text Styles.</para> <para>When the object is serialized out as xml, its qualified name is p:txStyles.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TitleStyle <p:titleStyle></description></item> <item><description>BodyStyle <p:bodyStyle></description></item> <item><description>OtherStyle <p:otherStyle></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextStyles.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextStyles.#ctor"> <summary> Initializes a new instance of the TextStyles class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextStyles.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextStyles class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextStyles.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextStyles class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextStyles.#ctor(System.String)"> <summary> Initializes a new instance of the TextStyles class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextStyles.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextStyles.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextStyles.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextStyles.TitleStyle"> <summary> <para> Slide Master Title Text Style.</para> <para>Represents the element tag in schema: p:titleStyle </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextStyles.BodyStyle"> <summary> <para> Slide Master Body Text Style.</para> <para>Represents the element tag in schema: p:bodyStyle </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextStyles.OtherStyle"> <summary> <para> Slide Master Other Text Style.</para> <para>Represents the element tag in schema: p:otherStyle </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextStyles.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Tag"> <summary> <para>Programmable Extensibility Tag.</para> <para>When the object is serialized out as xml, its qualified name is p:tag.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Tag.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Tag.#ctor"> <summary> Initializes a new instance of the Tag class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Tag.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Tag.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Tag.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Tag.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Tag.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.RestoredLeft"> <summary> <para>Normal View Restored Left Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:restoredLeft.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NormalViewPortionType"> <summary> Defines the NormalViewPortionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NormalViewPortionType.#ctor"> <summary> Initializes a new instance of the NormalViewPortionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewPortionType.Size"> <summary> <para> Normal View Dimension Size.</para> <para>Represents the attribte in schema: sz </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewPortionType.AutoAdjust"> <summary> <para> Auto Adjust Normal View.</para> <para>Represents the attribte in schema: autoAdjust </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RestoredLeft.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RestoredLeft.#ctor"> <summary> Initializes a new instance of the RestoredLeft class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RestoredLeft.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RestoredLeft.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RestoredLeft.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.RestoredTop"> <summary> <para>Normal View Restored Top Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:restoredTop.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RestoredTop.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RestoredTop.#ctor"> <summary> Initializes a new instance of the RestoredTop class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RestoredTop.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RestoredTop.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RestoredTop.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ScaleFactor"> <summary> <para>View Scale.</para> <para>When the object is serialized out as xml, its qualified name is p:scale.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.ScaleX <a:sx></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ScaleY <a:sy></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ScaleFactor.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ScaleFactor.#ctor"> <summary> Initializes a new instance of the ScaleFactor class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ScaleFactor.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ScaleFactor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ScaleFactor.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ScaleFactor class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ScaleFactor.#ctor(System.String)"> <summary> Initializes a new instance of the ScaleFactor class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ScaleFactor.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ScaleFactor.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ScaleFactor.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ScaleFactor.ScaleX"> <summary> <para> Horizontal Ratio.</para> <para>Represents the element tag in schema: a:sx </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ScaleFactor.ScaleY"> <summary> <para> Vertical Ratio.</para> <para>Represents the element tag in schema: a:sy </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Origin"> <summary> <para>View Origin.</para> <para>When the object is serialized out as xml, its qualified name is p:origin.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Point2DType"> <summary> Defines the Point2DType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Point2DType.#ctor"> <summary> Initializes a new instance of the Point2DType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Point2DType.X"> <summary> <para> X-Axis Coordinate.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Point2DType.Y"> <summary> <para> Y-Axis Coordinate.</para> <para>Represents the attribte in schema: y </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Origin.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Origin.#ctor"> <summary> Initializes a new instance of the Origin class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Origin.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Origin.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Origin.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Position"> <summary> <para>Comment Position.</para> <para>When the object is serialized out as xml, its qualified name is p:pos.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Position.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Position.#ctor"> <summary> Initializes a new instance of the Position class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Position.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Position.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Position.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommonViewProperties"> <summary> <para>Base properties for Notes View.</para> <para>When the object is serialized out as xml, its qualified name is p:cViewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ScaleFactor <p:scale></description></item> <item><description>Origin <p:origin></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonViewProperties.#ctor"> <summary> Initializes a new instance of the CommonViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommonViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommonViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the CommonViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonViewProperties.VariableScale"> <summary> <para> Variable Scale.</para> <para>Represents the attribte in schema: varScale </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonViewProperties.ScaleFactor"> <summary> <para> View Scale.</para> <para>Represents the element tag in schema: p:scale </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonViewProperties.Origin"> <summary> <para> View Origin.</para> <para>Represents the element tag in schema: p:origin </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OutlineViewSlideListEntry"> <summary> <para>Presentation Slide.</para> <para>When the object is serialized out as xml, its qualified name is p:sld.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideListEntry.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideListEntry.#ctor"> <summary> Initializes a new instance of the OutlineViewSlideListEntry class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideListEntry.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewSlideListEntry.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewSlideListEntry.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewSlideListEntry.Id"> <summary> <para> Relationship Identifier.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewSlideListEntry.Collapse"> <summary> <para> Collapsed.</para> <para>Represents the attribte in schema: collapse </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList"> <summary> <para>List of Presentation Slides.</para> <para>When the object is serialized out as xml, its qualified name is p:sldLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>OutlineViewSlideListEntry <p:sld></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList.#ctor"> <summary> Initializes a new instance of the OutlineViewSlideList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OutlineViewSlideList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OutlineViewSlideList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList.#ctor(System.String)"> <summary> Initializes a new instance of the OutlineViewSlideList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewSlideList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Guide"> <summary> <para>A Guide.</para> <para>When the object is serialized out as xml, its qualified name is p:guide.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Guide.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Guide.#ctor"> <summary> Initializes a new instance of the Guide class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Guide.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Guide.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Guide.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Guide.Orientation"> <summary> <para> Guide Orientation.</para> <para>Represents the attribte in schema: orient </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Guide.Position"> <summary> <para> Guide Position.</para> <para>Represents the attribte in schema: pos </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.GuideList"> <summary> <para>List of Guides.</para> <para>When the object is serialized out as xml, its qualified name is p:guideLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Guide <p:guide></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GuideList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GuideList.#ctor"> <summary> Initializes a new instance of the GuideList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GuideList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GuideList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GuideList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GuideList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GuideList.#ctor(System.String)"> <summary> Initializes a new instance of the GuideList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GuideList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GuideList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GuideList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties"> <summary> <para>Defines the CommonSlideViewProperties Class.</para> <para>When the object is serialized out as xml, its qualified name is p:cSldViewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonViewProperties <p:cViewPr></description></item> <item><description>GuideList <p:guideLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.#ctor"> <summary> Initializes a new instance of the CommonSlideViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommonSlideViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommonSlideViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the CommonSlideViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.SnapToGrid"> <summary> <para> Snap Objects to Grid.</para> <para>Represents the attribte in schema: snapToGrid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.SnapToObjects"> <summary> <para> Snap Objects to Objects.</para> <para>Represents the attribte in schema: snapToObjects </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.ShowGuides"> <summary> <para> Show Guides in View.</para> <para>Represents the attribte in schema: showGuides </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.CommonViewProperties"> <summary> <para> Base properties for Slide View.</para> <para>Represents the element tag in schema: p:cViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideViewProperties.GuideList"> <summary> <para> List of Guides.</para> <para>Represents the element tag in schema: p:guideLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NormalViewProperties"> <summary> <para>Normal View Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:normalViewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RestoredLeft <p:restoredLeft></description></item> <item><description>RestoredTop <p:restoredTop></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NormalViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NormalViewProperties.#ctor"> <summary> Initializes a new instance of the NormalViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NormalViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NormalViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NormalViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NormalViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NormalViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NormalViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NormalViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.ShowOutlineIcons"> <summary> <para> Show Outline Icons in Normal View.</para> <para>Represents the attribte in schema: showOutlineIcons </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.SnapVerticalSplitter"> <summary> <para> Snap Vertical Splitter.</para> <para>Represents the attribte in schema: snapVertSplitter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.VerticalBarState"> <summary> <para> State of the Vertical Splitter Bar.</para> <para>Represents the attribte in schema: vertBarState </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.HorizontalBarState"> <summary> <para> State of the Horizontal Splitter Bar.</para> <para>Represents the attribte in schema: horzBarState </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.PreferSingleView"> <summary> <para> Prefer Single View.</para> <para>Represents the attribte in schema: preferSingleView </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.RestoredLeft"> <summary> <para> Normal View Restored Left Properties.</para> <para>Represents the element tag in schema: p:restoredLeft </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.RestoredTop"> <summary> <para> Normal View Restored Top Properties.</para> <para>Represents the element tag in schema: p:restoredTop </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NormalViewProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideViewProperties"> <summary> <para>Slide View Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:slideViewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideViewProperties <p:cSldViewPr></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideViewProperties.#ctor"> <summary> Initializes a new instance of the SlideViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the SlideViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideViewProperties.CommonSlideViewProperties"> <summary> <para> CommonSlideViewProperties.</para> <para>Represents the element tag in schema: p:cSldViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideViewProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OutlineViewProperties"> <summary> <para>Outline View Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:outlineViewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonViewProperties <p:cViewPr></description></item> <item><description>OutlineViewSlideList <p:sldLst></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.#ctor"> <summary> Initializes a new instance of the OutlineViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OutlineViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OutlineViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the OutlineViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.CommonViewProperties"> <summary> <para> Common View Properties.</para> <para>Represents the element tag in schema: p:cViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.OutlineViewSlideList"> <summary> <para> List of Presentation Slides.</para> <para>Represents the element tag in schema: p:sldLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OutlineViewProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties"> <summary> <para>Notes Text View Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:notesTextViewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonViewProperties <p:cViewPr></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.#ctor"> <summary> Initializes a new instance of the NotesTextViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NotesTextViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NotesTextViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NotesTextViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.CommonViewProperties"> <summary> <para> Base properties for Notes View.</para> <para>Represents the element tag in schema: p:cViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesTextViewProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SorterViewProperties"> <summary> <para>Slide Sorter View Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:sorterViewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonViewProperties <p:cViewPr></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SorterViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SorterViewProperties.#ctor"> <summary> Initializes a new instance of the SorterViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SorterViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SorterViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SorterViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SorterViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SorterViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the SorterViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SorterViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SorterViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SorterViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SorterViewProperties.ShowFormatting"> <summary> <para> Show Formatting.</para> <para>Represents the attribte in schema: showFormatting </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SorterViewProperties.CommonViewProperties"> <summary> <para> Base properties for Slide Sorter View.</para> <para>Represents the element tag in schema: p:cViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SorterViewProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NotesViewProperties"> <summary> <para>Notes View Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:notesViewPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideViewProperties <p:cSldViewPr></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesViewProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesViewProperties.#ctor"> <summary> Initializes a new instance of the NotesViewProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesViewProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NotesViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesViewProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NotesViewProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesViewProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NotesViewProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesViewProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesViewProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesViewProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesViewProperties.CommonSlideViewProperties"> <summary> <para> Common Slide View Properties.</para> <para>Represents the element tag in schema: p:cSldViewPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesViewProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.GridSpacing"> <summary> <para>Grid Spacing.</para> <para>When the object is serialized out as xml, its qualified name is p:gridSpacing.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GridSpacing.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GridSpacing.#ctor"> <summary> Initializes a new instance of the GridSpacing class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GridSpacing.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GridSpacing.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GridSpacing.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GridSpacing.Cx"> <summary> <para> Extent Length.</para> <para>Represents the attribte in schema: cx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GridSpacing.Cy"> <summary> <para> Extent Width.</para> <para>Represents the attribte in schema: cy </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension"> <summary> <para>Defines the ApplicationNonVisualDrawingPropertiesExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is p:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.Media <p14:media></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ModificationId <p14:modId></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.#ctor"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.#ctor(System.String)"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideExtension"> <summary> <para>Defines the SlideExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is p:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.LaserTraceList <p14:laserTraceLst></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ShowEventRecordList <p14:showEvtLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtension.#ctor"> <summary> Initializes a new instance of the SlideExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtension.#ctor(System.String)"> <summary> Initializes a new instance of the SlideExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension"> <summary> <para>Defines the CommonSlideDataExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is p:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.CreationId <p14:creationId></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.#ctor"> <summary> Initializes a new instance of the CommonSlideDataExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommonSlideDataExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommonSlideDataExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.#ctor(System.String)"> <summary> Initializes a new instance of the CommonSlideDataExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension"> <summary> <para>Defines the PresentationPropertiesExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is p:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.DiscardImageEditData <p14:discardImageEditData></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.DefaultImageDpi <p14:defaultImageDpi></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Drawing.TextMath <a14:m></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.#ctor"> <summary> Initializes a new instance of the PresentationPropertiesExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresentationPropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresentationPropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.#ctor(System.String)"> <summary> Initializes a new instance of the PresentationPropertiesExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension"> <summary> <para>Defines the ShowPropertiesExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is p:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.BrowseMode <p14:browseMode></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.LaserColor <p14:laserClr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.ShowMediaControls <p14:showMediaCtrls></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.#ctor"> <summary> Initializes a new instance of the ShowPropertiesExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShowPropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShowPropertiesExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.#ctor(System.String)"> <summary> Initializes a new instance of the ShowPropertiesExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PresentationExtension"> <summary> <para>Defines the PresentationExtension Class.</para> <para>When the object is serialized out as xml, its qualified name is p:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.SectionProperties <p14:sectionPr></description></item> <item><description>DocumentFormat.OpenXml.Office2010.PowerPoint.SectionList <p14:sectionLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtension.#ctor"> <summary> Initializes a new instance of the PresentationExtension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresentationExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresentationExtension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtension.#ctor(System.String)"> <summary> Initializes a new instance of the PresentationExtension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationExtension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationExtension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationExtension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Picture"> <summary> <para>Defines the Picture Class.</para> <para>When the object is serialized out as xml, its qualified name is p:pic.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualPictureProperties <p:nvPicPr></description></item> <item><description>BlipFill <p:blipFill></description></item> <item><description>ShapeProperties <p:spPr></description></item> <item><description>ShapeStyle <p:style></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Picture.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Picture.#ctor"> <summary> Initializes a new instance of the Picture class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Picture.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Picture.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Picture class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Picture.#ctor(System.String)"> <summary> Initializes a new instance of the Picture class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Picture.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Picture.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Picture.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Picture.NonVisualPictureProperties"> <summary> <para> Non-Visual Properties for a Picture.</para> <para>Represents the element tag in schema: p:nvPicPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Picture.BlipFill"> <summary> <para> Picture Fill.</para> <para>Represents the element tag in schema: p:blipFill </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Picture.ShapeProperties"> <summary> <para> ShapeProperties.</para> <para>Represents the element tag in schema: p:spPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Picture.ShapeStyle"> <summary> <para> ShapeStyle.</para> <para>Represents the element tag in schema: p:style </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Picture.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OleObjectEmbed"> <summary> <para>Defines the OleObjectEmbed Class.</para> <para>When the object is serialized out as xml, its qualified name is p:embed.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.#ctor"> <summary> Initializes a new instance of the OleObjectEmbed class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OleObjectEmbed class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OleObjectEmbed class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.#ctor(System.String)"> <summary> Initializes a new instance of the OleObjectEmbed class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.FollowColorScheme"> <summary> <para> Color Scheme Properties for OLE Object.</para> <para>Represents the attribte in schema: followColorScheme </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObjectEmbed.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OleObjectLink"> <summary> <para>Defines the OleObjectLink Class.</para> <para>When the object is serialized out as xml, its qualified name is p:link.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectLink.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectLink.#ctor"> <summary> Initializes a new instance of the OleObjectLink class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectLink.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the OleObjectLink class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectLink.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the OleObjectLink class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectLink.#ctor(System.String)"> <summary> Initializes a new instance of the OleObjectLink class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleObjectLink.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObjectLink.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObjectLink.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObjectLink.AutoUpdate"> <summary> <para> Update Linked OLE Objects Automatically.</para> <para>Represents the attribte in schema: updateAutomatic </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleObjectLink.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PlaceholderShape"> <summary> <para>Placeholder Shape.</para> <para>When the object is serialized out as xml, its qualified name is p:ph.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlaceholderShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlaceholderShape.#ctor"> <summary> Initializes a new instance of the PlaceholderShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlaceholderShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PlaceholderShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlaceholderShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PlaceholderShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlaceholderShape.#ctor(System.String)"> <summary> Initializes a new instance of the PlaceholderShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PlaceholderShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlaceholderShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlaceholderShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlaceholderShape.Type"> <summary> <para> Placeholder Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlaceholderShape.Orientation"> <summary> <para> Placeholder Orientation.</para> <para>Represents the attribte in schema: orient </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlaceholderShape.Size"> <summary> <para> Placeholder Size.</para> <para>Represents the attribte in schema: sz </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlaceholderShape.Index"> <summary> <para> Placeholder Index.</para> <para>Represents the attribte in schema: idx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlaceholderShape.HasCustomPrompt"> <summary> <para> Placeholder has custom prompt.</para> <para>Represents the attribte in schema: hasCustomPrompt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PlaceholderShape.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CustomerDataList"> <summary> <para>Customer Data List.</para> <para>When the object is serialized out as xml, its qualified name is p:custDataLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CustomerData <p:custData></description></item> <item><description>CustomerDataTags <p:tags></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataList.#ctor"> <summary> Initializes a new instance of the CustomerDataList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomerDataList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomerDataList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataList.#ctor(System.String)"> <summary> Initializes a new instance of the CustomerDataList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomerDataList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomerDataList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomerDataList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList"> <summary> <para>Defines the ApplicationNonVisualDrawingPropertiesExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is p:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ApplicationNonVisualDrawingPropertiesExtension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList.#ctor"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ApplicationNonVisualDrawingPropertiesExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ApplicationNonVisualDrawingPropertiesExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideExtensionList"> <summary> <para>Defines the SlideExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is p:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideExtension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtensionList.#ctor"> <summary> Initializes a new instance of the SlideExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the SlideExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Background"> <summary> <para>Slide Background.</para> <para>When the object is serialized out as xml, its qualified name is p:bg.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackgroundProperties <p:bgPr></description></item> <item><description>BackgroundStyleReference <p:bgRef></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Background.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Background.#ctor"> <summary> Initializes a new instance of the Background class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Background.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Background class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Background.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Background class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Background.#ctor(System.String)"> <summary> Initializes a new instance of the Background class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Background.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Background.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Background.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Background.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Background.BackgroundProperties"> <summary> <para> Background Properties.</para> <para>Represents the element tag in schema: p:bgPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Background.BackgroundStyleReference"> <summary> <para> Background Style Reference.</para> <para>Represents the element tag in schema: p:bgRef </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ShapeTree"> <summary> <para>Shape Tree.</para> <para>When the object is serialized out as xml, its qualified name is p:spTree.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGroupShapeProperties <p:nvGrpSpPr></description></item> <item><description>GroupShapeProperties <p:grpSpPr></description></item> <item><description>Shape <p:sp></description></item> <item><description>GroupShape <p:grpSp></description></item> <item><description>GraphicFrame <p:graphicFrame></description></item> <item><description>ConnectionShape <p:cxnSp></description></item> <item><description>Picture <p:pic></description></item> <item><description>ContentPart <p:contentPart></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Presentation.GroupShapeType"> <summary> Defines the GroupShapeType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGroupShapeProperties <p:nvGrpSpPr></description></item> <item><description>GroupShapeProperties <p:grpSpPr></description></item> <item><description>Shape <p:sp></description></item> <item><description>GroupShape <p:grpSp></description></item> <item><description>GraphicFrame <p:graphicFrame></description></item> <item><description>ConnectionShape <p:cxnSp></description></item> <item><description>Picture <p:pic></description></item> <item><description>ContentPart <p:contentPart></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeType.#ctor"> <summary> Initializes a new instance of the GroupShapeType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeType.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GroupShapeType.NonVisualGroupShapeProperties"> <summary> <para> Non-Visual Properties for a Group Shape.</para> <para>Represents the element tag in schema: p:nvGrpSpPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GroupShapeType.GroupShapeProperties"> <summary> <para> Group Shape Properties.</para> <para>Represents the element tag in schema: p:grpSpPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTree.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTree.#ctor"> <summary> Initializes a new instance of the ShapeTree class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTree.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeTree class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTree.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeTree class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTree.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeTree class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTree.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTree.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTree.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.GroupShape"> <summary> <para>Group Shape.</para> <para>When the object is serialized out as xml, its qualified name is p:grpSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGroupShapeProperties <p:nvGrpSpPr></description></item> <item><description>GroupShapeProperties <p:grpSpPr></description></item> <item><description>Shape <p:sp></description></item> <item><description>GroupShape <p:grpSp></description></item> <item><description>GraphicFrame <p:graphicFrame></description></item> <item><description>ConnectionShape <p:cxnSp></description></item> <item><description>Picture <p:pic></description></item> <item><description>ContentPart <p:contentPart></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShape.#ctor"> <summary> Initializes a new instance of the GroupShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShape.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GroupShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GroupShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ControlList"> <summary> <para>List of controls.</para> <para>When the object is serialized out as xml, its qualified name is p:controls.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Control <p:control></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ControlList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ControlList.#ctor"> <summary> Initializes a new instance of the ControlList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ControlList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ControlList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ControlList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ControlList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ControlList.#ctor(System.String)"> <summary> Initializes a new instance of the ControlList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ControlList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ControlList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ControlList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList"> <summary> <para>Defines the CommonSlideDataExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is p:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommonSlideDataExtension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList.#ctor"> <summary> Initializes a new instance of the CommonSlideDataExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommonSlideDataExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommonSlideDataExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the CommonSlideDataExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CommonSlideDataExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties"> <summary> <para>Non-Visual Properties for a Group Shape.</para> <para>When the object is serialized out as xml, its qualified name is p:nvGrpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualDrawingProperties <p:cNvPr></description></item> <item><description>NonVisualGroupShapeDrawingProperties <p:cNvGrpSpPr></description></item> <item><description>ApplicationNonVisualDrawingProperties <p:nvPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.#ctor"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the NonVisualGroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.NonVisualDrawingProperties"> <summary> <para> Non-visual Drawing Properties.</para> <para>Represents the element tag in schema: p:cNvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.NonVisualGroupShapeDrawingProperties"> <summary> <para> Non-Visual Group Shape Drawing Properties.</para> <para>Represents the element tag in schema: p:cNvGrpSpPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NonVisualGroupShapeProperties.ApplicationNonVisualDrawingProperties"> <summary> <para> Non-Visual Properties.</para> <para>Represents the element tag in schema: p:nvPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.GroupShapeProperties"> <summary> <para>Group Shape Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:grpSpPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.TransformGroup <a:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.NoFill <a:noFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SolidFill <a:solidFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GradientFill <a:gradFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.BlipFill <a:blipFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PatternFill <a:pattFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.GroupFill <a:grpFill></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectList <a:effectLst></description></item> <item><description>DocumentFormat.OpenXml.Drawing.EffectDag <a:effectDag></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Scene3DType <a:scene3d></description></item> <item><description>DocumentFormat.OpenXml.Drawing.ExtensionList <a:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.#ctor"> <summary> Initializes a new instance of the GroupShapeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupShapeProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.#ctor(System.String)"> <summary> Initializes a new instance of the GroupShapeProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.BlackWhiteMode"> <summary> <para> Black and White Mode.</para> <para>Represents the attribte in schema: bwMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GroupShapeProperties.TransformGroup"> <summary> <para> 2D Transform for Grouped Objects.</para> <para>Represents the element tag in schema: a:xfrm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Shape"> <summary> <para>Shape.</para> <para>When the object is serialized out as xml, its qualified name is p:sp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualShapeProperties <p:nvSpPr></description></item> <item><description>ShapeProperties <p:spPr></description></item> <item><description>ShapeStyle <p:style></description></item> <item><description>TextBody <p:txBody></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Shape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Shape.#ctor"> <summary> Initializes a new instance of the Shape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Shape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Shape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Shape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Shape.#ctor(System.String)"> <summary> Initializes a new instance of the Shape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Shape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Shape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Shape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Shape.UseBackgroundFill"> <summary> <para> Use Background Fill.</para> <para>Represents the attribte in schema: useBgFill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Shape.NonVisualShapeProperties"> <summary> <para> Non-Visual Properties for a Shape.</para> <para>Represents the element tag in schema: p:nvSpPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Shape.ShapeProperties"> <summary> <para> ShapeProperties.</para> <para>Represents the element tag in schema: p:spPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Shape.ShapeStyle"> <summary> <para> Shape Style.</para> <para>Represents the element tag in schema: p:style </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Shape.TextBody"> <summary> <para> Shape Text Body.</para> <para>Represents the element tag in schema: p:txBody </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Shape.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.GraphicFrame"> <summary> <para>Graphic Frame.</para> <para>When the object is serialized out as xml, its qualified name is p:graphicFrame.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualGraphicFrameProperties <p:nvGraphicFramePr></description></item> <item><description>Transform <p:xfrm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Graphic <a:graphic></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicFrame.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicFrame.#ctor"> <summary> Initializes a new instance of the GraphicFrame class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicFrame.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicFrame.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GraphicFrame class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicFrame.#ctor(System.String)"> <summary> Initializes a new instance of the GraphicFrame class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicFrame.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicFrame.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicFrame.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicFrame.NonVisualGraphicFrameProperties"> <summary> <para> Non-Visual Properties for a Graphic Frame.</para> <para>Represents the element tag in schema: p:nvGraphicFramePr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicFrame.Transform"> <summary> <para> 2D Transform for Graphic Frame.</para> <para>Represents the element tag in schema: p:xfrm </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicFrame.Graphic"> <summary> <para> Graphic.</para> <para>Represents the element tag in schema: a:graphic </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicFrame.ExtensionListWithModification"> <summary> <para> Extension List with Modification Flag.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ConnectionShape"> <summary> <para>Connection Shape.</para> <para>When the object is serialized out as xml, its qualified name is p:cxnSp.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NonVisualConnectionShapeProperties <p:nvCxnSpPr></description></item> <item><description>ShapeProperties <p:spPr></description></item> <item><description>ShapeStyle <p:style></description></item> <item><description>ExtensionListWithModification <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ConnectionShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ConnectionShape.#ctor"> <summary> Initializes a new instance of the ConnectionShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ConnectionShape.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConnectionShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ConnectionShape.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConnectionShape class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ConnectionShape.#ctor(System.String)"> <summary> Initializes a new instance of the ConnectionShape class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ConnectionShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ConnectionShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ConnectionShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ConnectionShape.NonVisualConnectionShapeProperties"> <summary> <para> Non-Visual Properties for a Connection Shape.</para> <para>Represents the element tag in schema: p:nvCxnSpPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ConnectionShape.ShapeProperties"> <summary> <para> Shape Properties.</para> <para>Represents the element tag in schema: p:spPr </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ConnectionShape.ShapeStyle"> <summary> <para> Connector Shape Style.</para> <para>Represents the element tag in schema: p:style </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ConnectionShape.ExtensionListWithModification"> <summary> <para> ExtensionListWithModification.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties"> <summary> <para>HTML Publishing Properties.</para> <para>This class is only available in Office2007.</para> <para>When the object is serialized out as xml, its qualified name is p:htmlPubPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideAll <p:sldAll></description></item> <item><description>SlideRange <p:sldRg></description></item> <item><description>CustomShowReference <p:custShow></description></item> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.#ctor"> <summary> Initializes a new instance of the HtmlPublishProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HtmlPublishProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HtmlPublishProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.#ctor(System.String)"> <summary> Initializes a new instance of the HtmlPublishProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.ShowSpeakerNotes"> <summary> <para> Show Speaker Notes.</para> <para>Represents the attribte in schema: showSpeakerNotes </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.TargetBrowser"> <summary> <para> Browser Support Target.</para> <para>Represents the attribte in schema: pubBrowser </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HtmlPublishProperties.Id"> <summary> <para> Publish Path.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.WebProperties"> <summary> <para>Web Properties.</para> <para>This class is only available in Office2007.</para> <para>When the object is serialized out as xml, its qualified name is p:webPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WebProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WebProperties.#ctor"> <summary> Initializes a new instance of the WebProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WebProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the WebProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WebProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the WebProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WebProperties.#ctor(System.String)"> <summary> Initializes a new instance of the WebProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WebProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.ShowAnimation"> <summary> <para> Show animation in HTML output.</para> <para>Represents the attribte in schema: showAnimation </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.ResizeGraphics"> <summary> <para> Resize graphics in HTML output.</para> <para>Represents the attribte in schema: resizeGraphics </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.AllowPng"> <summary> <para> Allow PNG in HTML output.</para> <para>Represents the attribte in schema: allowPng </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.RelyOnVml"> <summary> <para> Rely on VML for HTML output.</para> <para>Represents the attribte in schema: relyOnVml </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.OrganizeInFolders"> <summary> <para> Organize HTML output in folders.</para> <para>Represents the attribte in schema: organizeInFolders </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.UseLongFilenames"> <summary> <para> Use long file names in HTML output.</para> <para>Represents the attribte in schema: useLongFilenames </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.ImageSize"> <summary> <para> Image size for HTML output.</para> <para>Represents the attribte in schema: imgSz </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.Encoding"> <summary> <para> Encoding for HTML output.</para> <para>Represents the attribte in schema: encoding </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.Color"> <summary> <para> Slide Navigation Colors for HTML output.</para> <para>Represents the attribte in schema: clr </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WebProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PrintingProperties"> <summary> <para>Printing Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:prnPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PrintingProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PrintingProperties.#ctor"> <summary> Initializes a new instance of the PrintingProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PrintingProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PrintingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PrintingProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PrintingProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PrintingProperties.#ctor(System.String)"> <summary> Initializes a new instance of the PrintingProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PrintingProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PrintingProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PrintingProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PrintingProperties.PrintWhat"> <summary> <para> Print Output.</para> <para>Represents the attribte in schema: prnWhat </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PrintingProperties.ColorMode"> <summary> <para> Print Color Mode.</para> <para>Represents the attribte in schema: clrMode </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PrintingProperties.HiddenSlides"> <summary> <para> Print Hidden Slides.</para> <para>Represents the attribte in schema: hiddenSlides </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PrintingProperties.ScaleToFitPaper"> <summary> <para> Scale to Fit Paper when printing.</para> <para>Represents the attribte in schema: scaleToFitPaper </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PrintingProperties.FrameSlides"> <summary> <para> Frame slides when printing.</para> <para>Represents the attribte in schema: frameSlides </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PrintingProperties.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ShowProperties"> <summary> <para>Presentation-wide Show Properties.</para> <para>When the object is serialized out as xml, its qualified name is p:showPr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PresenterSlideMode <p:present></description></item> <item><description>BrowseSlideMode <p:browse></description></item> <item><description>KioskSlideMode <p:kiosk></description></item> <item><description>SlideAll <p:sldAll></description></item> <item><description>SlideRange <p:sldRg></description></item> <item><description>CustomShowReference <p:custShow></description></item> <item><description>PenColor <p:penClr></description></item> <item><description>ShowPropertiesExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowProperties.#ctor"> <summary> Initializes a new instance of the ShowProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShowProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShowProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowProperties.#ctor(System.String)"> <summary> Initializes a new instance of the ShowProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowProperties.Loop"> <summary> <para> Loop Slide Show.</para> <para>Represents the attribte in schema: loop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowProperties.ShowNarration"> <summary> <para> Show Narration in Slide Show.</para> <para>Represents the attribte in schema: showNarration </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowProperties.ShowAnimation"> <summary> <para> Show Animation in Slide Show.</para> <para>Represents the attribte in schema: showAnimation </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowProperties.UseTimings"> <summary> <para> Use Timings in Slide Show.</para> <para>Represents the attribte in schema: useTimings </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed"> <summary> <para>Color MRU.</para> <para>When the object is serialized out as xml, its qualified name is p:clrMru.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelPercentage <a:scrgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.RgbColorModelHex <a:srgbClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.HslColor <a:hslClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SystemColor <a:sysClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.SchemeColor <a:schemeClr></description></item> <item><description>DocumentFormat.OpenXml.Drawing.PresetColor <a:prstClr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed.#ctor"> <summary> Initializes a new instance of the ColorMostRecentlyUsed class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ColorMostRecentlyUsed class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ColorMostRecentlyUsed class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed.#ctor(System.String)"> <summary> Initializes a new instance of the ColorMostRecentlyUsed class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ColorMostRecentlyUsed.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList"> <summary> <para>Defines the PresentationPropertiesExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is p:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PresentationPropertiesExtension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList.#ctor"> <summary> Initializes a new instance of the PresentationPropertiesExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresentationPropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresentationPropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the PresentationPropertiesExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationPropertiesExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList"> <summary> <para>Defines the ShowPropertiesExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is p:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ShowPropertiesExtension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList.#ctor"> <summary> Initializes a new instance of the ShowPropertiesExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShowPropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShowPropertiesExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ShowPropertiesExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShowPropertiesExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideMasterIdList"> <summary> <para>List of Slide Master IDs.</para> <para>When the object is serialized out as xml, its qualified name is p:sldMasterIdLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideMasterId <p:sldMasterId></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterIdList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterIdList.#ctor"> <summary> Initializes a new instance of the SlideMasterIdList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterIdList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideMasterIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterIdList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideMasterIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterIdList.#ctor(System.String)"> <summary> Initializes a new instance of the SlideMasterIdList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideMasterIdList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMasterIdList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideMasterIdList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NotesMasterIdList"> <summary> <para>List of Notes Master IDs.</para> <para>When the object is serialized out as xml, its qualified name is p:notesMasterIdLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NotesMasterId <p:notesMasterId></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.#ctor"> <summary> Initializes a new instance of the NotesMasterIdList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NotesMasterIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NotesMasterIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.#ctor(System.String)"> <summary> Initializes a new instance of the NotesMasterIdList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesMasterIdList.NotesMasterId"> <summary> <para> Notes Master ID.</para> <para>Represents the element tag in schema: p:notesMasterId </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList"> <summary> <para>List of Handout Master IDs.</para> <para>When the object is serialized out as xml, its qualified name is p:handoutMasterIdLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>HandoutMasterId <p:handoutMasterId></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.#ctor"> <summary> Initializes a new instance of the HandoutMasterIdList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the HandoutMasterIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the HandoutMasterIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.#ctor(System.String)"> <summary> Initializes a new instance of the HandoutMasterIdList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.HandoutMasterIdList.HandoutMasterId"> <summary> <para> Handout Master ID.</para> <para>Represents the element tag in schema: p:handoutMasterId </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideIdList"> <summary> <para>List of Slide IDs.</para> <para>When the object is serialized out as xml, its qualified name is p:sldIdLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SlideId <p:sldId></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideIdList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideIdList.#ctor"> <summary> Initializes a new instance of the SlideIdList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideIdList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SlideIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideIdList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SlideIdList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideIdList.#ctor(System.String)"> <summary> Initializes a new instance of the SlideIdList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideIdList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideIdList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideIdList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideSize"> <summary> <para>Presentation Slide Size.</para> <para>When the object is serialized out as xml, its qualified name is p:sldSz.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSize.#ctor"> <summary> Initializes a new instance of the SlideSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SlideSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSize.Cx"> <summary> <para> Extent Length.</para> <para>Represents the attribte in schema: cx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSize.Cy"> <summary> <para> Extent Width.</para> <para>Represents the attribte in schema: cy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SlideSize.Type"> <summary> <para> Type of Size.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NotesSize"> <summary> <para>Notes Slide Size.</para> <para>When the object is serialized out as xml, its qualified name is p:notesSz.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSize.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSize.#ctor"> <summary> Initializes a new instance of the NotesSize class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.NotesSize.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSize.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSize.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSize.Cx"> <summary> <para> cx.</para> <para>Represents the attribte in schema: cx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.NotesSize.Cy"> <summary> <para> cy.</para> <para>Represents the attribte in schema: cy </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SmartTags"> <summary> <para>Smart Tags.</para> <para>When the object is serialized out as xml, its qualified name is p:smartTags.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SmartTags.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SmartTags.#ctor"> <summary> Initializes a new instance of the SmartTags class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SmartTags.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SmartTags.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SmartTags.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SmartTags.Id"> <summary> <para> Relationship Identifier.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EmbeddedFontList"> <summary> <para>Embedded Font List.</para> <para>When the object is serialized out as xml, its qualified name is p:embeddedFontLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>EmbeddedFont <p:embeddedFont></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFontList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFontList.#ctor"> <summary> Initializes a new instance of the EmbeddedFontList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFontList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the EmbeddedFontList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFontList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the EmbeddedFontList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFontList.#ctor(System.String)"> <summary> Initializes a new instance of the EmbeddedFontList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EmbeddedFontList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFontList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EmbeddedFontList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CustomShowList"> <summary> <para>List of Custom Shows.</para> <para>When the object is serialized out as xml, its qualified name is p:custShowLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CustomShow <p:custShow></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowList.#ctor"> <summary> Initializes a new instance of the CustomShowList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CustomShowList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CustomShowList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowList.#ctor(System.String)"> <summary> Initializes a new instance of the CustomShowList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CustomShowList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShowList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CustomShowList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PhotoAlbum"> <summary> <para>Photo Album Information.</para> <para>When the object is serialized out as xml, its qualified name is p:photoAlbum.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <p:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PhotoAlbum.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PhotoAlbum.#ctor"> <summary> Initializes a new instance of the PhotoAlbum class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PhotoAlbum.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PhotoAlbum class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PhotoAlbum.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PhotoAlbum class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PhotoAlbum.#ctor(System.String)"> <summary> Initializes a new instance of the PhotoAlbum class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PhotoAlbum.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PhotoAlbum.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PhotoAlbum.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PhotoAlbum.BlackWhite"> <summary> <para> Black and White.</para> <para>Represents the attribte in schema: bw </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PhotoAlbum.ShowCaptions"> <summary> <para> Show/Hide Captions.</para> <para>Represents the attribte in schema: showCaptions </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PhotoAlbum.Layout"> <summary> <para> Photo Album Layout.</para> <para>Represents the attribte in schema: layout </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PhotoAlbum.Frame"> <summary> <para> Frame Type.</para> <para>Represents the attribte in schema: frame </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PhotoAlbum.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: p:extLst </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Kinsoku"> <summary> <para>Kinsoku Settings.</para> <para>When the object is serialized out as xml, its qualified name is p:kinsoku.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Kinsoku.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Kinsoku.#ctor"> <summary> Initializes a new instance of the Kinsoku class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Kinsoku.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Kinsoku.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Kinsoku.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Kinsoku.Language"> <summary> <para> Language.</para> <para>Represents the attribte in schema: lang </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Kinsoku.InvalidStartChars"> <summary> <para> Invalid Kinsoku Start Characters.</para> <para>Represents the attribte in schema: invalStChars </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Kinsoku.InvalidEndChars"> <summary> <para> Invalid Kinsoku End Characters.</para> <para>Represents the attribte in schema: invalEndChars </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ModificationVerifier"> <summary> <para>Modification Verifier.</para> <para>When the object is serialized out as xml, its qualified name is p:modifyVerifier.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ModificationVerifier.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ModificationVerifier.#ctor"> <summary> Initializes a new instance of the ModificationVerifier class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ModificationVerifier.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.CryptographicProviderType"> <summary> <para> Cryptographic Provider Type.</para> <para>Represents the attribte in schema: cryptProviderType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.CryptographicAlgorithmClass"> <summary> <para> Cryptographic Algorithm Class.</para> <para>Represents the attribte in schema: cryptAlgorithmClass </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.CryptographicAlgorithmType"> <summary> <para> Cryptographic Algorithm Type.</para> <para>Represents the attribte in schema: cryptAlgorithmType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.CryptographicAlgorithmSid"> <summary> <para> Cryptographic Hashing Algorithm.</para> <para>Represents the attribte in schema: cryptAlgorithmSid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.SpinCount"> <summary> <para> Iterations to Run Hashing Algorithm.</para> <para>Represents the attribte in schema: spinCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.SaltData"> <summary> <para> Salt for Password Verifier.</para> <para>Represents the attribte in schema: saltData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.HashData"> <summary> <para> Password Hash.</para> <para>Represents the attribte in schema: hashData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.CryptographicProvider"> <summary> <para> Cryptographic Provider.</para> <para>Represents the attribte in schema: cryptProvider </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.ExtendedCryptographicAlgorithm"> <summary> <para> Cryptographic Algorithm Extensibility.</para> <para>Represents the attribte in schema: algIdExt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.ExtendedCryptographicAlgorithmSource"> <summary> <para> Algorithm Extensibility Source.</para> <para>Represents the attribte in schema: algIdExtSource </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.CryptographicProviderTypeExtensibility"> <summary> <para> Cryptographic Provider Type Extensibility.</para> <para>Represents the attribte in schema: cryptProviderTypeExt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.CryptographicProviderTypeExtensibilitySource"> <summary> <para> Provider Type Extensibility Source.</para> <para>Represents the attribte in schema: cryptProviderTypeExtSource </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.AlgorithmName"> <summary> <para> algorithmName, this property is only available in Office2010.</para> <para>Represents the attribte in schema: algorithmName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.HashValue"> <summary> <para> hashValue, this property is only available in Office2010.</para> <para>Represents the attribte in schema: hashValue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.SaltValue"> <summary> <para> saltValue, this property is only available in Office2010.</para> <para>Represents the attribte in schema: saltValue </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ModificationVerifier.SpinValue"> <summary> <para> spinValue, this property is only available in Office2010.</para> <para>Represents the attribte in schema: spinValue </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PresentationExtensionList"> <summary> <para>Extension List.</para> <para>When the object is serialized out as xml, its qualified name is p:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PresentationExtension <p:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtensionList.#ctor"> <summary> Initializes a new instance of the PresentationExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PresentationExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PresentationExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the PresentationExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PresentationExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PresentationExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ByPosition"> <summary> <para>By.</para> <para>When the object is serialized out as xml, its qualified name is p:by.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeListType"> <summary> Defines the TimeListType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListType.#ctor"> <summary> Initializes a new instance of the TimeListType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListType.X"> <summary> <para> X coordinate.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListType.Y"> <summary> <para> Y coordinate.</para> <para>Represents the attribte in schema: y </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByPosition.#ctor"> <summary> Initializes a new instance of the ByPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ByPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ByPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ByPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.FromPosition"> <summary> <para>Defines the FromPosition Class.</para> <para>When the object is serialized out as xml, its qualified name is p:from.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromPosition.#ctor"> <summary> Initializes a new instance of the FromPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FromPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FromPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FromPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ToPosition"> <summary> <para>To.</para> <para>When the object is serialized out as xml, its qualified name is p:to.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToPosition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToPosition.#ctor"> <summary> Initializes a new instance of the ToPosition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ToPosition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ToPosition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ToPosition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.RotationCenter"> <summary> <para>Rotation Center.</para> <para>When the object is serialized out as xml, its qualified name is p:rCtr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RotationCenter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RotationCenter.#ctor"> <summary> Initializes a new instance of the RotationCenter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RotationCenter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RotationCenter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RotationCenter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList"> <summary> <para>Time Animated Value List.</para> <para>When the object is serialized out as xml, its qualified name is p:tavLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TimeAnimateValue <p:tav></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList.#ctor"> <summary> Initializes a new instance of the TimeAnimateValueList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TimeAnimateValueList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TimeAnimateValueList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList.#ctor(System.String)"> <summary> Initializes a new instance of the TimeAnimateValueList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeAnimateValueList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.Iterate"> <summary> <para>Iterate.</para> <para>When the object is serialized out as xml, its qualified name is p:iterate.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TimeAbsolute <p:tmAbs></description></item> <item><description>TimePercentage <p:tmPct></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Iterate.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Iterate.#ctor"> <summary> Initializes a new instance of the Iterate class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Iterate.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Iterate class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Iterate.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Iterate class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Iterate.#ctor(System.String)"> <summary> Initializes a new instance of the Iterate class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.Iterate.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Iterate.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Iterate.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Iterate.Type"> <summary> <para> Iterate Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Iterate.Backwards"> <summary> <para> Backwards.</para> <para>Represents the attribte in schema: backwards </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Iterate.TimeAbsolute"> <summary> <para> Time Absolute.</para> <para>Represents the element tag in schema: p:tmAbs </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.Iterate.TimePercentage"> <summary> <para> Time Percentage.</para> <para>Represents the element tag in schema: p:tmPct </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList"> <summary> <para>Children Time Node List.</para> <para>When the object is serialized out as xml, its qualified name is p:childTnLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ParallelTimeNode <p:par></description></item> <item><description>SequenceTimeNode <p:seq></description></item> <item><description>ExclusiveTimeNode <p:excl></description></item> <item><description>Animate <p:anim></description></item> <item><description>AnimateColor <p:animClr></description></item> <item><description>AnimateEffect <p:animEffect></description></item> <item><description>AnimateMotion <p:animMotion></description></item> <item><description>AnimateRotation <p:animRot></description></item> <item><description>AnimateScale <p:animScale></description></item> <item><description>Command <p:cmd></description></item> <item><description>SetBehavior <p:set></description></item> <item><description>Audio <p:audio></description></item> <item><description>Video <p:video></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeTypeListType"> <summary> Defines the TimeTypeListType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ParallelTimeNode <p:par></description></item> <item><description>SequenceTimeNode <p:seq></description></item> <item><description>ExclusiveTimeNode <p:excl></description></item> <item><description>Animate <p:anim></description></item> <item><description>AnimateColor <p:animClr></description></item> <item><description>AnimateEffect <p:animEffect></description></item> <item><description>AnimateMotion <p:animMotion></description></item> <item><description>AnimateRotation <p:animRot></description></item> <item><description>AnimateScale <p:animScale></description></item> <item><description>Command <p:cmd></description></item> <item><description>SetBehavior <p:set></description></item> <item><description>Audio <p:audio></description></item> <item><description>Video <p:video></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeTypeListType.#ctor"> <summary> Initializes a new instance of the TimeTypeListType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeTypeListType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TimeTypeListType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeTypeListType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TimeTypeListType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeTypeListType.#ctor(System.String)"> <summary> Initializes a new instance of the TimeTypeListType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList.#ctor"> <summary> Initializes a new instance of the ChildTimeNodeList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ChildTimeNodeList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ChildTimeNodeList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList.#ctor(System.String)"> <summary> Initializes a new instance of the ChildTimeNodeList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ChildTimeNodeList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SubTimeNodeList"> <summary> <para>Sub-TimeNodes List.</para> <para>When the object is serialized out as xml, its qualified name is p:subTnLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ParallelTimeNode <p:par></description></item> <item><description>SequenceTimeNode <p:seq></description></item> <item><description>ExclusiveTimeNode <p:excl></description></item> <item><description>Animate <p:anim></description></item> <item><description>AnimateColor <p:animClr></description></item> <item><description>AnimateEffect <p:animEffect></description></item> <item><description>AnimateMotion <p:animMotion></description></item> <item><description>AnimateRotation <p:animRot></description></item> <item><description>AnimateScale <p:animScale></description></item> <item><description>Command <p:cmd></description></item> <item><description>SetBehavior <p:set></description></item> <item><description>Audio <p:audio></description></item> <item><description>Video <p:video></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubTimeNodeList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubTimeNodeList.#ctor"> <summary> Initializes a new instance of the SubTimeNodeList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubTimeNodeList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SubTimeNodeList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubTimeNodeList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SubTimeNodeList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubTimeNodeList.#ctor(System.String)"> <summary> Initializes a new instance of the SubTimeNodeList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubTimeNodeList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SubTimeNodeList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SubTimeNodeList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ShapeTarget"> <summary> <para>Shape Target.</para> <para>When the object is serialized out as xml, its qualified name is p:spTgt.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>BackgroundAnimation <p:bg></description></item> <item><description>SubShape <p:subSp></description></item> <item><description>OleChartElement <p:oleChartEl></description></item> <item><description>TextElement <p:txEl></description></item> <item><description>GraphicElement <p:graphicEl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTarget.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTarget.#ctor"> <summary> Initializes a new instance of the ShapeTarget class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTarget.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ShapeTarget class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTarget.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ShapeTarget class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTarget.#ctor(System.String)"> <summary> Initializes a new instance of the ShapeTarget class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ShapeTarget.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTarget.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTarget.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTarget.ShapeId"> <summary> <para> Shape ID.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTarget.BackgroundAnimation"> <summary> <para> Background.</para> <para>Represents the element tag in schema: p:bg </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTarget.SubShape"> <summary> <para> Subshape.</para> <para>Represents the element tag in schema: p:subSp </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTarget.OleChartElement"> <summary> <para> OLE Chart Element.</para> <para>Represents the element tag in schema: p:oleChartEl </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTarget.TextElement"> <summary> <para> Text Element.</para> <para>Represents the element tag in schema: p:txEl </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ShapeTarget.GraphicElement"> <summary> <para> Graphic Element.</para> <para>Represents the element tag in schema: p:graphicEl </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.InkTarget"> <summary> <para>Ink Target.</para> <para>When the object is serialized out as xml, its qualified name is p:inkTgt.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeListSubShapeIdType"> <summary> Defines the TimeListSubShapeIdType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TimeListSubShapeIdType.#ctor"> <summary> Initializes a new instance of the TimeListSubShapeIdType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TimeListSubShapeIdType.ShapeId"> <summary> <para> Shape ID.</para> <para>Represents the attribte in schema: spid </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.InkTarget.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.InkTarget.#ctor"> <summary> Initializes a new instance of the InkTarget class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.InkTarget.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.InkTarget.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.InkTarget.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SubShape"> <summary> <para>Subshape.</para> <para>When the object is serialized out as xml, its qualified name is p:subSp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubShape.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubShape.#ctor"> <summary> Initializes a new instance of the SubShape class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SubShape.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SubShape.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SubShape.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OleChartElement"> <summary> <para>OLE Chart Element.</para> <para>When the object is serialized out as xml, its qualified name is p:oleChartEl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleChartElement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleChartElement.#ctor"> <summary> Initializes a new instance of the OleChartElement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OleChartElement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleChartElement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleChartElement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleChartElement.Type"> <summary> <para> Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OleChartElement.Level"> <summary> <para> Level.</para> <para>Represents the attribte in schema: lvl </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TextElement"> <summary> <para>Text Element.</para> <para>When the object is serialized out as xml, its qualified name is p:txEl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CharRange <p:charRg></description></item> <item><description>ParagraphIndexRange <p:pRg></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextElement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextElement.#ctor"> <summary> Initializes a new instance of the TextElement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextElement.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextElement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextElement.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextElement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextElement.#ctor(System.String)"> <summary> Initializes a new instance of the TextElement class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.TextElement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextElement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextElement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextElement.CharRange"> <summary> <para> Character Range.</para> <para>Represents the element tag in schema: p:charRg </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.TextElement.ParagraphIndexRange"> <summary> <para> Paragraph Text Range.</para> <para>Represents the element tag in schema: p:pRg </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.GraphicElement"> <summary> <para>Graphic Element.</para> <para>When the object is serialized out as xml, its qualified name is p:graphicEl.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Drawing.Diagram <a:dgm></description></item> <item><description>DocumentFormat.OpenXml.Drawing.Chart <a:chart></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicElement.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicElement.#ctor"> <summary> Initializes a new instance of the GraphicElement class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicElement.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GraphicElement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicElement.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GraphicElement class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicElement.#ctor(System.String)"> <summary> Initializes a new instance of the GraphicElement class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.GraphicElement.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicElement.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicElement.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicElement.Diagram"> <summary> <para> Diagram to Animate.</para> <para>Represents the element tag in schema: a:dgm </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.GraphicElement.Chart"> <summary> <para> Chart to Animate.</para> <para>Represents the element tag in schema: a:chart </para> </summary> <remark> xmlns:a = http://schemas.openxmlformats.org/drawingml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BlindsTransition"> <summary> <para>Blinds Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:blinds.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OrientationTransitionType"> <summary> Defines the OrientationTransitionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OrientationTransitionType.#ctor"> <summary> Initializes a new instance of the OrientationTransitionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OrientationTransitionType.Direction"> <summary> <para> Transition Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlindsTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlindsTransition.#ctor"> <summary> Initializes a new instance of the BlindsTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.BlindsTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BlindsTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.BlindsTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CheckerTransition"> <summary> <para>Checker Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:checker.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CheckerTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CheckerTransition.#ctor"> <summary> Initializes a new instance of the CheckerTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CheckerTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CheckerTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CheckerTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CombTransition"> <summary> <para>Comb Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:comb.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CombTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CombTransition.#ctor"> <summary> Initializes a new instance of the CombTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CombTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CombTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CombTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.RandomBarTransition"> <summary> <para>Random Bar Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:randomBar.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RandomBarTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RandomBarTransition.#ctor"> <summary> Initializes a new instance of the RandomBarTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.RandomBarTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RandomBarTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.RandomBarTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CoverTransition"> <summary> <para>Cover Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:cover.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.EightDirectionTransitionType"> <summary> Defines the EightDirectionTransitionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.EightDirectionTransitionType.#ctor"> <summary> Initializes a new instance of the EightDirectionTransitionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.EightDirectionTransitionType.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CoverTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CoverTransition.#ctor"> <summary> Initializes a new instance of the CoverTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CoverTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CoverTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CoverTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PullTransition"> <summary> <para>Pull Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:pull.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PullTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PullTransition.#ctor"> <summary> Initializes a new instance of the PullTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PullTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PullTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PullTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CutTransition"> <summary> <para>Cut Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:cut.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OptionalBlackTransitionType"> <summary> Defines the OptionalBlackTransitionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.OptionalBlackTransitionType.#ctor"> <summary> Initializes a new instance of the OptionalBlackTransitionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.OptionalBlackTransitionType.ThroughBlack"> <summary> <para> Transition Through Black.</para> <para>Represents the attribte in schema: thruBlk </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CutTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CutTransition.#ctor"> <summary> Initializes a new instance of the CutTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.CutTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CutTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.CutTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.FadeTransition"> <summary> <para>Fade Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:fade.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FadeTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FadeTransition.#ctor"> <summary> Initializes a new instance of the FadeTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.FadeTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FadeTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.FadeTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PushTransition"> <summary> <para>Push Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:push.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SideDirectionTransitionType"> <summary> Defines the SideDirectionTransitionType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SideDirectionTransitionType.#ctor"> <summary> Initializes a new instance of the SideDirectionTransitionType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SideDirectionTransitionType.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PushTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PushTransition.#ctor"> <summary> Initializes a new instance of the PushTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.PushTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PushTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.PushTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.WipeTransition"> <summary> <para>Wipe Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:wipe.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WipeTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WipeTransition.#ctor"> <summary> Initializes a new instance of the WipeTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WipeTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WipeTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WipeTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SplitTransition"> <summary> <para>Split Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:split.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SplitTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SplitTransition.#ctor"> <summary> Initializes a new instance of the SplitTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SplitTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SplitTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SplitTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SplitTransition.Orientation"> <summary> <para> Orientation.</para> <para>Represents the attribte in schema: orient </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SplitTransition.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.StripsTransition"> <summary> <para>Strips Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:strips.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StripsTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StripsTransition.#ctor"> <summary> Initializes a new instance of the StripsTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.StripsTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StripsTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StripsTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.StripsTransition.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.WheelTransition"> <summary> <para>Wheel Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:wheel.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WheelTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WheelTransition.#ctor"> <summary> Initializes a new instance of the WheelTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.WheelTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WheelTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WheelTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.WheelTransition.Spokes"> <summary> <para> Spokes.</para> <para>Represents the attribte in schema: spokes </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ZoomTransition"> <summary> <para>Zoom Slide Transition.</para> <para>When the object is serialized out as xml, its qualified name is p:zoom.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ZoomTransition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ZoomTransition.#ctor"> <summary> Initializes a new instance of the ZoomTransition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.ZoomTransition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ZoomTransition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ZoomTransition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.ZoomTransition.Direction"> <summary> <para> Direction.</para> <para>Represents the attribte in schema: dir </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SoundAction"> <summary> <para>Sound Action.</para> <para>When the object is serialized out as xml, its qualified name is p:sndAc.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>StartSoundAction <p:stSnd></description></item> <item><description>EndSoundAction <p:endSnd></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundAction.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundAction.#ctor"> <summary> Initializes a new instance of the SoundAction class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundAction.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SoundAction class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundAction.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SoundAction class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundAction.#ctor(System.String)"> <summary> Initializes a new instance of the SoundAction class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Presentation.SoundAction.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SoundAction.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SoundAction.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SoundAction.StartSoundAction"> <summary> <para> Start Sound Action.</para> <para>Represents the element tag in schema: p:stSnd </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Presentation.SoundAction.EndSoundAction"> <summary> <para> Stop Sound Action.</para> <para>Represents the element tag in schema: p:endSnd </para> </summary> <remark> xmlns:p = http://schemas.openxmlformats.org/presentationml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TransitionSlideDirectionValues"> <summary> Transition Slide Direction Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionSlideDirectionValues.Left"> <summary> Transition Slide Direction Enum ( Left ). <para>When the item is serialized out as xml, its value is "l".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionSlideDirectionValues.Up"> <summary> Transition Slide Direction Enum ( Up ). <para>When the item is serialized out as xml, its value is "u".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionSlideDirectionValues.Right"> <summary> Transition Slide Direction ( Right ). <para>When the item is serialized out as xml, its value is "r".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionSlideDirectionValues.Down"> <summary> Transition Slide Direction Enum ( Down ). <para>When the item is serialized out as xml, its value is "d".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TransitionCornerDirectionValues"> <summary> Transition Corner Direction Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionCornerDirectionValues.LeftUp"> <summary> Transition Corner Direction Enum ( Left-Up ). <para>When the item is serialized out as xml, its value is "lu".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionCornerDirectionValues.RightUp"> <summary> Transition Corner Direction Enum ( Right-Up ). <para>When the item is serialized out as xml, its value is "ru".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionCornerDirectionValues.LeftDown"> <summary> Transition Corner Direction Enum ( Left-Down ). <para>When the item is serialized out as xml, its value is "ld".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionCornerDirectionValues.RightDown"> <summary> Transition Corner Direction Enum ( Right-Down ). <para>When the item is serialized out as xml, its value is "rd".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TransitionInOutDirectionValues"> <summary> Transition In/Out Direction Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionInOutDirectionValues.Out"> <summary> Transition In/Out Direction Enum ( Out ). <para>When the item is serialized out as xml, its value is "out".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionInOutDirectionValues.In"> <summary> Transition In/Out Direction Enum ( In ). <para>When the item is serialized out as xml, its value is "in".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TransitionSpeedValues"> <summary> Transition Speed </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionSpeedValues.Slow"> <summary> low. <para>When the item is serialized out as xml, its value is "slow".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionSpeedValues.Medium"> <summary> Medium. <para>When the item is serialized out as xml, its value is "med".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TransitionSpeedValues.Fast"> <summary> Fast. <para>When the item is serialized out as xml, its value is "fast".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.IndefiniteTimeDeclarationValues"> <summary> Indefinite Time Declaration </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.IndefiniteTimeDeclarationValues.Indefinite"> <summary> Indefinite Type Enum. <para>When the item is serialized out as xml, its value is "indefinite".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.IterateValues"> <summary> Iterate Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.IterateValues.Element"> <summary> Element. <para>When the item is serialized out as xml, its value is "el".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.IterateValues.Word"> <summary> Word. <para>When the item is serialized out as xml, its value is "wd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.IterateValues.Letter"> <summary> Letter. <para>When the item is serialized out as xml, its value is "lt".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ChartSubElementValues"> <summary> Chart Subelement Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ChartSubElementValues.GridLegend"> <summary> Chart Build Element Type Enum ( Grid Legend ). <para>When the item is serialized out as xml, its value is "gridLegend".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ChartSubElementValues.Series"> <summary> Chart Build Element Type Enum ( Series ). <para>When the item is serialized out as xml, its value is "series".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ChartSubElementValues.Category"> <summary> Chart Build Element Type Enum ( Category ). <para>When the item is serialized out as xml, its value is "category".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ChartSubElementValues.PointInSeries"> <summary> Chart Build Element Type Enum ( Point in Series ). <para>When the item is serialized out as xml, its value is "ptInSeries".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ChartSubElementValues.PointInCategory"> <summary> Chart Build Element Type Enum ( Point in Cat ). <para>When the item is serialized out as xml, its value is "ptInCategory".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TriggerRuntimeNodeValues"> <summary> Trigger RunTime Node </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerRuntimeNodeValues.First"> <summary> Trigger RunTime Node ( First ). <para>When the item is serialized out as xml, its value is "first".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerRuntimeNodeValues.Last"> <summary> Trigger RunTime Node ( Last ). <para>When the item is serialized out as xml, its value is "last".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerRuntimeNodeValues.All"> <summary> Trigger RunTime Node Enum ( All ). <para>When the item is serialized out as xml, its value is "all".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeNodePresetClassValues"> <summary> Time Node Preset Class Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodePresetClassValues.Entrance"> <summary> Preset Type Enum ( Entrance ). <para>When the item is serialized out as xml, its value is "entr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodePresetClassValues.Exit"> <summary> Exit. <para>When the item is serialized out as xml, its value is "exit".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodePresetClassValues.Emphasis"> <summary> Preset Type Enum ( Emphasis ). <para>When the item is serialized out as xml, its value is "emph".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodePresetClassValues.Path"> <summary> Preset Type Enum ( Path ). <para>When the item is serialized out as xml, its value is "path".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodePresetClassValues.Verb"> <summary> Preset Type Enum ( Verb ). <para>When the item is serialized out as xml, its value is "verb".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodePresetClassValues.MediaCall"> <summary> Preset Type Enum ( Media Call ). <para>When the item is serialized out as xml, its value is "mediacall".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeNodeRestartValues"> <summary> Time Node Restart Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeRestartValues.Always"> <summary> Restart Enum ( Always ). <para>When the item is serialized out as xml, its value is "always".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeRestartValues.WhenNotActive"> <summary> Restart Enum ( When Not Active ). <para>When the item is serialized out as xml, its value is "whenNotActive".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeRestartValues.Never"> <summary> Restart Enum ( Never ). <para>When the item is serialized out as xml, its value is "never".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeNodeFillValues"> <summary> Time Node Fill Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeFillValues.Remove"> <summary> Remove. <para>When the item is serialized out as xml, its value is "remove".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeFillValues.Freeze"> <summary> Freeze. <para>When the item is serialized out as xml, its value is "freeze".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeFillValues.Hold"> <summary> TimeNode Fill Type Enum ( Hold ). <para>When the item is serialized out as xml, its value is "hold".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeFillValues.Transition"> <summary> Transition. <para>When the item is serialized out as xml, its value is "transition".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeNodeValues"> <summary> Time Node Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.ClickEffect"> <summary> Node Type Enum ( Click Effect ). <para>When the item is serialized out as xml, its value is "clickEffect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.WithEffect"> <summary> Node Type Enum ( With Effect ). <para>When the item is serialized out as xml, its value is "withEffect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.AfterEffect"> <summary> Node Type Enum ( After Effect ). <para>When the item is serialized out as xml, its value is "afterEffect".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.MainSequence"> <summary> Node Type Enum ( Main Sequence ). <para>When the item is serialized out as xml, its value is "mainSeq".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.InteractiveSequence"> <summary> Node Type Enum ( Interactive Sequence ). <para>When the item is serialized out as xml, its value is "interactiveSeq".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.ClickParagraph"> <summary> Node Type Enum ( Click Paragraph ). <para>When the item is serialized out as xml, its value is "clickPar".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.WithGroup"> <summary> Node Type Enum ( With Group ). <para>When the item is serialized out as xml, its value is "withGroup".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.AfterGroup"> <summary> Node Type Enum ( After Group ). <para>When the item is serialized out as xml, its value is "afterGroup".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeValues.TmingRoot"> <summary> Node Type Enum ( Timing Root ). <para>When the item is serialized out as xml, its value is "tmRoot".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.NextActionValues"> <summary> Next Action Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.NextActionValues.None"> <summary> Next Action Type Enum ( None ). <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.NextActionValues.Seek"> <summary> Next Action Type Enum ( Seek ). <para>When the item is serialized out as xml, its value is "seek".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PreviousActionValues"> <summary> Previous Action Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PreviousActionValues.None"> <summary> Previous Action Type Enum ( None ). <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PreviousActionValues.SkipTimed"> <summary> Previous Action Type Enum ( Skip Timed ). <para>When the item is serialized out as xml, its value is "skipTimed".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BehaviorAdditiveValues"> <summary> Behavior Additive Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorAdditiveValues.Base"> <summary> Additive Enum ( Base ). <para>When the item is serialized out as xml, its value is "base".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorAdditiveValues.Sum"> <summary> Additive Enum ( Sum ). <para>When the item is serialized out as xml, its value is "sum".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorAdditiveValues.Replace"> <summary> Additive Enum ( Replace ). <para>When the item is serialized out as xml, its value is "repl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorAdditiveValues.Multiply"> <summary> Additive Enum ( Multiply ). <para>When the item is serialized out as xml, its value is "mult".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorAdditiveValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BehaviorAccumulateValues"> <summary> Behavior Accumulate Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorAccumulateValues.None"> <summary> Accumulate Enum ( None ). <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorAccumulateValues.Always"> <summary> Accumulate Enum ( Always ). <para>When the item is serialized out as xml, its value is "always".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BehaviorTransformValues"> <summary> Behavior Transform Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorTransformValues.Point"> <summary> Point. <para>When the item is serialized out as xml, its value is "pt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorTransformValues.Image"> <summary> Image. <para>When the item is serialized out as xml, its value is "img".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.BehaviorOverrideValues"> <summary> Behavior Override Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorOverrideValues.Normal"> <summary> Override Enum ( Normal ). <para>When the item is serialized out as xml, its value is "normal".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.BehaviorOverrideValues.ChildStyle"> <summary> Override Enum ( Child Style ). <para>When the item is serialized out as xml, its value is "childStyle".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateBehaviorCalculateModeValues"> <summary> Time List Animate Behavior Calculate Mode </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateBehaviorCalculateModeValues.Discrete"> <summary> Calc Mode Enum ( Discrete ). <para>When the item is serialized out as xml, its value is "discrete".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateBehaviorCalculateModeValues.Linear"> <summary> Calc Mode Enum ( Linear ). <para>When the item is serialized out as xml, its value is "lin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateBehaviorCalculateModeValues.Formula"> <summary> Calc Mode Enum ( Formula ). <para>When the item is serialized out as xml, its value is "fmla".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateBehaviorValues"> <summary> Time List Animate Behavior Value Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateBehaviorValues.String"> <summary> Value Type Enum ( String ). <para>When the item is serialized out as xml, its value is "str".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateBehaviorValues.Number"> <summary> Value Type Enum ( Number ). <para>When the item is serialized out as xml, its value is "num".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateBehaviorValues.Color"> <summary> Value Type Enum ( Color ). <para>When the item is serialized out as xml, its value is "clr".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateColorSpaceValues"> <summary> Time List Animate Color Space </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateColorSpaceValues.Rgb"> <summary> Color Space Enum ( RGB ). <para>When the item is serialized out as xml, its value is "rgb".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateColorSpaceValues.Hsl"> <summary> Color Space Enum ( HSL ). <para>When the item is serialized out as xml, its value is "hsl".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateColorDirectionValues"> <summary> Time List Animate Color Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateColorDirectionValues.Clockwise"> <summary> Direction Enum ( Clockwise ). <para>When the item is serialized out as xml, its value is "cw".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateColorDirectionValues.CounterClockwise"> <summary> Counter-Clockwise. <para>When the item is serialized out as xml, its value is "ccw".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateEffectTransitionValues"> <summary> Time List Animate Effect Transition </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateEffectTransitionValues.In"> <summary> Transition Enum ( In ). <para>When the item is serialized out as xml, its value is "in".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateEffectTransitionValues.Out"> <summary> Transition Enum ( Out ). <para>When the item is serialized out as xml, its value is "out".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateEffectTransitionValues.None"> <summary> Transition Enum ( None ). <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateMotionBehaviorOriginValues"> <summary> Time List Animate Motion Behavior Origin </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateMotionBehaviorOriginValues.Parent"> <summary> Origin Enum ( Parent ). <para>When the item is serialized out as xml, its value is "parent".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateMotionBehaviorOriginValues.Layout"> <summary> Origin Enum ( Layout ). <para>When the item is serialized out as xml, its value is "layout".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.AnimateMotionPathEditModeValues"> <summary> Time List Animate Motion Path Edit Mode </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateMotionPathEditModeValues.Relative"> <summary> Path Edit Mode Enum ( Relative ). <para>When the item is serialized out as xml, its value is "relative".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.AnimateMotionPathEditModeValues.Fixed"> <summary> Path Edit Mode Enum ( Fixed ). <para>When the item is serialized out as xml, its value is "fixed".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CommandValues"> <summary> Command Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CommandValues.Event"> <summary> Command Type Enum ( Event ). <para>When the item is serialized out as xml, its value is "evt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CommandValues.Call"> <summary> Command Type Enum ( Call ). <para>When the item is serialized out as xml, its value is "call".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CommandValues.Verb"> <summary> Command Type Enum ( Verb ). <para>When the item is serialized out as xml, its value is "verb".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ParagraphBuildValues"> <summary> Paragraph Build Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ParagraphBuildValues.AllAtOnce"> <summary> All At Once. <para>When the item is serialized out as xml, its value is "allAtOnce".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ParagraphBuildValues.Paragraph"> <summary> Paragraph. <para>When the item is serialized out as xml, its value is "p".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ParagraphBuildValues.Custom"> <summary> Custom. <para>When the item is serialized out as xml, its value is "cust".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ParagraphBuildValues.Whole"> <summary> Whole. <para>When the item is serialized out as xml, its value is "whole".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.DiagramBuildValues"> <summary> Diagram Build Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.Whole"> <summary> Diagram Build Type Enum ( Whole ). <para>When the item is serialized out as xml, its value is "whole".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.DepthByNode"> <summary> Diagram Build Type Enum ( Depth By Node ). <para>When the item is serialized out as xml, its value is "depthByNode".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.DepthByBranch"> <summary> Diagram Build Type Enum ( Depth By Branch ). <para>When the item is serialized out as xml, its value is "depthByBranch".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.BreadthByNode"> <summary> Diagram Build Type Enum ( Breadth By Node ). <para>When the item is serialized out as xml, its value is "breadthByNode".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.BreadthByLevel"> <summary> Diagram Build Type Enum ( Breadth By Level ). <para>When the item is serialized out as xml, its value is "breadthByLvl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.Clockwise"> <summary> Diagram Build Type Enum ( Clockwise ). <para>When the item is serialized out as xml, its value is "cw".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.ClockwiseIn"> <summary> Diagram Build Type Enum ( Clockwise-In ). <para>When the item is serialized out as xml, its value is "cwIn".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.ClockwiseOut"> <summary> Diagram Build Type Enum ( Clockwise-Out ). <para>When the item is serialized out as xml, its value is "cwOut".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.CounterClockwise"> <summary> Diagram Build Type Enum ( Counter-Clockwise ). <para>When the item is serialized out as xml, its value is "ccw".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.CounterClockwiseIn"> <summary> Diagram Build Type Enum ( Counter-Clockwise-In ). <para>When the item is serialized out as xml, its value is "ccwIn".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.CounterClockwiseOut"> <summary> Diagram Build Type Enum ( Counter-Clockwise-Out ). <para>When the item is serialized out as xml, its value is "ccwOut".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.InByRing"> <summary> Diagram Build Type Enum ( In-By-Ring ). <para>When the item is serialized out as xml, its value is "inByRing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.OutByRing"> <summary> Diagram Build Type Enum ( Out-By-Ring ). <para>When the item is serialized out as xml, its value is "outByRing".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.Up"> <summary> Diagram Build Type Enum ( Up ). <para>When the item is serialized out as xml, its value is "up".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.Down"> <summary> Diagram Build Type Enum ( Down ). <para>When the item is serialized out as xml, its value is "down".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.AllAtOnce"> <summary> Diagram Build Type Enum ( All At Once ). <para>When the item is serialized out as xml, its value is "allAtOnce".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DiagramBuildValues.Custom"> <summary> Diagram Build Type Enum ( Custom ). <para>When the item is serialized out as xml, its value is "cust".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OleChartBuildValues"> <summary> OLE Chart Build Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.OleChartBuildValues.AllAtOnce"> <summary> Chart Build Type Enum ( All At Once ). <para>When the item is serialized out as xml, its value is "allAtOnce".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.OleChartBuildValues.Series"> <summary> Chart Build Type Enum ( Series ). <para>When the item is serialized out as xml, its value is "series".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.OleChartBuildValues.Category"> <summary> Chart Build Type Enum ( Category ). <para>When the item is serialized out as xml, its value is "category".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.OleChartBuildValues.SeriesElement"> <summary> Chart Build Type Enum ( Series Element ). <para>When the item is serialized out as xml, its value is "seriesEl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.OleChartBuildValues.CategoryElement"> <summary> Chart Build Type Enum ( Category Element ). <para>When the item is serialized out as xml, its value is "categoryEl".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeNodeMasterRelationValues"> <summary> Time Node Master Relation </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeMasterRelationValues.SameClick"> <summary> TimeNode Master Relation Enum ( Same Click ). <para>When the item is serialized out as xml, its value is "sameClick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeMasterRelationValues.NextClick"> <summary> TimeNode Master Relation Enum ( Next Click ). <para>When the item is serialized out as xml, its value is "nextClick".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TimeNodeSyncValues"> <summary> Time Node Sync Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeSyncValues.None"> <summary> none. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeSyncValues.CanSlip"> <summary> TimeNode Sync Enum ( Can Slip ). <para>When the item is serialized out as xml, its value is "canSlip".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TimeNodeSyncValues.Locked"> <summary> TimeNode Sync Enum ( Locked ). <para>When the item is serialized out as xml, its value is "locked".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.DirectionValues"> <summary> Direction </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DirectionValues.Horizontal"> <summary> Horizontal. <para>When the item is serialized out as xml, its value is "horz".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.DirectionValues.Vertical"> <summary> Vertical. <para>When the item is serialized out as xml, its value is "vert".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.OleObjectFollowColorSchemeValues"> <summary> OLE Object to Follow Color Scheme </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.OleObjectFollowColorSchemeValues.None"> <summary> None. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.OleObjectFollowColorSchemeValues.Full"> <summary> Full. <para>When the item is serialized out as xml, its value is "full".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.OleObjectFollowColorSchemeValues.TextAndBackground"> <summary> Text and Background. <para>When the item is serialized out as xml, its value is "textAndBackground".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PhotoAlbumLayoutValues"> <summary> Photo Album Layout Definition </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumLayoutValues.FitToSlide"> <summary> Fit Photos to Slide. <para>When the item is serialized out as xml, its value is "fitToSlide".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumLayoutValues.OnePic"> <summary> 1 Photo per Slide. <para>When the item is serialized out as xml, its value is "1pic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumLayoutValues.TwoPic"> <summary> 2 Photos per Slide. <para>When the item is serialized out as xml, its value is "2pic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumLayoutValues.FourPic"> <summary> 4 Photos per Slide. <para>When the item is serialized out as xml, its value is "4pic".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumLayoutValues.OnePicWithTitle"> <summary> 1 Photo per Slide with Titles. <para>When the item is serialized out as xml, its value is "1picTitle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumLayoutValues.TwoPicWithTitle"> <summary> 2 Photos per Slide with Titles. <para>When the item is serialized out as xml, its value is "2picTitle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumLayoutValues.FourPicWithTitle"> <summary> 4 Photos per Slide with Titles. <para>When the item is serialized out as xml, its value is "4picTitle".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PhotoAlbumFrameShapeValues"> <summary> Photo Album Shape for Photo Mask </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumFrameShapeValues.FrameStyle1"> <summary> Rectangle Photo Frame. <para>When the item is serialized out as xml, its value is "frameStyle1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumFrameShapeValues.FrameStyle2"> <summary> Rounded Rectangle Photo Frame. <para>When the item is serialized out as xml, its value is "frameStyle2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumFrameShapeValues.FrameStyle3"> <summary> Simple White Photo Frame. <para>When the item is serialized out as xml, its value is "frameStyle3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumFrameShapeValues.FrameStyle4"> <summary> Simple Black Photo Frame. <para>When the item is serialized out as xml, its value is "frameStyle4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumFrameShapeValues.FrameStyle5"> <summary> Compound Black Photo Frame. <para>When the item is serialized out as xml, its value is "frameStyle5".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumFrameShapeValues.FrameStyle6"> <summary> Center Shadow Photo Frame. <para>When the item is serialized out as xml, its value is "frameStyle6".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PhotoAlbumFrameShapeValues.FrameStyle7"> <summary> Soft Edge Photo Frame. <para>When the item is serialized out as xml, its value is "frameStyle7".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideSizeValues"> <summary> Slide Size Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Screen4x3"> <summary> Screen 4x3. <para>When the item is serialized out as xml, its value is "screen4x3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Letter"> <summary> Letter. <para>When the item is serialized out as xml, its value is "letter".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.A4"> <summary> A4. <para>When the item is serialized out as xml, its value is "A4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Film35mm"> <summary> 35mm Film. <para>When the item is serialized out as xml, its value is "35mm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Overhead"> <summary> Overhead. <para>When the item is serialized out as xml, its value is "overhead".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Banner"> <summary> Banner. <para>When the item is serialized out as xml, its value is "banner".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Custom"> <summary> Custom. <para>When the item is serialized out as xml, its value is "custom".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Ledger"> <summary> Ledger. <para>When the item is serialized out as xml, its value is "ledger".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.A3"> <summary> A3. <para>When the item is serialized out as xml, its value is "A3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.B4ISO"> <summary> B4ISO. <para>When the item is serialized out as xml, its value is "B4ISO".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.B5ISO"> <summary> B5ISO. <para>When the item is serialized out as xml, its value is "B5ISO".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.B4JIS"> <summary> B4JIS. <para>When the item is serialized out as xml, its value is "B4JIS".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.B5JIS"> <summary> B5JIS. <para>When the item is serialized out as xml, its value is "B5JIS".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.HagakiCard"> <summary> Hagaki Card. <para>When the item is serialized out as xml, its value is "hagakiCard".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Screen16x9"> <summary> Screen 16x9. <para>When the item is serialized out as xml, its value is "screen16x9".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideSizeValues.Screen16x10"> <summary> Screen 16x10. <para>When the item is serialized out as xml, its value is "screen16x10".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CryptProviderValues"> <summary> Cryptographic Provider Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CryptProviderValues.RsaAES"> <summary> RSA AES Encryption Scheme. <para>When the item is serialized out as xml, its value is "rsaAES".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CryptProviderValues.RsaFull"> <summary> RSA Full Encryption Scheme. <para>When the item is serialized out as xml, its value is "rsaFull".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CryptProviderValues.Invalid"> <summary> Invalid Encryption Scheme. <para>When the item is serialized out as xml, its value is "invalid".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CryptAlgorithmClassValues"> <summary> Cryptographic Algorithm Classes </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CryptAlgorithmClassValues.Hash"> <summary> Hash Algorithm Class. <para>When the item is serialized out as xml, its value is "hash".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CryptAlgorithmClassValues.Invalid"> <summary> Invalid Algorithm Class. <para>When the item is serialized out as xml, its value is "invalid".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.CryptAlgorithmValues"> <summary> Cryptographic Algorithm Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CryptAlgorithmValues.TypeAny"> <summary> Any Algorithm Type. <para>When the item is serialized out as xml, its value is "typeAny".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.CryptAlgorithmValues.Invalid"> <summary> Invalid Algorithm Type. <para>When the item is serialized out as xml, its value is "invalid".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.HtmlPublishWebBrowserSupportValues"> <summary> Web browsers supported for HTML output </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.HtmlPublishWebBrowserSupportValues.V4"> <summary> Browser v4. <para>When the item is serialized out as xml, its value is "v4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.HtmlPublishWebBrowserSupportValues.V3"> <summary> Browser v3. <para>When the item is serialized out as xml, its value is "v3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.HtmlPublishWebBrowserSupportValues.V3v4"> <summary> Browser v3v4. <para>When the item is serialized out as xml, its value is "v3v4".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.WebColorValues"> <summary> HTML Slide Navigation Control Colors </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebColorValues.None"> <summary> Non-specific Colors. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebColorValues.Browser"> <summary> Browser Colors. <para>When the item is serialized out as xml, its value is "browser".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebColorValues.PresentationText"> <summary> Presentation Text Colors. <para>When the item is serialized out as xml, its value is "presentationText".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebColorValues.PresentationAccent"> <summary> Presentation Accent Colors. <para>When the item is serialized out as xml, its value is "presentationAccent".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebColorValues.WhiteTextOnBlack"> <summary> White Text on Black Colors. <para>When the item is serialized out as xml, its value is "whiteTextOnBlack".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebColorValues.BlackTextOnWhite"> <summary> Black Text on White Colors. <para>When the item is serialized out as xml, its value is "blackTextOnWhite".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues"> <summary> HTML/Web Screen Size Target </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz544x376"> <summary> HTML/Web Size Enumeration 544x376. <para>When the item is serialized out as xml, its value is "544x376".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz640x480"> <summary> HTML/Web Size Enumeration 640x480. <para>When the item is serialized out as xml, its value is "640x480".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz720x512"> <summary> HTML/Web Size Enumeration 720x515. <para>When the item is serialized out as xml, its value is "720x512".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz800x600"> <summary> HTML/Web Size Enumeration 800x600. <para>When the item is serialized out as xml, its value is "800x600".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz1024x768"> <summary> HTML/Web Size Enumeration 1024x768. <para>When the item is serialized out as xml, its value is "1024x768".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz1152x882"> <summary> HTML/Web Size Enumeration 1152x882. <para>When the item is serialized out as xml, its value is "1152x882".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz1152x900"> <summary> HTML/Web Size Enumeration 1152x900. <para>When the item is serialized out as xml, its value is "1152x900".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz1280x1024"> <summary> HTML/Web Size Enumeration 1280x1024. <para>When the item is serialized out as xml, its value is "1280x1024".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz1600x1200"> <summary> HTML/Web Size Enumeration 1600x1200. <para>When the item is serialized out as xml, its value is "1600x1200".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz1800x1400"> <summary> HTML/Web Size Enumeration 1800x1400. <para>When the item is serialized out as xml, its value is "1800x1400".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.WebScreenSizeValues.Sz1920x1200"> <summary> HTML/Web Size Enumeration 1920x1200. <para>When the item is serialized out as xml, its value is "1920x1200".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PrintOutputValues"> <summary> Default print output </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Slides"> <summary> Slides. <para>When the item is serialized out as xml, its value is "slides".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Handouts1"> <summary> 1 Slide / Handout Page. <para>When the item is serialized out as xml, its value is "handouts1".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Handouts2"> <summary> 2 Slides / Handout Page. <para>When the item is serialized out as xml, its value is "handouts2".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Handouts3"> <summary> 3 Slides / Handout Page. <para>When the item is serialized out as xml, its value is "handouts3".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Handouts4"> <summary> 4 Slides / Handout Page. <para>When the item is serialized out as xml, its value is "handouts4".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Handouts6"> <summary> 6 Slides / Handout Page. <para>When the item is serialized out as xml, its value is "handouts6".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Handouts9"> <summary> 9 Slides / Handout Page. <para>When the item is serialized out as xml, its value is "handouts9".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Notes"> <summary> Notes. <para>When the item is serialized out as xml, its value is "notes".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintOutputValues.Outline"> <summary> Outline. <para>When the item is serialized out as xml, its value is "outline".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PrintColorModeValues"> <summary> Print Color Mode </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintColorModeValues.BlackWhite"> <summary> Black and White Mode. <para>When the item is serialized out as xml, its value is "bw".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintColorModeValues.Gray"> <summary> Grayscale Mode. <para>When the item is serialized out as xml, its value is "gray".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PrintColorModeValues.Color"> <summary> Color Mode. <para>When the item is serialized out as xml, its value is "clr".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PlaceholderValues"> <summary> Placeholder IDs </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Title"> <summary> Title. <para>When the item is serialized out as xml, its value is "title".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Body"> <summary> Body. <para>When the item is serialized out as xml, its value is "body".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.CenteredTitle"> <summary> Centered Title. <para>When the item is serialized out as xml, its value is "ctrTitle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.SubTitle"> <summary> Subtitle. <para>When the item is serialized out as xml, its value is "subTitle".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.DateAndTime"> <summary> Date and Time. <para>When the item is serialized out as xml, its value is "dt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.SlideNumber"> <summary> Slide Number. <para>When the item is serialized out as xml, its value is "sldNum".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Footer"> <summary> Footer. <para>When the item is serialized out as xml, its value is "ftr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Header"> <summary> Header. <para>When the item is serialized out as xml, its value is "hdr".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Object"> <summary> Object. <para>When the item is serialized out as xml, its value is "obj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Chart"> <summary> Chart. <para>When the item is serialized out as xml, its value is "chart".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Table"> <summary> Table. <para>When the item is serialized out as xml, its value is "tbl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.ClipArt"> <summary> Clip Art. <para>When the item is serialized out as xml, its value is "clipArt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Diagram"> <summary> Diagram. <para>When the item is serialized out as xml, its value is "dgm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Media"> <summary> Media. <para>When the item is serialized out as xml, its value is "media".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.SlideImage"> <summary> Slide Image. <para>When the item is serialized out as xml, its value is "sldImg".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderValues.Picture"> <summary> Picture. <para>When the item is serialized out as xml, its value is "pic".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.PlaceholderSizeValues"> <summary> Placeholder Size </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderSizeValues.Full"> <summary> Full. <para>When the item is serialized out as xml, its value is "full".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderSizeValues.Half"> <summary> Half. <para>When the item is serialized out as xml, its value is "half".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.PlaceholderSizeValues.Quarter"> <summary> Quarter. <para>When the item is serialized out as xml, its value is "quarter".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SlideLayoutValues"> <summary> Slide Layout Type </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.Title"> <summary> Slide Layout Type Enumeration ( Title ). <para>When the item is serialized out as xml, its value is "title".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.Text"> <summary> Slide Layout Type Enumeration ( Text ). <para>When the item is serialized out as xml, its value is "tx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TwoColumnText"> <summary> Slide Layout Type Enumeration ( Two Column Text ). <para>When the item is serialized out as xml, its value is "twoColTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.Table"> <summary> Slide Layout Type Enumeration ( Table ). <para>When the item is serialized out as xml, its value is "tbl".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TextAndChart"> <summary> Slide Layout Type Enumeration ( Text and Chart ). <para>When the item is serialized out as xml, its value is "txAndChart".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.ChartAndText"> <summary> Slide Layout Type Enumeration ( Chart and Text ). <para>When the item is serialized out as xml, its value is "chartAndTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.Diagram"> <summary> Slide Layout Type Enumeration ( Diagram ). <para>When the item is serialized out as xml, its value is "dgm".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.Chart"> <summary> Chart. <para>When the item is serialized out as xml, its value is "chart".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TextAndClipArt"> <summary> Text and Clip Art. <para>When the item is serialized out as xml, its value is "txAndClipArt".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.ClipArtAndText"> <summary> Clip Art and Text. <para>When the item is serialized out as xml, its value is "clipArtAndTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TitleOnly"> <summary> Slide Layout Type Enumeration ( Title Only ). <para>When the item is serialized out as xml, its value is "titleOnly".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.Blank"> <summary> Slide Layout Type Enumeration ( Blank ). <para>When the item is serialized out as xml, its value is "blank".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TextAndObject"> <summary> Slide Layout Type Enumeration ( Text and Object ). <para>When the item is serialized out as xml, its value is "txAndObj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.ObjectAndText"> <summary> Slide Layout Type Enumeration ( Object and Text ). <para>When the item is serialized out as xml, its value is "objAndTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.ObjectOnly"> <summary> Object. <para>When the item is serialized out as xml, its value is "objOnly".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.Object"> <summary> Title and Object. <para>When the item is serialized out as xml, its value is "obj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TextAndMedia"> <summary> Slide Layout Type Enumeration ( Text and Media ). <para>When the item is serialized out as xml, its value is "txAndMedia".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.MidiaAndText"> <summary> Slide Layout Type Enumeration ( Media and Text ). <para>When the item is serialized out as xml, its value is "mediaAndTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.ObjectOverText"> <summary> Slide Layout Type Enumeration ( Object over Text). <para>When the item is serialized out as xml, its value is "objOverTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TextOverObject"> <summary> Slide Layout Type Enumeration ( Text over Object). <para>When the item is serialized out as xml, its value is "txOverObj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TextAndTwoObjects"> <summary> Text and Two Objects. <para>When the item is serialized out as xml, its value is "txAndTwoObj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TwoObjectsAndText"> <summary> Two Objects and Text. <para>When the item is serialized out as xml, its value is "twoObjAndTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TwoObjectsOverText"> <summary> Two Objects over Text. <para>When the item is serialized out as xml, its value is "twoObjOverTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.FourObjects"> <summary> Four Objects. <para>When the item is serialized out as xml, its value is "fourObj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.VerticalText"> <summary> Vertical Text. <para>When the item is serialized out as xml, its value is "vertTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.ClipArtAndVerticalText"> <summary> Clip Art and Vertical Text. <para>When the item is serialized out as xml, its value is "clipArtAndVertTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.VerticalTitleAndText"> <summary> Vertical Title and Text. <para>When the item is serialized out as xml, its value is "vertTitleAndTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.VerticalTitleAndTextOverChart"> <summary> Vertical Title and Text Over Chart. <para>When the item is serialized out as xml, its value is "vertTitleAndTxOverChart".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TwoObjects"> <summary> Two Objects. <para>When the item is serialized out as xml, its value is "twoObj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.ObjectAndTwoObjects"> <summary> Object and Two Object. <para>When the item is serialized out as xml, its value is "objAndTwoObj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TwoObjectsAndObject"> <summary> Two Objects and Object. <para>When the item is serialized out as xml, its value is "twoObjAndObj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.Custom"> <summary> Slide Layout Type Enumeration ( Custom ). <para>When the item is serialized out as xml, its value is "cust".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.SectionHeader"> <summary> Section Header. <para>When the item is serialized out as xml, its value is "secHead".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.TwoTextAndTwoObjects"> <summary> Two Text and Two Objects. <para>When the item is serialized out as xml, its value is "twoTxTwoObj".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.ObjectText"> <summary> Title, Object, and Caption. <para>When the item is serialized out as xml, its value is "objTx".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SlideLayoutValues.PictureText"> <summary> Picture and Caption. <para>When the item is serialized out as xml, its value is "picTx".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.SplitterBarStateValues"> <summary> Splitter Bar State </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SplitterBarStateValues.Minimized"> <summary> Min. <para>When the item is serialized out as xml, its value is "minimized".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SplitterBarStateValues.Restored"> <summary> Restored. <para>When the item is serialized out as xml, its value is "restored".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.SplitterBarStateValues.Maximized"> <summary> Max. <para>When the item is serialized out as xml, its value is "maximized".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ViewValues"> <summary> List of View Types </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ViewValues.SlideView"> <summary> Normal Slide View. <para>When the item is serialized out as xml, its value is "sldView".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ViewValues.SlideMasterView"> <summary> Slide Master View. <para>When the item is serialized out as xml, its value is "sldMasterView".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ViewValues.NotesView"> <summary> Notes View. <para>When the item is serialized out as xml, its value is "notesView".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ViewValues.HandoutView"> <summary> Handout View. <para>When the item is serialized out as xml, its value is "handoutView".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ViewValues.NotesMasterView"> <summary> Notes Master View. <para>When the item is serialized out as xml, its value is "notesMasterView".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ViewValues.OutlineView"> <summary> Outline View. <para>When the item is serialized out as xml, its value is "outlineView".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ViewValues.SlideSorterView"> <summary> Slide Sorter View. <para>When the item is serialized out as xml, its value is "sldSorterView".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ViewValues.SlideThumbnailView"> <summary> Slide Thumbnail View. <para>When the item is serialized out as xml, its value is "sldThumbnailView".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.ConformanceClassValues"> <summary> Defines the ConformanceClassValues enumeration. </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ConformanceClassValues.Strict"> <summary> strict. <para>When the item is serialized out as xml, its value is "strict".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.ConformanceClassValues.Transitional"> <summary> transitional. <para>When the item is serialized out as xml, its value is "transitional".</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Presentation.TriggerEventValues"> <summary> Trigger Event </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.None"> <summary> none. <para>When the item is serialized out as xml, its value is "none".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnBegin"> <summary> Trigger Event Enum ( On Begin ). <para>When the item is serialized out as xml, its value is "onBegin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnEnd"> <summary> Trigger Event Enum ( On End ). <para>When the item is serialized out as xml, its value is "onEnd".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.Begin"> <summary> Trigger Event Enum ( Begin ). <para>When the item is serialized out as xml, its value is "begin".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.End"> <summary> Trigger Event Enum ( End ). <para>When the item is serialized out as xml, its value is "end".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnClick"> <summary> Trigger Event Enum ( On Click ). <para>When the item is serialized out as xml, its value is "onClick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnDoubleClick"> <summary> Trigger Event Enum ( On Double Click ). <para>When the item is serialized out as xml, its value is "onDblClick".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnMouseOver"> <summary> Trigger Event Enum ( On Mouse Over ). <para>When the item is serialized out as xml, its value is "onMouseOver".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnMouseOut"> <summary> Trigger Event Enum ( On Mouse Out ). <para>When the item is serialized out as xml, its value is "onMouseOut".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnNext"> <summary> Trigger Event Enum ( On Next ). <para>When the item is serialized out as xml, its value is "onNext".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnPrevious"> <summary> Trigger Event Enum ( On Previous ). <para>When the item is serialized out as xml, its value is "onPrev".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnStopAudio"> <summary> Trigger Event Enum ( On Stop Audio ). <para>When the item is serialized out as xml, its value is "onStopAudio".</para> </summary> </member> <member name="F:DocumentFormat.OpenXml.Presentation.TriggerEventValues.OnMediaBookmark"> <summary> onMediaBookmark. <para>When the item is serialized out as xml, its value is "onMediaBookmark".</para> <para>This item is only available in Office2010.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary"> <summary> <para>Embedded Custom XML Schema Supplementary Data.</para> <para>When the object is serialized out as xml, its qualified name is sl:schemaLibrary.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Schema <sl:schema></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary.#ctor"> <summary> Initializes a new instance of the SchemaLibrary class. </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SchemaLibrary class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SchemaLibrary class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary.#ctor(System.String)"> <summary> Initializes a new instance of the SchemaLibrary class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlSchemaReferences.SchemaLibrary.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema"> <summary> <para>Custom XML Schema Reference.</para> <para>When the object is serialized out as xml, its qualified name is sl:schema.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema.#ctor"> <summary> Initializes a new instance of the Schema class. </summary> </member> <member name="M:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema.Uri"> <summary> <para> Custom XML Schema Namespace.</para> <para>Represents the attribte in schema: sl:uri </para> </summary> <remark> xmlns:sl=http://schemas.openxmlformats.org/schemaLibrary/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema.ManifestLocation"> <summary> <para> Resource File Location.</para> <para>Represents the attribte in schema: sl:manifestLocation </para> </summary> <remark> xmlns:sl=http://schemas.openxmlformats.org/schemaLibrary/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.CustomXmlSchemaReferences.Schema.SchemaLocation"> <summary> <para> Custom XML Schema Location.</para> <para>Represents the attribte in schema: sl:schemaLocation </para> </summary> <remark> xmlns:sl=http://schemas.openxmlformats.org/schemaLibrary/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Extension"> <summary> <para>Extension.</para> <para>When the object is serialized out as xml, its qualified name is x:ext.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extension.#ctor"> <summary> Initializes a new instance of the Extension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extension.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Extension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extension.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Extension class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extension.#ctor(System.String)"> <summary> Initializes a new instance of the Extension class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Extension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Extension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Extension.Uri"> <summary> <para> URI.</para> <para>Represents the attribte in schema: uri </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CalculationChain"> <summary> <para>Calculation Chain Info. It is the root element of CalculationChainPart.</para> <para>When the object is serialized out as xml, its qualified name is x:calcChain.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CalculationCell <x:c></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.#ctor(DocumentFormat.OpenXml.Packaging.CalculationChainPart)"> <summary> CalculationChain constructor </summary> <param name="ownerPart">The owner part of the CalculationChain</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.Load(DocumentFormat.OpenXml.Packaging.CalculationChainPart)"> <summary> Loads the DOM from the CalculationChainPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CalculationChain class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CalculationChain class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.#ctor(System.String)"> <summary> Initializes a new instance of the CalculationChain class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.#ctor"> <summary> Initializes a new instance of the CalculationChain class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.Save(DocumentFormat.OpenXml.Packaging.CalculationChainPart)"> <summary> Saves the DOM into the CalculationChainPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationChain.CalculationChainPart"> <summary> Gets the CalculationChainPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Comments"> <summary> <para>Comments. It is the root element of WorksheetCommentsPart.</para> <para>When the object is serialized out as xml, its qualified name is x:comments.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Authors <x:authors></description></item> <item><description>CommentList <x:commentList></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.#ctor(DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart)"> <summary> Comments constructor </summary> <param name="ownerPart">The owner part of the Comments</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.Load(DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart)"> <summary> Loads the DOM from the WorksheetCommentsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Comments class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Comments class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.#ctor(System.String)"> <summary> Initializes a new instance of the Comments class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.#ctor"> <summary> Initializes a new instance of the Comments class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.Save(DocumentFormat.OpenXml.Packaging.WorksheetCommentsPart)"> <summary> Saves the DOM into the WorksheetCommentsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comments.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comments.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comments.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comments.WorksheetCommentsPart"> <summary> Gets the WorksheetCommentsPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comments.Authors"> <summary> <para> Authors.</para> <para>Represents the element tag in schema: x:authors </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comments.CommentList"> <summary> <para> List of Comments.</para> <para>Represents the element tag in schema: x:commentList </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comments.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.MapInfo"> <summary> <para>XML Mapping. It is the root element of CustomXmlMappingsPart.</para> <para>When the object is serialized out as xml, its qualified name is x:MapInfo.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Schema <x:Schema></description></item> <item><description>Map <x:Map></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.#ctor(DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart)"> <summary> MapInfo constructor </summary> <param name="ownerPart">The owner part of the MapInfo</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.Load(DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart)"> <summary> Loads the DOM from the CustomXmlMappingsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MapInfo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MapInfo class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.#ctor(System.String)"> <summary> Initializes a new instance of the MapInfo class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.#ctor"> <summary> Initializes a new instance of the MapInfo class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.Save(DocumentFormat.OpenXml.Packaging.CustomXmlMappingsPart)"> <summary> Saves the DOM into the CustomXmlMappingsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MapInfo.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MapInfo.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MapInfo.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MapInfo.SelectionNamespaces"> <summary> <para> Prefix Mappings for XPath Expressions.</para> <para>Represents the attribte in schema: SelectionNamespaces </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MapInfo.CustomXmlMappingsPart"> <summary> Gets the CustomXmlMappingsPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Connections"> <summary> <para>Connections. It is the root element of ConnectionsPart.</para> <para>When the object is serialized out as xml, its qualified name is x:connections.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Connection <x:connection></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.#ctor(DocumentFormat.OpenXml.Packaging.ConnectionsPart)"> <summary> Connections constructor </summary> <param name="ownerPart">The owner part of the Connections</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.Load(DocumentFormat.OpenXml.Packaging.ConnectionsPart)"> <summary> Loads the DOM from the ConnectionsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Connections class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Connections class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.#ctor(System.String)"> <summary> Initializes a new instance of the Connections class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.#ctor"> <summary> Initializes a new instance of the Connections class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.Save(DocumentFormat.OpenXml.Packaging.ConnectionsPart)"> <summary> Saves the DOM into the ConnectionsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connections.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connections.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connections.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connections.ConnectionsPart"> <summary> Gets the ConnectionsPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition"> <summary> <para>PivotCache Definition. It is the root element of PivotTableCacheDefinitionPart.</para> <para>When the object is serialized out as xml, its qualified name is x:pivotCacheDefinition.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CacheSource <x:cacheSource></description></item> <item><description>CacheFields <x:cacheFields></description></item> <item><description>CacheHierarchies <x:cacheHierarchies></description></item> <item><description>Kpis <x:kpis></description></item> <item><description>TupleCache <x:tupleCache></description></item> <item><description>CalculatedItems <x:calculatedItems></description></item> <item><description>CalculatedMembers <x:calculatedMembers></description></item> <item><description>Dimensions <x:dimensions></description></item> <item><description>MeasureGroups <x:measureGroups></description></item> <item><description>Maps <x:maps></description></item> <item><description>PivotCacheDefinitionExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.#ctor(DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart)"> <summary> PivotCacheDefinition constructor </summary> <param name="ownerPart">The owner part of the PivotCacheDefinition</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.Load(DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart)"> <summary> Loads the DOM from the PivotTableCacheDefinitionPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotCacheDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotCacheDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.#ctor(System.String)"> <summary> Initializes a new instance of the PivotCacheDefinition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.#ctor"> <summary> Initializes a new instance of the PivotCacheDefinition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.Save(DocumentFormat.OpenXml.Packaging.PivotTableCacheDefinitionPart)"> <summary> Saves the DOM into the PivotTableCacheDefinitionPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.Id"> <summary> <para> Relationship Identifier.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.Invalid"> <summary> <para> Invalid Cache.</para> <para>Represents the attribte in schema: invalid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.SaveData"> <summary> <para> Save Pivot Records.</para> <para>Represents the attribte in schema: saveData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.RefreshOnLoad"> <summary> <para> Refresh On Load.</para> <para>Represents the attribte in schema: refreshOnLoad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.OptimizeMemory"> <summary> <para> Optimize Cache for Memory.</para> <para>Represents the attribte in schema: optimizeMemory </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.EnableRefresh"> <summary> <para> Enable PivotCache Refresh.</para> <para>Represents the attribte in schema: enableRefresh </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.RefreshedBy"> <summary> <para> Last Refreshed By.</para> <para>Represents the attribte in schema: refreshedBy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.LastRefreshedDateIso"> <summary> <para> refreshedDateIso, this property is only available in Office2010.</para> <para>Represents the attribte in schema: refreshedDateIso </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.RefreshedDate"> <summary> <para> PivotCache Last Refreshed Date.</para> <para>Represents the attribte in schema: refreshedDate </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.BackgroundQuery"> <summary> <para> Background Query.</para> <para>Represents the attribte in schema: backgroundQuery </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.MissingItemsLimit"> <summary> <para> Missing Items Limit.</para> <para>Represents the attribte in schema: missingItemsLimit </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.CreatedVersion"> <summary> <para> PivotCache Created Version.</para> <para>Represents the attribte in schema: createdVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.RefreshedVersion"> <summary> <para> PivotCache Last Refreshed Version.</para> <para>Represents the attribte in schema: refreshedVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.MinRefreshableVersion"> <summary> <para> Minimum Version Required for Refresh.</para> <para>Represents the attribte in schema: minRefreshableVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.RecordCount"> <summary> <para> PivotCache Record Count.</para> <para>Represents the attribte in schema: recordCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.UpgradeOnRefresh"> <summary> <para> Upgrade PivotCache on Refresh.</para> <para>Represents the attribte in schema: upgradeOnRefresh </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.IsTupleCache"> <summary> <para> Stores Cache for OLAP Functions.</para> <para>Represents the attribte in schema: tupleCache </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.SupportSubquery"> <summary> <para> Supports Subqueries.</para> <para>Represents the attribte in schema: supportSubquery </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.SupportAdvancedDrill"> <summary> <para> Supports Attribute Drilldown.</para> <para>Represents the attribte in schema: supportAdvancedDrill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.PivotTableCacheDefinitionPart"> <summary> Gets the PivotTableCacheDefinitionPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.CacheSource"> <summary> <para> PivotCache Source Description.</para> <para>Represents the element tag in schema: x:cacheSource </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.CacheFields"> <summary> <para> PivotCache Fields.</para> <para>Represents the element tag in schema: x:cacheFields </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.CacheHierarchies"> <summary> <para> PivotCache Hierarchies.</para> <para>Represents the element tag in schema: x:cacheHierarchies </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.Kpis"> <summary> <para> OLAP KPIs.</para> <para>Represents the element tag in schema: x:kpis </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.TupleCache"> <summary> <para> Tuple Cache.</para> <para>Represents the element tag in schema: x:tupleCache </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.CalculatedItems"> <summary> <para> Calculated Items.</para> <para>Represents the element tag in schema: x:calculatedItems </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.CalculatedMembers"> <summary> <para> Calculated Members.</para> <para>Represents the element tag in schema: x:calculatedMembers </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.Dimensions"> <summary> <para> OLAP Dimensions.</para> <para>Represents the element tag in schema: x:dimensions </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.MeasureGroups"> <summary> <para> OLAP Measure Groups.</para> <para>Represents the element tag in schema: x:measureGroups </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.Maps"> <summary> <para> OLAP Measure Group.</para> <para>Represents the element tag in schema: x:maps </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheDefinition.PivotCacheDefinitionExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords"> <summary> <para>PivotCache Records. It is the root element of PivotTableCacheRecordsPart.</para> <para>When the object is serialized out as xml, its qualified name is x:pivotCacheRecords.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotCacheRecord <x:r></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.#ctor(DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart)"> <summary> PivotCacheRecords constructor </summary> <param name="ownerPart">The owner part of the PivotCacheRecords</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.Load(DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart)"> <summary> Loads the DOM from the PivotTableCacheRecordsPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotCacheRecords class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotCacheRecords class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.#ctor(System.String)"> <summary> Initializes a new instance of the PivotCacheRecords class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.#ctor"> <summary> Initializes a new instance of the PivotCacheRecords class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.Save(DocumentFormat.OpenXml.Packaging.PivotTableCacheRecordsPart)"> <summary> Saves the DOM into the PivotTableCacheRecordsPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.Count"> <summary> <para> PivotCache Records Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecords.PivotTableCacheRecordsPart"> <summary> Gets the PivotTableCacheRecordsPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition"> <summary> <para>PivotTable Definition. It is the root element of PivotTablePart.</para> <para>When the object is serialized out as xml, its qualified name is x:pivotTableDefinition.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Location <x:location></description></item> <item><description>PivotFields <x:pivotFields></description></item> <item><description>RowFields <x:rowFields></description></item> <item><description>RowItems <x:rowItems></description></item> <item><description>ColumnFields <x:colFields></description></item> <item><description>ColumnItems <x:colItems></description></item> <item><description>PageFields <x:pageFields></description></item> <item><description>DataFields <x:dataFields></description></item> <item><description>Formats <x:formats></description></item> <item><description>ConditionalFormats <x:conditionalFormats></description></item> <item><description>ChartFormats <x:chartFormats></description></item> <item><description>PivotHierarchies <x:pivotHierarchies></description></item> <item><description>PivotTableStyle <x:pivotTableStyleInfo></description></item> <item><description>PivotFilters <x:filters></description></item> <item><description>RowHierarchiesUsage <x:rowHierarchiesUsage></description></item> <item><description>ColumnHierarchiesUsage <x:colHierarchiesUsage></description></item> <item><description>PivotTableDefinitionExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.#ctor(DocumentFormat.OpenXml.Packaging.PivotTablePart)"> <summary> PivotTableDefinition constructor </summary> <param name="ownerPart">The owner part of the PivotTableDefinition</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Load(DocumentFormat.OpenXml.Packaging.PivotTablePart)"> <summary> Loads the DOM from the PivotTablePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotTableDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotTableDefinition class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.#ctor(System.String)"> <summary> Initializes a new instance of the PivotTableDefinition class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.#ctor"> <summary> Initializes a new instance of the PivotTableDefinition class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Save(DocumentFormat.OpenXml.Packaging.PivotTablePart)"> <summary> Saves the DOM into the PivotTablePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.CacheId"> <summary> <para> PivotCache Definition Id.</para> <para>Represents the attribte in schema: cacheId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.DataOnRows"> <summary> <para> Data On Rows.</para> <para>Represents the attribte in schema: dataOnRows </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.DataPosition"> <summary> <para> Default Data Field Position.</para> <para>Represents the attribte in schema: dataPosition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.AutoFormatId"> <summary> <para> Auto Format Id.</para> <para>Represents the attribte in schema: autoFormatId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ApplyNumberFormats"> <summary> <para> Apply Number Formats.</para> <para>Represents the attribte in schema: applyNumberFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ApplyBorderFormats"> <summary> <para> Apply Border Formats.</para> <para>Represents the attribte in schema: applyBorderFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ApplyFontFormats"> <summary> <para> Apply Font Formats.</para> <para>Represents the attribte in schema: applyFontFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ApplyPatternFormats"> <summary> <para> Apply Pattern Formats.</para> <para>Represents the attribte in schema: applyPatternFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ApplyAlignmentFormats"> <summary> <para> Apply Alignment Formats.</para> <para>Represents the attribte in schema: applyAlignmentFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ApplyWidthHeightFormats"> <summary> <para> Apply Width / Height Formats.</para> <para>Represents the attribte in schema: applyWidthHeightFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.DataCaption"> <summary> <para> Data Field Header Name.</para> <para>Represents the attribte in schema: dataCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.GrandTotalCaption"> <summary> <para> Grand Totals Caption.</para> <para>Represents the attribte in schema: grandTotalCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ErrorCaption"> <summary> <para> Error Caption.</para> <para>Represents the attribte in schema: errorCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowError"> <summary> <para> Show Error.</para> <para>Represents the attribte in schema: showError </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.MissingCaption"> <summary> <para> Caption for Missing Values.</para> <para>Represents the attribte in schema: missingCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowMissing"> <summary> <para> Show Missing.</para> <para>Represents the attribte in schema: showMissing </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PageStyle"> <summary> <para> Page Header Style Name.</para> <para>Represents the attribte in schema: pageStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PivotTableStyleName"> <summary> <para> Table Style Name.</para> <para>Represents the attribte in schema: pivotTableStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.VacatedStyle"> <summary> <para> Vacated Style.</para> <para>Represents the attribte in schema: vacatedStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Tag"> <summary> <para> PivotTable Custom String.</para> <para>Represents the attribte in schema: tag </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.UpdatedVersion"> <summary> <para> PivotTable Last Updated Version.</para> <para>Represents the attribte in schema: updatedVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.MinRefreshableVersion"> <summary> <para> Minimum Refreshable Version.</para> <para>Represents the attribte in schema: minRefreshableVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.AsteriskTotals"> <summary> <para> Asterisk Totals.</para> <para>Represents the attribte in schema: asteriskTotals </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowItems"> <summary> <para> Show Item Names.</para> <para>Represents the attribte in schema: showItems </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.EditData"> <summary> <para> Allow Edit Data.</para> <para>Represents the attribte in schema: editData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.DisableFieldList"> <summary> <para> Disable Field List.</para> <para>Represents the attribte in schema: disableFieldList </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowCalculatedMembers"> <summary> <para> Show Calculated Members.</para> <para>Represents the attribte in schema: showCalcMbrs </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.VisualTotals"> <summary> <para> Total Visual Data.</para> <para>Represents the attribte in schema: visualTotals </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowMultipleLabel"> <summary> <para> Show Multiple Labels.</para> <para>Represents the attribte in schema: showMultipleLabel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowDataDropDown"> <summary> <para> Show Drop Down.</para> <para>Represents the attribte in schema: showDataDropDown </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowDrill"> <summary> <para> Show Expand Collapse.</para> <para>Represents the attribte in schema: showDrill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PrintDrill"> <summary> <para> Print Drill Indicators.</para> <para>Represents the attribte in schema: printDrill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowMemberPropertyTips"> <summary> <para> Show Member Property ToolTips.</para> <para>Represents the attribte in schema: showMemberPropertyTips </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowDataTips"> <summary> <para> Show ToolTips on Data.</para> <para>Represents the attribte in schema: showDataTips </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.EnableWizard"> <summary> <para> Enable PivotTable Wizard.</para> <para>Represents the attribte in schema: enableWizard </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.EnableDrill"> <summary> <para> Enable Drill Down.</para> <para>Represents the attribte in schema: enableDrill </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.EnableFieldProperties"> <summary> <para> Enable Field Properties.</para> <para>Represents the attribte in schema: enableFieldProperties </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PreserveFormatting"> <summary> <para> Preserve Formatting.</para> <para>Represents the attribte in schema: preserveFormatting </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.UseAutoFormatting"> <summary> <para> Auto Formatting.</para> <para>Represents the attribte in schema: useAutoFormatting </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PageWrap"> <summary> <para> Page Wrap.</para> <para>Represents the attribte in schema: pageWrap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PageOverThenDown"> <summary> <para> Page Over Then Down.</para> <para>Represents the attribte in schema: pageOverThenDown </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.SubtotalHiddenItems"> <summary> <para> Subtotal Hidden Items.</para> <para>Represents the attribte in schema: subtotalHiddenItems </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.RowGrandTotals"> <summary> <para> Row Grand Totals.</para> <para>Represents the attribte in schema: rowGrandTotals </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ColumnGrandTotals"> <summary> <para> Grand Totals On Columns.</para> <para>Represents the attribte in schema: colGrandTotals </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.FieldPrintTitles"> <summary> <para> Field Print Titles.</para> <para>Represents the attribte in schema: fieldPrintTitles </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ItemPrintTitles"> <summary> <para> Item Print Titles.</para> <para>Represents the attribte in schema: itemPrintTitles </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.MergeItem"> <summary> <para> Merge Titles.</para> <para>Represents the attribte in schema: mergeItem </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowDropZones"> <summary> <para> Show Drop Zones.</para> <para>Represents the attribte in schema: showDropZones </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.CreatedVersion"> <summary> <para> PivotCache Created Version.</para> <para>Represents the attribte in schema: createdVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Indent"> <summary> <para> Indentation for Compact Axis.</para> <para>Represents the attribte in schema: indent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowEmptyRow"> <summary> <para> Show Empty Row.</para> <para>Represents the attribte in schema: showEmptyRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowEmptyColumn"> <summary> <para> Show Empty Column.</para> <para>Represents the attribte in schema: showEmptyCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ShowHeaders"> <summary> <para> Show Field Headers.</para> <para>Represents the attribte in schema: showHeaders </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Compact"> <summary> <para> Compact New Fields.</para> <para>Represents the attribte in schema: compact </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Outline"> <summary> <para> Outline New Fields.</para> <para>Represents the attribte in schema: outline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.OutlineData"> <summary> <para> Outline Data Fields.</para> <para>Represents the attribte in schema: outlineData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.CompactData"> <summary> <para> Compact Data.</para> <para>Represents the attribte in schema: compactData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Published"> <summary> <para> Data Fields Published.</para> <para>Represents the attribte in schema: published </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.GridDropZones"> <summary> <para> Enable Drop Zones.</para> <para>Represents the attribte in schema: gridDropZones </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.StopImmersiveUi"> <summary> <para> Stop Immersive UI.</para> <para>Represents the attribte in schema: immersive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.MultipleFieldFilters"> <summary> <para> Multiple Field Filters.</para> <para>Represents the attribte in schema: multipleFieldFilters </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ChartFormat"> <summary> <para> Chart Format Id.</para> <para>Represents the attribte in schema: chartFormat </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.RowHeaderCaption"> <summary> <para> Row Header Caption.</para> <para>Represents the attribte in schema: rowHeaderCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ColumnHeaderCaption"> <summary> <para> Column Header Caption.</para> <para>Represents the attribte in schema: colHeaderCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.FieldListSortAscending"> <summary> <para> Default Sort Order.</para> <para>Represents the attribte in schema: fieldListSortAscending </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.CustomListSort"> <summary> <para> Custom List AutoSort.</para> <para>Represents the attribte in schema: customListSort </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PivotTablePart"> <summary> Gets the PivotTablePart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Location"> <summary> <para> PivotTable Location.</para> <para>Represents the element tag in schema: x:location </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PivotFields"> <summary> <para> PivotTable Fields.</para> <para>Represents the element tag in schema: x:pivotFields </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.RowFields"> <summary> <para> Row Fields.</para> <para>Represents the element tag in schema: x:rowFields </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.RowItems"> <summary> <para> Row Items.</para> <para>Represents the element tag in schema: x:rowItems </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ColumnFields"> <summary> <para> Column Fields.</para> <para>Represents the element tag in schema: x:colFields </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ColumnItems"> <summary> <para> Column Items.</para> <para>Represents the element tag in schema: x:colItems </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PageFields"> <summary> <para> Page Field Items.</para> <para>Represents the element tag in schema: x:pageFields </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.DataFields"> <summary> <para> Data Fields.</para> <para>Represents the element tag in schema: x:dataFields </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.Formats"> <summary> <para> PivotTable Formats.</para> <para>Represents the element tag in schema: x:formats </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ConditionalFormats"> <summary> <para> Conditional Formats.</para> <para>Represents the element tag in schema: x:conditionalFormats </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ChartFormats"> <summary> <para> PivotChart Formats.</para> <para>Represents the element tag in schema: x:chartFormats </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PivotHierarchies"> <summary> <para> PivotTable OLAP Hierarchies.</para> <para>Represents the element tag in schema: x:pivotHierarchies </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PivotTableStyle"> <summary> <para> PivotTable Style.</para> <para>Represents the element tag in schema: x:pivotTableStyleInfo </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PivotFilters"> <summary> <para> Filters.</para> <para>Represents the element tag in schema: x:filters </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.RowHierarchiesUsage"> <summary> <para> Row OLAP Hierarchy References.</para> <para>Represents the element tag in schema: x:rowHierarchiesUsage </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.ColumnHierarchiesUsage"> <summary> <para> Column OLAP Hierarchy References.</para> <para>Represents the element tag in schema: x:colHierarchiesUsage </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotTableDefinition.PivotTableDefinitionExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.QueryTable"> <summary> <para>Query Table. It is the root element of QueryTablePart.</para> <para>When the object is serialized out as xml, its qualified name is x:queryTable.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>QueryTableRefresh <x:queryTableRefresh></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.#ctor(DocumentFormat.OpenXml.Packaging.QueryTablePart)"> <summary> QueryTable constructor </summary> <param name="ownerPart">The owner part of the QueryTable</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.Load(DocumentFormat.OpenXml.Packaging.QueryTablePart)"> <summary> Loads the DOM from the QueryTablePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QueryTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QueryTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.#ctor(System.String)"> <summary> Initializes a new instance of the QueryTable class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.#ctor"> <summary> Initializes a new instance of the QueryTable class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.Save(DocumentFormat.OpenXml.Packaging.QueryTablePart)"> <summary> Saves the DOM into the QueryTablePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTable.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.Name"> <summary> <para> QueryTable Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.Headers"> <summary> <para> First Row Column Titles.</para> <para>Represents the attribte in schema: headers </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.RowNumbers"> <summary> <para> Row Numbers.</para> <para>Represents the attribte in schema: rowNumbers </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.DisableRefresh"> <summary> <para> Disable Refresh.</para> <para>Represents the attribte in schema: disableRefresh </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.BackgroundRefresh"> <summary> <para> Background Refresh.</para> <para>Represents the attribte in schema: backgroundRefresh </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.FirstBackgroundRefresh"> <summary> <para> First Background Refresh.</para> <para>Represents the attribte in schema: firstBackgroundRefresh </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.RefreshOnLoad"> <summary> <para> Refresh On Load.</para> <para>Represents the attribte in schema: refreshOnLoad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.GrowShrinkType"> <summary> <para> Grow Shrink Type.</para> <para>Represents the attribte in schema: growShrinkType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.FillFormulas"> <summary> <para> Fill Adjacent Formulas.</para> <para>Represents the attribte in schema: fillFormulas </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.RemoveDataOnSave"> <summary> <para> Remove Data On Save.</para> <para>Represents the attribte in schema: removeDataOnSave </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.DisableEdit"> <summary> <para> Disable Edit.</para> <para>Represents the attribte in schema: disableEdit </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.PreserveFormatting"> <summary> <para> Preserve Formatting On Refresh.</para> <para>Represents the attribte in schema: preserveFormatting </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.AdjustColumnWidth"> <summary> <para> Adjust Column Width On Refresh.</para> <para>Represents the attribte in schema: adjustColumnWidth </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.Intermediate"> <summary> <para> Intermediate.</para> <para>Represents the attribte in schema: intermediate </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ConnectionId"> <summary> <para> Connection Id.</para> <para>Represents the attribte in schema: connectionId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.AutoFormatId"> <summary> <para> Auto Format Id.</para> <para>Represents the attribte in schema: autoFormatId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ApplyNumberFormats"> <summary> <para> Apply Number Formats.</para> <para>Represents the attribte in schema: applyNumberFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ApplyBorderFormats"> <summary> <para> Apply Border Formats.</para> <para>Represents the attribte in schema: applyBorderFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ApplyFontFormats"> <summary> <para> Apply Font Formats.</para> <para>Represents the attribte in schema: applyFontFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ApplyPatternFormats"> <summary> <para> Apply Pattern Formats.</para> <para>Represents the attribte in schema: applyPatternFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ApplyAlignmentFormats"> <summary> <para> Apply Alignment Formats.</para> <para>Represents the attribte in schema: applyAlignmentFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ApplyWidthHeightFormats"> <summary> <para> Apply Width / Height Formats.</para> <para>Represents the attribte in schema: applyWidthHeightFormats </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.QueryTablePart"> <summary> Gets the QueryTablePart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.QueryTableRefresh"> <summary> <para> QueryTable Refresh Information.</para> <para>Represents the element tag in schema: x:queryTableRefresh </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTable.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable"> <summary> <para>Shared String Table. It is the root element of SharedStringTablePart.</para> <para>When the object is serialized out as xml, its qualified name is x:sst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SharedStringItem <x:si></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.#ctor(DocumentFormat.OpenXml.Packaging.SharedStringTablePart)"> <summary> SharedStringTable constructor </summary> <param name="ownerPart">The owner part of the SharedStringTable</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.Load(DocumentFormat.OpenXml.Packaging.SharedStringTablePart)"> <summary> Loads the DOM from the SharedStringTablePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SharedStringTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SharedStringTable class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.#ctor(System.String)"> <summary> Initializes a new instance of the SharedStringTable class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.#ctor"> <summary> Initializes a new instance of the SharedStringTable class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.Save(DocumentFormat.OpenXml.Packaging.SharedStringTablePart)"> <summary> Saves the DOM into the SharedStringTablePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.Count"> <summary> <para> String Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.UniqueCount"> <summary> <para> Unique String Count.</para> <para>Represents the attribte in schema: uniqueCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SharedStringTable.SharedStringTablePart"> <summary> Gets the SharedStringTablePart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Headers"> <summary> <para>Revision Headers. It is the root element of WorkbookRevisionHeaderPart.</para> <para>When the object is serialized out as xml, its qualified name is x:headers.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Header <x:header></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.#ctor(DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart)"> <summary> Headers constructor </summary> <param name="ownerPart">The owner part of the Headers</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.Load(DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart)"> <summary> Loads the DOM from the WorkbookRevisionHeaderPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Headers class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Headers class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.#ctor(System.String)"> <summary> Initializes a new instance of the Headers class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.#ctor"> <summary> Initializes a new instance of the Headers class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.Save(DocumentFormat.OpenXml.Packaging.WorkbookRevisionHeaderPart)"> <summary> Saves the DOM into the WorkbookRevisionHeaderPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Headers.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.Guid"> <summary> <para> Last Revision GUID.</para> <para>Represents the attribte in schema: guid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.LastGuid"> <summary> <para> Last GUID.</para> <para>Represents the attribte in schema: lastGuid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.Shared"> <summary> <para> Shared Workbook.</para> <para>Represents the attribte in schema: shared </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.DiskRevisions"> <summary> <para> Disk Revisions.</para> <para>Represents the attribte in schema: diskRevisions </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.History"> <summary> <para> History.</para> <para>Represents the attribte in schema: history </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.TrackRevisions"> <summary> <para> Track Revisions.</para> <para>Represents the attribte in schema: trackRevisions </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.Exclusive"> <summary> <para> Exclusive Mode.</para> <para>Represents the attribte in schema: exclusive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.RevisionId"> <summary> <para> Revision Id.</para> <para>Represents the attribte in schema: revisionId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.Version"> <summary> <para> Version.</para> <para>Represents the attribte in schema: version </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.KeepChangeHistory"> <summary> <para> Keep Change History.</para> <para>Represents the attribte in schema: keepChangeHistory </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.Protected"> <summary> <para> Protected.</para> <para>Represents the attribte in schema: protected </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.PreserveHistory"> <summary> <para> Preserve History.</para> <para>Represents the attribte in schema: preserveHistory </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Headers.WorkbookRevisionHeaderPart"> <summary> Gets the WorkbookRevisionHeaderPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Revisions"> <summary> <para>Revisions. It is the root element of WorkbookRevisionLogPart.</para> <para>When the object is serialized out as xml, its qualified name is x:revisions.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RevisionRowColumn <x:rrc></description></item> <item><description>RevisionMove <x:rm></description></item> <item><description>RevisionCustomView <x:rcv></description></item> <item><description>RevisionSheetName <x:rsnm></description></item> <item><description>RevisionInsertSheet <x:ris></description></item> <item><description>RevisionCellChange <x:rcc></description></item> <item><description>RevisionFormat <x:rfmt></description></item> <item><description>RevisionAutoFormat <x:raf></description></item> <item><description>RevisionDefinedName <x:rdn></description></item> <item><description>RevisionComment <x:rcmt></description></item> <item><description>RevisionQueryTable <x:rqt></description></item> <item><description>RevisionConflict <x:rcft></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.#ctor(DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart)"> <summary> Revisions constructor </summary> <param name="ownerPart">The owner part of the Revisions</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.Load(DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart)"> <summary> Loads the DOM from the WorkbookRevisionLogPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Revisions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Revisions class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.#ctor(System.String)"> <summary> Initializes a new instance of the Revisions class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.#ctor"> <summary> Initializes a new instance of the Revisions class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.Save(DocumentFormat.OpenXml.Packaging.WorkbookRevisionLogPart)"> <summary> Saves the DOM into the WorkbookRevisionLogPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Revisions.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Revisions.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Revisions.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Revisions.WorkbookRevisionLogPart"> <summary> Gets the WorkbookRevisionLogPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Users"> <summary> <para>User List. It is the root element of WorkbookUserDataPart.</para> <para>When the object is serialized out as xml, its qualified name is x:users.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>UserInfo <x:userInfo></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.#ctor(DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart)"> <summary> Users constructor </summary> <param name="ownerPart">The owner part of the Users</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.Load(DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart)"> <summary> Loads the DOM from the WorkbookUserDataPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Users class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Users class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.#ctor(System.String)"> <summary> Initializes a new instance of the Users class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.#ctor"> <summary> Initializes a new instance of the Users class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.Save(DocumentFormat.OpenXml.Packaging.WorkbookUserDataPart)"> <summary> Saves the DOM into the WorkbookUserDataPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Users.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Users.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Users.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Users.Count"> <summary> <para> Active User Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Users.WorkbookUserDataPart"> <summary> Gets the WorkbookUserDataPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Worksheet"> <summary> <para>Worksheet. It is the root element of WorksheetPart.</para> <para>When the object is serialized out as xml, its qualified name is x:worksheet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SheetProperties <x:sheetPr></description></item> <item><description>SheetDimension <x:dimension></description></item> <item><description>SheetViews <x:sheetViews></description></item> <item><description>SheetFormatProperties <x:sheetFormatPr></description></item> <item><description>Columns <x:cols></description></item> <item><description>SheetData <x:sheetData></description></item> <item><description>SheetCalculationProperties <x:sheetCalcPr></description></item> <item><description>SheetProtection <x:sheetProtection></description></item> <item><description>ProtectedRanges <x:protectedRanges></description></item> <item><description>Scenarios <x:scenarios></description></item> <item><description>AutoFilter <x:autoFilter></description></item> <item><description>SortState <x:sortState></description></item> <item><description>DataConsolidate <x:dataConsolidate></description></item> <item><description>CustomSheetViews <x:customSheetViews></description></item> <item><description>MergeCells <x:mergeCells></description></item> <item><description>PhoneticProperties <x:phoneticPr></description></item> <item><description>ConditionalFormatting <x:conditionalFormatting></description></item> <item><description>DataValidations <x:dataValidations></description></item> <item><description>Hyperlinks <x:hyperlinks></description></item> <item><description>PrintOptions <x:printOptions></description></item> <item><description>PageMargins <x:pageMargins></description></item> <item><description>PageSetup <x:pageSetup></description></item> <item><description>HeaderFooter <x:headerFooter></description></item> <item><description>RowBreaks <x:rowBreaks></description></item> <item><description>ColumnBreaks <x:colBreaks></description></item> <item><description>CustomProperties <x:customProperties></description></item> <item><description>CellWatches <x:cellWatches></description></item> <item><description>IgnoredErrors <x:ignoredErrors></description></item> <item><description>SmartTags <x:smartTags></description></item> <item><description>Drawing <x:drawing></description></item> <item><description>LegacyDrawing <x:legacyDrawing></description></item> <item><description>LegacyDrawingHeaderFooter <x:legacyDrawingHF></description></item> <item><description>DrawingHeaderFooter <x:drawingHF></description></item> <item><description>Picture <x:picture></description></item> <item><description>OleObjects <x:oleObjects></description></item> <item><description>Controls <x:controls></description></item> <item><description>WebPublishItems <x:webPublishItems></description></item> <item><description>TableParts <x:tableParts></description></item> <item><description>WorksheetExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.#ctor(DocumentFormat.OpenXml.Packaging.WorksheetPart)"> <summary> Worksheet constructor </summary> <param name="ownerPart">The owner part of the Worksheet</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.Load(DocumentFormat.OpenXml.Packaging.WorksheetPart)"> <summary> Loads the DOM from the WorksheetPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Worksheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Worksheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.#ctor(System.String)"> <summary> Initializes a new instance of the Worksheet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.#ctor"> <summary> Initializes a new instance of the Worksheet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.Save(DocumentFormat.OpenXml.Packaging.WorksheetPart)"> <summary> Saves the DOM into the WorksheetPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Worksheet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Worksheet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Worksheet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Worksheet.WorksheetPart"> <summary> Gets the WorksheetPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Worksheet.SheetProperties"> <summary> <para> Worksheet Properties.</para> <para>Represents the element tag in schema: x:sheetPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Worksheet.SheetDimension"> <summary> <para> Worksheet Dimensions.</para> <para>Represents the element tag in schema: x:dimension </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Worksheet.SheetViews"> <summary> <para> Sheet Views.</para> <para>Represents the element tag in schema: x:sheetViews </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Worksheet.SheetFormatProperties"> <summary> <para> Sheet Format Properties.</para> <para>Represents the element tag in schema: x:sheetFormatPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Chartsheet"> <summary> <para>Chart Sheet. It is the root element of ChartsheetPart.</para> <para>When the object is serialized out as xml, its qualified name is x:chartsheet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ChartSheetProperties <x:sheetPr></description></item> <item><description>ChartSheetViews <x:sheetViews></description></item> <item><description>ChartSheetProtection <x:sheetProtection></description></item> <item><description>CustomChartsheetViews <x:customSheetViews></description></item> <item><description>PageMargins <x:pageMargins></description></item> <item><description>ChartSheetPageSetup <x:pageSetup></description></item> <item><description>HeaderFooter <x:headerFooter></description></item> <item><description>Drawing <x:drawing></description></item> <item><description>LegacyDrawing <x:legacyDrawing></description></item> <item><description>LegacyDrawingHeaderFooter <x:legacyDrawingHF></description></item> <item><description>DrawingHeaderFooter <x:drawingHF></description></item> <item><description>Picture <x:picture></description></item> <item><description>WebPublishItems <x:webPublishItems></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.#ctor(DocumentFormat.OpenXml.Packaging.ChartsheetPart)"> <summary> Chartsheet constructor </summary> <param name="ownerPart">The owner part of the Chartsheet</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.Load(DocumentFormat.OpenXml.Packaging.ChartsheetPart)"> <summary> Loads the DOM from the ChartsheetPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Chartsheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Chartsheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.#ctor(System.String)"> <summary> Initializes a new instance of the Chartsheet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.#ctor"> <summary> Initializes a new instance of the Chartsheet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.Save(DocumentFormat.OpenXml.Packaging.ChartsheetPart)"> <summary> Saves the DOM into the ChartsheetPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.ChartsheetPart"> <summary> Gets the ChartsheetPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.ChartSheetProperties"> <summary> <para> Chart Sheet Properties.</para> <para>Represents the element tag in schema: x:sheetPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.ChartSheetViews"> <summary> <para> Chart Sheet Views.</para> <para>Represents the element tag in schema: x:sheetViews </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.ChartSheetProtection"> <summary> <para> Chart Sheet Protection.</para> <para>Represents the element tag in schema: x:sheetProtection </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.CustomChartsheetViews"> <summary> <para> Custom Chart Sheet Views.</para> <para>Represents the element tag in schema: x:customSheetViews </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.PageMargins"> <summary> <para> PageMargins.</para> <para>Represents the element tag in schema: x:pageMargins </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.ChartSheetPageSetup"> <summary> <para> ChartSheetPageSetup.</para> <para>Represents the element tag in schema: x:pageSetup </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.HeaderFooter"> <summary> <para> HeaderFooter.</para> <para>Represents the element tag in schema: x:headerFooter </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.Drawing"> <summary> <para> Drawing.</para> <para>Represents the element tag in schema: x:drawing </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.LegacyDrawing"> <summary> <para> LegacyDrawing.</para> <para>Represents the element tag in schema: x:legacyDrawing </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.LegacyDrawingHeaderFooter"> <summary> <para> Legacy Drawing Reference in Header Footer.</para> <para>Represents the element tag in schema: x:legacyDrawingHF </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.DrawingHeaderFooter"> <summary> <para> DrawingHeaderFooter, this property is only available in Office2010.</para> <para>Represents the element tag in schema: x:drawingHF </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.Picture"> <summary> <para> Picture.</para> <para>Represents the element tag in schema: x:picture </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.WebPublishItems"> <summary> <para> WebPublishItems.</para> <para>Represents the element tag in schema: x:webPublishItems </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Chartsheet.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.DialogSheet"> <summary> <para>Dialog Sheet. It is the root element of DialogsheetPart.</para> <para>When the object is serialized out as xml, its qualified name is x:dialogsheet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SheetProperties <x:sheetPr></description></item> <item><description>SheetViews <x:sheetViews></description></item> <item><description>SheetFormatProperties <x:sheetFormatPr></description></item> <item><description>SheetProtection <x:sheetProtection></description></item> <item><description>CustomSheetViews <x:customSheetViews></description></item> <item><description>PrintOptions <x:printOptions></description></item> <item><description>PageMargins <x:pageMargins></description></item> <item><description>PageSetup <x:pageSetup></description></item> <item><description>HeaderFooter <x:headerFooter></description></item> <item><description>Drawing <x:drawing></description></item> <item><description>LegacyDrawing <x:legacyDrawing></description></item> <item><description>LegacyDrawingHeaderFooter <x:legacyDrawingHF></description></item> <item><description>DrawingHeaderFooter <x:drawingHF></description></item> <item><description>OleObjects <x:oleObjects></description></item> <item><description>Controls <x:controls></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.#ctor(DocumentFormat.OpenXml.Packaging.DialogsheetPart)"> <summary> DialogSheet constructor </summary> <param name="ownerPart">The owner part of the DialogSheet</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.Load(DocumentFormat.OpenXml.Packaging.DialogsheetPart)"> <summary> Loads the DOM from the DialogsheetPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DialogSheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DialogSheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.#ctor(System.String)"> <summary> Initializes a new instance of the DialogSheet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.#ctor"> <summary> Initializes a new instance of the DialogSheet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.Save(DocumentFormat.OpenXml.Packaging.DialogsheetPart)"> <summary> Saves the DOM into the DialogsheetPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.DialogsheetPart"> <summary> Gets the DialogsheetPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.SheetProperties"> <summary> <para> Sheet Properties.</para> <para>Represents the element tag in schema: x:sheetPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.SheetViews"> <summary> <para> Dialog Sheet Views.</para> <para>Represents the element tag in schema: x:sheetViews </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.SheetFormatProperties"> <summary> <para> Dialog Sheet Format Properties.</para> <para>Represents the element tag in schema: x:sheetFormatPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.SheetProtection"> <summary> <para> Sheet Protection.</para> <para>Represents the element tag in schema: x:sheetProtection </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.CustomSheetViews"> <summary> <para> Custom Sheet Views.</para> <para>Represents the element tag in schema: x:customSheetViews </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.PrintOptions"> <summary> <para> Print Options.</para> <para>Represents the element tag in schema: x:printOptions </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.PageMargins"> <summary> <para> Page Margins.</para> <para>Represents the element tag in schema: x:pageMargins </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.PageSetup"> <summary> <para> Page Setup Settings.</para> <para>Represents the element tag in schema: x:pageSetup </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.HeaderFooter"> <summary> <para> Header and Footer Settings.</para> <para>Represents the element tag in schema: x:headerFooter </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.Drawing"> <summary> <para> Drawing.</para> <para>Represents the element tag in schema: x:drawing </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.LegacyDrawing"> <summary> <para> Legacy Drawing.</para> <para>Represents the element tag in schema: x:legacyDrawing </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.LegacyDrawingHeaderFooter"> <summary> <para> Legacy Drawing Header Footer.</para> <para>Represents the element tag in schema: x:legacyDrawingHF </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.DrawingHeaderFooter"> <summary> <para> DrawingHeaderFooter, this property is only available in Office2010.</para> <para>Represents the element tag in schema: x:drawingHF </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.OleObjects"> <summary> <para> OleObjects.</para> <para>Represents the element tag in schema: x:oleObjects </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.Controls"> <summary> <para> Controls, this property is only available in Office2010.</para> <para>Represents the element tag in schema: x:controls </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DialogSheet.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Metadata"> <summary> <para>Metadata. It is the root element of CellMetadataPart.</para> <para>When the object is serialized out as xml, its qualified name is x:metadata.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MetadataTypes <x:metadataTypes></description></item> <item><description>MetadataStrings <x:metadataStrings></description></item> <item><description>MdxMetadata <x:mdxMetadata></description></item> <item><description>FutureMetadata <x:futureMetadata></description></item> <item><description>CellMetadata <x:cellMetadata></description></item> <item><description>ValueMetadata <x:valueMetadata></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.#ctor(DocumentFormat.OpenXml.Packaging.CellMetadataPart)"> <summary> Metadata constructor </summary> <param name="ownerPart">The owner part of the Metadata</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.Load(DocumentFormat.OpenXml.Packaging.CellMetadataPart)"> <summary> Loads the DOM from the CellMetadataPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Metadata class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Metadata class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.#ctor(System.String)"> <summary> Initializes a new instance of the Metadata class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.#ctor"> <summary> Initializes a new instance of the Metadata class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.Save(DocumentFormat.OpenXml.Packaging.CellMetadataPart)"> <summary> Saves the DOM into the CellMetadataPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Metadata.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Metadata.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Metadata.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Metadata.CellMetadataPart"> <summary> Gets the CellMetadataPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Metadata.MetadataTypes"> <summary> <para> Metadata Types Collection.</para> <para>Represents the element tag in schema: x:metadataTypes </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Metadata.MetadataStrings"> <summary> <para> Metadata String Store.</para> <para>Represents the element tag in schema: x:metadataStrings </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Metadata.MdxMetadata"> <summary> <para> MDX Metadata Information.</para> <para>Represents the element tag in schema: x:mdxMetadata </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells"> <summary> <para>Single Cells. It is the root element of SingleCellTablePart.</para> <para>When the object is serialized out as xml, its qualified name is x:singleXmlCells.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SingleXmlCell <x:singleXmlCell></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.#ctor(DocumentFormat.OpenXml.Packaging.SingleCellTablePart)"> <summary> SingleXmlCells constructor </summary> <param name="ownerPart">The owner part of the SingleXmlCells</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.Load(DocumentFormat.OpenXml.Packaging.SingleCellTablePart)"> <summary> Loads the DOM from the SingleCellTablePart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SingleXmlCells class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SingleXmlCells class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.#ctor(System.String)"> <summary> Initializes a new instance of the SingleXmlCells class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.#ctor"> <summary> Initializes a new instance of the SingleXmlCells class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.Save(DocumentFormat.OpenXml.Packaging.SingleCellTablePart)"> <summary> Saves the DOM into the SingleCellTablePart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SingleXmlCells.SingleCellTablePart"> <summary> Gets the SingleCellTablePart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Stylesheet"> <summary> <para>Style Sheet. It is the root element of WorkbookStylesPart.</para> <para>When the object is serialized out as xml, its qualified name is x:styleSheet.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>NumberingFormats <x:numFmts></description></item> <item><description>Fonts <x:fonts></description></item> <item><description>Fills <x:fills></description></item> <item><description>Borders <x:borders></description></item> <item><description>CellStyleFormats <x:cellStyleXfs></description></item> <item><description>CellFormats <x:cellXfs></description></item> <item><description>CellStyles <x:cellStyles></description></item> <item><description>DifferentialFormats <x:dxfs></description></item> <item><description>TableStyles <x:tableStyles></description></item> <item><description>Colors <x:colors></description></item> <item><description>StylesheetExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.#ctor(DocumentFormat.OpenXml.Packaging.WorkbookStylesPart)"> <summary> Stylesheet constructor </summary> <param name="ownerPart">The owner part of the Stylesheet</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.Load(DocumentFormat.OpenXml.Packaging.WorkbookStylesPart)"> <summary> Loads the DOM from the WorkbookStylesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Stylesheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Stylesheet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.#ctor(System.String)"> <summary> Initializes a new instance of the Stylesheet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.#ctor"> <summary> Initializes a new instance of the Stylesheet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.Save(DocumentFormat.OpenXml.Packaging.WorkbookStylesPart)"> <summary> Saves the DOM into the WorkbookStylesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.WorkbookStylesPart"> <summary> Gets the WorkbookStylesPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.NumberingFormats"> <summary> <para> Number Formats.</para> <para>Represents the element tag in schema: x:numFmts </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.Fonts"> <summary> <para> Fonts.</para> <para>Represents the element tag in schema: x:fonts </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.Fills"> <summary> <para> Fills.</para> <para>Represents the element tag in schema: x:fills </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.Borders"> <summary> <para> Borders.</para> <para>Represents the element tag in schema: x:borders </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.CellStyleFormats"> <summary> <para> Formatting Records.</para> <para>Represents the element tag in schema: x:cellStyleXfs </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.CellFormats"> <summary> <para> Cell Formats.</para> <para>Represents the element tag in schema: x:cellXfs </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.CellStyles"> <summary> <para> Cell Styles.</para> <para>Represents the element tag in schema: x:cellStyles </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.DifferentialFormats"> <summary> <para> Formats.</para> <para>Represents the element tag in schema: x:dxfs </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.TableStyles"> <summary> <para> Table Styles.</para> <para>Represents the element tag in schema: x:tableStyles </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.Colors"> <summary> <para> Colors.</para> <para>Represents the element tag in schema: x:colors </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Stylesheet.StylesheetExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.ExternalLink"> <summary> <para>External Reference. It is the root element of ExternalWorkbookPart.</para> <para>When the object is serialized out as xml, its qualified name is x:externalLink.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExternalBook <x:externalBook></description></item> <item><description>DdeLink <x:ddeLink></description></item> <item><description>OleLink <x:oleLink></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.#ctor(DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart)"> <summary> ExternalLink constructor </summary> <param name="ownerPart">The owner part of the ExternalLink</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.Load(DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart)"> <summary> Loads the DOM from the ExternalWorkbookPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExternalLink class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExternalLink class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.#ctor(System.String)"> <summary> Initializes a new instance of the ExternalLink class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.#ctor"> <summary> Initializes a new instance of the ExternalLink class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.Save(DocumentFormat.OpenXml.Packaging.ExternalWorkbookPart)"> <summary> Saves the DOM into the ExternalWorkbookPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ExternalLink.ExternalWorkbookPart"> <summary> Gets the ExternalWorkbookPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Table"> <summary> <para>Table. It is the root element of TableDefinitionPart.</para> <para>When the object is serialized out as xml, its qualified name is x:table.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AutoFilter <x:autoFilter></description></item> <item><description>SortState <x:sortState></description></item> <item><description>TableColumns <x:tableColumns></description></item> <item><description>TableStyleInfo <x:tableStyleInfo></description></item> <item><description>TableExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.#ctor(DocumentFormat.OpenXml.Packaging.TableDefinitionPart)"> <summary> Table constructor </summary> <param name="ownerPart">The owner part of the Table</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.Load(DocumentFormat.OpenXml.Packaging.TableDefinitionPart)"> <summary> Loads the DOM from the TableDefinitionPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Table class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Table class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.#ctor(System.String)"> <summary> Initializes a new instance of the Table class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.#ctor"> <summary> Initializes a new instance of the Table class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.Save(DocumentFormat.OpenXml.Packaging.TableDefinitionPart)"> <summary> Saves the DOM into the TableDefinitionPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Table.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.Id"> <summary> <para> Table Id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.DisplayName"> <summary> <para> Table Name.</para> <para>Represents the attribte in schema: displayName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.Comment"> <summary> <para> Table Comment.</para> <para>Represents the attribte in schema: comment </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.Reference"> <summary> <para> Reference.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TableType"> <summary> <para> Table Type.</para> <para>Represents the attribte in schema: tableType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.HeaderRowCount"> <summary> <para> Header Row Count.</para> <para>Represents the attribte in schema: headerRowCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.InsertRow"> <summary> <para> Insert Row Showing.</para> <para>Represents the attribte in schema: insertRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.InsertRowShift"> <summary> <para> Insert Row Shift.</para> <para>Represents the attribte in schema: insertRowShift </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TotalsRowCount"> <summary> <para> Totals Row Count.</para> <para>Represents the attribte in schema: totalsRowCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TotalsRowShown"> <summary> <para> Totals Row Shown.</para> <para>Represents the attribte in schema: totalsRowShown </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.Published"> <summary> <para> Published.</para> <para>Represents the attribte in schema: published </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.HeaderRowFormatId"> <summary> <para> Header Row Format Id.</para> <para>Represents the attribte in schema: headerRowDxfId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.DataFormatId"> <summary> <para> Data Area Format Id.</para> <para>Represents the attribte in schema: dataDxfId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TotalsRowFormatId"> <summary> <para> Totals Row Format Id.</para> <para>Represents the attribte in schema: totalsRowDxfId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.HeaderRowBorderFormatId"> <summary> <para> Header Row Border Format Id.</para> <para>Represents the attribte in schema: headerRowBorderDxfId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.BorderFormatId"> <summary> <para> Table Border Format Id.</para> <para>Represents the attribte in schema: tableBorderDxfId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TotalsRowBorderFormatId"> <summary> <para> Totals Row Border Format Id.</para> <para>Represents the attribte in schema: totalsRowBorderDxfId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.HeaderRowCellStyle"> <summary> <para> Header Row Style.</para> <para>Represents the attribte in schema: headerRowCellStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.DataCellStyle"> <summary> <para> Data Style Name.</para> <para>Represents the attribte in schema: dataCellStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TotalsRowCellStyle"> <summary> <para> Totals Row Style.</para> <para>Represents the attribte in schema: totalsRowCellStyle </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.ConnectionId"> <summary> <para> Connection ID.</para> <para>Represents the attribte in schema: connectionId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TableDefinitionPart"> <summary> Gets the TableDefinitionPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.AutoFilter"> <summary> <para> Table AutoFilter.</para> <para>Represents the element tag in schema: x:autoFilter </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.SortState"> <summary> <para> Sort State.</para> <para>Represents the element tag in schema: x:sortState </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TableColumns"> <summary> <para> Table Columns.</para> <para>Represents the element tag in schema: x:tableColumns </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TableStyleInfo"> <summary> <para> Table Style.</para> <para>Represents the element tag in schema: x:tableStyleInfo </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Table.TableExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes"> <summary> <para>Volatile Dependency Types. It is the root element of VolatileDependenciesPart.</para> <para>When the object is serialized out as xml, its qualified name is x:volTypes.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>VolatileType <x:volType></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.#ctor(DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart)"> <summary> VolatileTypes constructor </summary> <param name="ownerPart">The owner part of the VolatileTypes</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.Load(DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart)"> <summary> Loads the DOM from the VolatileDependenciesPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the VolatileTypes class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the VolatileTypes class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.#ctor(System.String)"> <summary> Initializes a new instance of the VolatileTypes class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.#ctor"> <summary> Initializes a new instance of the VolatileTypes class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.Save(DocumentFormat.OpenXml.Packaging.VolatileDependenciesPart)"> <summary> Saves the DOM into the VolatileDependenciesPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.VolatileTypes.VolatileDependenciesPart"> <summary> Gets the VolatileDependenciesPart associated with this element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Workbook"> <summary> <para>Workbook. It is the root element of WorkbookPart.</para> <para>When the object is serialized out as xml, its qualified name is x:workbook.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FileVersion <x:fileVersion></description></item> <item><description>FileSharing <x:fileSharing></description></item> <item><description>WorkbookProperties <x:workbookPr></description></item> <item><description>WorkbookProtection <x:workbookProtection></description></item> <item><description>BookViews <x:bookViews></description></item> <item><description>Sheets <x:sheets></description></item> <item><description>FunctionGroups <x:functionGroups></description></item> <item><description>ExternalReferences <x:externalReferences></description></item> <item><description>DefinedNames <x:definedNames></description></item> <item><description>CalculationProperties <x:calcPr></description></item> <item><description>OleSize <x:oleSize></description></item> <item><description>CustomWorkbookViews <x:customWorkbookViews></description></item> <item><description>PivotCaches <x:pivotCaches></description></item> <item><description>SmartTagProperties <x:smartTagPr></description></item> <item><description>SmartTagTypes <x:smartTagTypes></description></item> <item><description>WebPublishing <x:webPublishing></description></item> <item><description>FileRecoveryProperties <x:fileRecoveryPr></description></item> <item><description>WebPublishObjects <x:webPublishObjects></description></item> <item><description>WorkbookExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.#ctor(DocumentFormat.OpenXml.Packaging.WorkbookPart)"> <summary> Workbook constructor </summary> <param name="ownerPart">The owner part of the Workbook</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.Load(DocumentFormat.OpenXml.Packaging.WorkbookPart)"> <summary> Loads the DOM from the WorkbookPart. </summary> <param name="openXmlPart">Specifies the part to be loaded.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Workbook class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Workbook class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.#ctor(System.String)"> <summary> Initializes a new instance of the Workbook class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.#ctor"> <summary> Initializes a new instance of the Workbook class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.Save(DocumentFormat.OpenXml.Packaging.WorkbookPart)"> <summary> Saves the DOM into the WorkbookPart. </summary> <param name="openXmlPart">Specifies the part to save to.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Workbook.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.WorkbookPart"> <summary> Gets the WorkbookPart associated with this element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.FileVersion"> <summary> <para> File Version.</para> <para>Represents the element tag in schema: x:fileVersion </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.FileSharing"> <summary> <para> File Sharing.</para> <para>Represents the element tag in schema: x:fileSharing </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.WorkbookProperties"> <summary> <para> Workbook Properties.</para> <para>Represents the element tag in schema: x:workbookPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.WorkbookProtection"> <summary> <para> Workbook Protection.</para> <para>Represents the element tag in schema: x:workbookProtection </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.BookViews"> <summary> <para> Workbook Views.</para> <para>Represents the element tag in schema: x:bookViews </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.Sheets"> <summary> <para> Sheets.</para> <para>Represents the element tag in schema: x:sheets </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.FunctionGroups"> <summary> <para> Function Groups.</para> <para>Represents the element tag in schema: x:functionGroups </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.ExternalReferences"> <summary> <para> External References.</para> <para>Represents the element tag in schema: x:externalReferences </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.DefinedNames"> <summary> <para> Defined Names.</para> <para>Represents the element tag in schema: x:definedNames </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.CalculationProperties"> <summary> <para> Calculation Properties.</para> <para>Represents the element tag in schema: x:calcPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.OleSize"> <summary> <para> OLE Size.</para> <para>Represents the element tag in schema: x:oleSize </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.CustomWorkbookViews"> <summary> <para> Custom Workbook Views.</para> <para>Represents the element tag in schema: x:customWorkbookViews </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.PivotCaches"> <summary> <para> PivotCaches.</para> <para>Represents the element tag in schema: x:pivotCaches </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.SmartTagProperties"> <summary> <para> Smart Tag Properties.</para> <para>Represents the element tag in schema: x:smartTagPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.SmartTagTypes"> <summary> <para> Smart Tag Types.</para> <para>Represents the element tag in schema: x:smartTagTypes </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Workbook.WebPublishing"> <summary> <para> Web Publishing Properties.</para> <para>Represents the element tag in schema: x:webPublishing </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.FilterColumn"> <summary> <para>AutoFilter Column.</para> <para>When the object is serialized out as xml, its qualified name is x:filterColumn.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Filters <x:filters></description></item> <item><description>Top10 <x:top10></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Excel.CustomFilters <x14:customFilters></description></item> <item><description>CustomFilters <x:customFilters></description></item> <item><description>DynamicFilter <x:dynamicFilter></description></item> <item><description>ColorFilter <x:colorFilter></description></item> <item><description>DocumentFormat.OpenXml.Office2010.Excel.IconFilter <x14:iconFilter></description></item> <item><description>IconFilter <x:iconFilter></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.#ctor"> <summary> Initializes a new instance of the FilterColumn class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the FilterColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the FilterColumn class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.#ctor(System.String)"> <summary> Initializes a new instance of the FilterColumn class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.ColumnId"> <summary> <para> Filter Column Data.</para> <para>Represents the attribte in schema: colId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.HiddenButton"> <summary> <para> Hidden AutoFilter Button.</para> <para>Represents the attribte in schema: hiddenButton </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.ShowButton"> <summary> <para> Show Filter Button.</para> <para>Represents the attribte in schema: showButton </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.Filters"> <summary> <para> Filter Criteria.</para> <para>Represents the element tag in schema: x:filters </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.Top10"> <summary> <para> Top 10.</para> <para>Represents the element tag in schema: x:top10 </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.CustomFilters14"> <summary> <para> CustomFilters14, this property is only available in Office2010.</para> <para>Represents the element tag in schema: x14:customFilters </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.CustomFilters"> <summary> <para> Custom Filters.</para> <para>Represents the element tag in schema: x:customFilters </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.DynamicFilter"> <summary> <para> Dynamic Filter.</para> <para>Represents the element tag in schema: x:dynamicFilter </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.ColorFilter"> <summary> <para> Color Filter Criteria.</para> <para>Represents the element tag in schema: x:colorFilter </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.IconFilter14"> <summary> <para> IconFilter14, this property is only available in Office2010.</para> <para>Represents the element tag in schema: x14:iconFilter </para> </summary> <remark> xmlns:x14 = http://schemas.microsoft.com/office/spreadsheetml/2009/9/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.IconFilter"> <summary> <para> Icon Filter.</para> <para>Represents the element tag in schema: x:iconFilter </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FilterColumn.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.SortState"> <summary> <para>Sort State for Auto Filter.</para> <para>When the object is serialized out as xml, its qualified name is x:sortState.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DocumentFormat.OpenXml.Office2010.Excel.SortCondition <x14:sortCondition></description></item> <item><description>SortCondition <x:sortCondition></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortState.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortState.#ctor"> <summary> Initializes a new instance of the SortState class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortState.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SortState class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortState.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SortState class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortState.#ctor(System.String)"> <summary> Initializes a new instance of the SortState class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortState.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SortState.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SortState.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SortState.ColumnSort"> <summary> <para> Sort by Columns.</para> <para>Represents the attribte in schema: columnSort </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SortState.CaseSensitive"> <summary> <para> Case Sensitive.</para> <para>Represents the attribte in schema: caseSensitive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SortState.SortMethod"> <summary> <para> Sort Method.</para> <para>Represents the attribte in schema: sortMethod </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SortState.Reference"> <summary> <para> Sort Range.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.ExtensionList"> <summary> <para>Defines the ExtensionList Class.</para> <para>When the object is serialized out as xml, its qualified name is x:extLst.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Extension <x:ext></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExtensionList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExtensionList.#ctor"> <summary> Initializes a new instance of the ExtensionList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExtensionList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExtensionList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ExtensionList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExtensionList.#ctor(System.String)"> <summary> Initializes a new instance of the ExtensionList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ExtensionList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ExtensionList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ExtensionList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CustomFilter"> <summary> <para>Custom Filter Criteria.</para> <para>When the object is serialized out as xml, its qualified name is x:customFilter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CustomFilter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CustomFilter.#ctor"> <summary> Initializes a new instance of the CustomFilter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CustomFilter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CustomFilter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CustomFilter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CustomFilter.Operator"> <summary> <para> Filter Comparison Operator.</para> <para>Represents the attribte in schema: operator </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CustomFilter.Val"> <summary> <para> Top or Bottom Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CalculationCell"> <summary> <para>Cell.</para> <para>When the object is serialized out as xml, its qualified name is x:c.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.#ctor"> <summary> Initializes a new instance of the CalculationCell class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.CellReference"> <summary> <para> Cell Reference.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.SheetId"> <summary> <para> Sheet Id.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.InChildChain"> <summary> <para> Child Chain.</para> <para>Represents the attribte in schema: s </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.NewLevel"> <summary> <para> New Dependency Level.</para> <para>Represents the attribte in schema: l </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.NewThread"> <summary> <para> New Thread.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculationCell.Array"> <summary> <para> Array.</para> <para>Represents the attribte in schema: a </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Authors"> <summary> <para>Authors.</para> <para>When the object is serialized out as xml, its qualified name is x:authors.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Author <x:author></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Authors.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Authors.#ctor"> <summary> Initializes a new instance of the Authors class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Authors.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Authors class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Authors.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Authors class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Authors.#ctor(System.String)"> <summary> Initializes a new instance of the Authors class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Authors.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Authors.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Authors.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CommentList"> <summary> <para>List of Comments.</para> <para>When the object is serialized out as xml, its qualified name is x:commentList.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Comment <x:comment></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentList.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentList.#ctor"> <summary> Initializes a new instance of the CommentList class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentList.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommentList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentList.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommentList class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentList.#ctor(System.String)"> <summary> Initializes a new instance of the CommentList class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentList.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CommentList.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CommentList.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Comment"> <summary> <para>Comment.</para> <para>When the object is serialized out as xml, its qualified name is x:comment.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CommentText <x:text></description></item> <item><description>CommentProperties <x:commentPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comment.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comment.#ctor"> <summary> Initializes a new instance of the Comment class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comment.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Comment class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comment.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Comment class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comment.#ctor(System.String)"> <summary> Initializes a new instance of the Comment class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Comment.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comment.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comment.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comment.Reference"> <summary> <para> Cell Reference.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comment.AuthorId"> <summary> <para> Author Id.</para> <para>Represents the attribte in schema: authorId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comment.Guid"> <summary> <para> Unique Identifier for Comment.</para> <para>Represents the attribte in schema: guid </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comment.ShapeId"> <summary> <para> shapeId, this property is only available in Office2010.</para> <para>Represents the attribte in schema: shapeId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comment.CommentText"> <summary> <para> Comment Text.</para> <para>Represents the element tag in schema: x:text </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Comment.CommentProperties"> <summary> <para> CommentProperties, this property is only available in Office2010.</para> <para>Represents the element tag in schema: x:commentPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Author"> <summary> <para>Author.</para> <para>When the object is serialized out as xml, its qualified name is x:author.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.XstringType"> <summary> Defines the XstringType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.XstringType.#ctor"> <summary> Initializes a new instance of the XstringType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.XstringType.#ctor(System.String)"> <summary> Initializes a new instance of the XstringType class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.XstringType.Space"> <summary> <para> Content Contains Significant Whitespace.</para> <para>Represents the attribte in schema: xml:space </para> </summary> <remark> xmlns:xml=http://www.w3.org/XML/1998/namespace </remark> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Author.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Author.#ctor"> <summary> Initializes a new instance of the Author class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Author.#ctor(System.String)"> <summary> Initializes a new instance of the Author class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Author.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Author.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Author.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Text"> <summary> <para>Text.</para> <para>When the object is serialized out as xml, its qualified name is x:t.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Text.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Text.#ctor"> <summary> Initializes a new instance of the Text class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Text.#ctor(System.String)"> <summary> Initializes a new instance of the Text class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Text.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Text.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Text.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CellValue"> <summary> <para>Cell Value.</para> <para>When the object is serialized out as xml, its qualified name is x:v.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CellValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CellValue.#ctor"> <summary> Initializes a new instance of the CellValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CellValue.#ctor(System.String)"> <summary> Initializes a new instance of the CellValue class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CellValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CellValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CellValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Formula"> <summary> <para>Formula.</para> <para>When the object is serialized out as xml, its qualified name is x:formula.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula.#ctor"> <summary> Initializes a new instance of the Formula class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula.#ctor(System.String)"> <summary> Initializes a new instance of the Formula class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Formula.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Formula.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.OldFormula"> <summary> <para>Old Formula.</para> <para>When the object is serialized out as xml, its qualified name is x:oldFormula.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OldFormula.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OldFormula.#ctor"> <summary> Initializes a new instance of the OldFormula class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OldFormula.#ctor(System.String)"> <summary> Initializes a new instance of the OldFormula class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OldFormula.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.OldFormula.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.OldFormula.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.OddHeader"> <summary> <para>Odd Header.</para> <para>When the object is serialized out as xml, its qualified name is x:oddHeader.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OddHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OddHeader.#ctor"> <summary> Initializes a new instance of the OddHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OddHeader.#ctor(System.String)"> <summary> Initializes a new instance of the OddHeader class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OddHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.OddHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.OddHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.OddFooter"> <summary> <para>Odd Page Footer.</para> <para>When the object is serialized out as xml, its qualified name is x:oddFooter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OddFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OddFooter.#ctor"> <summary> Initializes a new instance of the OddFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OddFooter.#ctor(System.String)"> <summary> Initializes a new instance of the OddFooter class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.OddFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.OddFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.OddFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.EvenHeader"> <summary> <para>Even Page Header.</para> <para>When the object is serialized out as xml, its qualified name is x:evenHeader.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.EvenHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.EvenHeader.#ctor"> <summary> Initializes a new instance of the EvenHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.EvenHeader.#ctor(System.String)"> <summary> Initializes a new instance of the EvenHeader class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.EvenHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.EvenHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.EvenHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.EvenFooter"> <summary> <para>Even Page Footer.</para> <para>When the object is serialized out as xml, its qualified name is x:evenFooter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.EvenFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.EvenFooter.#ctor"> <summary> Initializes a new instance of the EvenFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.EvenFooter.#ctor(System.String)"> <summary> Initializes a new instance of the EvenFooter class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.EvenFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.EvenFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.EvenFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.FirstHeader"> <summary> <para>First Page Header.</para> <para>When the object is serialized out as xml, its qualified name is x:firstHeader.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FirstHeader.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FirstHeader.#ctor"> <summary> Initializes a new instance of the FirstHeader class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FirstHeader.#ctor(System.String)"> <summary> Initializes a new instance of the FirstHeader class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FirstHeader.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FirstHeader.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FirstHeader.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.FirstFooter"> <summary> <para>First Page Footer.</para> <para>When the object is serialized out as xml, its qualified name is x:firstFooter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FirstFooter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FirstFooter.#ctor"> <summary> Initializes a new instance of the FirstFooter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FirstFooter.#ctor(System.String)"> <summary> Initializes a new instance of the FirstFooter class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FirstFooter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FirstFooter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FirstFooter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Formula1"> <summary> <para>Formula 1.</para> <para>When the object is serialized out as xml, its qualified name is x:formula1.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula1.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula1.#ctor"> <summary> Initializes a new instance of the Formula1 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula1.#ctor(System.String)"> <summary> Initializes a new instance of the Formula1 class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula1.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Formula1.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Formula1.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Formula2"> <summary> <para>Formula 2.</para> <para>When the object is serialized out as xml, its qualified name is x:formula2.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula2.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula2.#ctor"> <summary> Initializes a new instance of the Formula2 class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula2.#ctor(System.String)"> <summary> Initializes a new instance of the Formula2 class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Formula2.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Formula2.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Formula2.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.DdeLinkValue"> <summary> <para>DDE Link Value.</para> <para>When the object is serialized out as xml, its qualified name is x:val.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DdeLinkValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DdeLinkValue.#ctor"> <summary> Initializes a new instance of the DdeLinkValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DdeLinkValue.#ctor(System.String)"> <summary> Initializes a new instance of the DdeLinkValue class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DdeLinkValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DdeLinkValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DdeLinkValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Subtopic"> <summary> <para>Strings in Subtopic.</para> <para>When the object is serialized out as xml, its qualified name is x:stp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Subtopic.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Subtopic.#ctor"> <summary> Initializes a new instance of the Subtopic class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Subtopic.#ctor(System.String)"> <summary> Initializes a new instance of the Subtopic class with the specified text content. </summary> <param name="text">Specifies text content of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Subtopic.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Subtopic.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Subtopic.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Schema"> <summary> <para>XML Schema.</para> <para>When the object is serialized out as xml, its qualified name is x:Schema.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Schema.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Schema.#ctor"> <summary> Initializes a new instance of the Schema class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Schema.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Schema class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Schema.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Schema class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Schema.#ctor(System.String)"> <summary> Initializes a new instance of the Schema class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Schema.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Schema.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Schema.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Schema.Id"> <summary> <para> Schema ID.</para> <para>Represents the attribte in schema: ID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Schema.SchemaReference"> <summary> <para> Schema Reference.</para> <para>Represents the attribte in schema: SchemaRef </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Schema.Namespace"> <summary> <para> Schema Root Namespace.</para> <para>Represents the attribte in schema: Namespace </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Map"> <summary> <para>XML Mapping Properties.</para> <para>When the object is serialized out as xml, its qualified name is x:Map.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataBinding <x:DataBinding></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Map.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Map.#ctor"> <summary> Initializes a new instance of the Map class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Map.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Map class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Map.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Map class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Map.#ctor(System.String)"> <summary> Initializes a new instance of the Map class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Map.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.ID"> <summary> <para> XML Mapping ID.</para> <para>Represents the attribte in schema: ID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.Name"> <summary> <para> XML Mapping Name.</para> <para>Represents the attribte in schema: Name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.RootElement"> <summary> <para> Root Element Name.</para> <para>Represents the attribte in schema: RootElement </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.SchemaId"> <summary> <para> Schema Name.</para> <para>Represents the attribte in schema: SchemaID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.ShowImportExportErrors"> <summary> <para> Show Validation Errors.</para> <para>Represents the attribte in schema: ShowImportExportValidationErrors </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.AutoFit"> <summary> <para> AutoFit Table on Refresh.</para> <para>Represents the attribte in schema: AutoFit </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.AppendData"> <summary> <para> Append Data to Table.</para> <para>Represents the attribte in schema: Append </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.PreserveAutoFilterState"> <summary> <para> Preserve AutoFilter State.</para> <para>Represents the attribte in schema: PreserveSortAFLayout </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.PreserveFormat"> <summary> <para> Preserve Cell Formatting.</para> <para>Represents the attribte in schema: PreserveFormat </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Map.DataBinding"> <summary> <para> XML Mapping.</para> <para>Represents the element tag in schema: x:DataBinding </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.DataBinding"> <summary> <para>XML Mapping.</para> <para>When the object is serialized out as xml, its qualified name is x:DataBinding.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataBinding.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataBinding.#ctor"> <summary> Initializes a new instance of the DataBinding class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataBinding.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataBinding class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataBinding.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataBinding class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataBinding.#ctor(System.String)"> <summary> Initializes a new instance of the DataBinding class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataBinding.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataBinding.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataBinding.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataBinding.DataBindingName"> <summary> <para> Unique Identifer.</para> <para>Represents the attribte in schema: DataBindingName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataBinding.FileBinding"> <summary> <para> Binding to External File.</para> <para>Represents the attribte in schema: FileBinding </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataBinding.ConnectionId"> <summary> <para> Reference to Connection ID.</para> <para>Represents the attribte in schema: ConnectionID </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataBinding.FileBindingName"> <summary> <para> File Binding Name.</para> <para>Represents the attribte in schema: FileBindingName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataBinding.DataBindingLoadMode"> <summary> <para> XML Data Loading Behavior.</para> <para>Represents the attribte in schema: DataBindingLoadMode </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Connection"> <summary> <para>Connection.</para> <para>When the object is serialized out as xml, its qualified name is x:connection.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DatabaseProperties <x:dbPr></description></item> <item><description>OlapProperties <x:olapPr></description></item> <item><description>WebQueryProperties <x:webPr></description></item> <item><description>TextProperties <x:textPr></description></item> <item><description>Parameters <x:parameters></description></item> <item><description>ConnectionExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connection.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connection.#ctor"> <summary> Initializes a new instance of the Connection class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connection.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Connection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connection.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Connection class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connection.#ctor(System.String)"> <summary> Initializes a new instance of the Connection class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Connection.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Id"> <summary> <para> Connection Id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.SourceFile"> <summary> <para> Source Database File.</para> <para>Represents the attribte in schema: sourceFile </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.ConnectionFile"> <summary> <para> Connection File.</para> <para>Represents the attribte in schema: odcFile </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.KeepAlive"> <summary> <para> Keep Connection Open.</para> <para>Represents the attribte in schema: keepAlive </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Interval"> <summary> <para> Automatic Refresh Interval.</para> <para>Represents the attribte in schema: interval </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Name"> <summary> <para> Connection Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Description"> <summary> <para> Connection Description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Type"> <summary> <para> Database Source Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.ReconnectionMethod"> <summary> <para> Reconnection Method.</para> <para>Represents the attribte in schema: reconnectionMethod </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.RefreshedVersion"> <summary> <para> Last Refresh Version.</para> <para>Represents the attribte in schema: refreshedVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.MinRefreshableVersion"> <summary> <para> Minimum Version Required for Refresh.</para> <para>Represents the attribte in schema: minRefreshableVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.SavePassword"> <summary> <para> Save Password.</para> <para>Represents the attribte in schema: savePassword </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.New"> <summary> <para> New Connection.</para> <para>Represents the attribte in schema: new </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Deleted"> <summary> <para> Deleted Connection.</para> <para>Represents the attribte in schema: deleted </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.OnlyUseConnectionFile"> <summary> <para> Only Use Connection File.</para> <para>Represents the attribte in schema: onlyUseConnectionFile </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Background"> <summary> <para> Background Refresh.</para> <para>Represents the attribte in schema: background </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.RefreshOnLoad"> <summary> <para> Refresh on Open.</para> <para>Represents the attribte in schema: refreshOnLoad </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.SaveData"> <summary> <para> Save Data.</para> <para>Represents the attribte in schema: saveData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Credentials"> <summary> <para> Reconnection Method.</para> <para>Represents the attribte in schema: credentials </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.SingleSignOnId"> <summary> <para> SSO Id.</para> <para>Represents the attribte in schema: singleSignOnId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.DatabaseProperties"> <summary> <para> ODBC and OLE DB Properties.</para> <para>Represents the element tag in schema: x:dbPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.OlapProperties"> <summary> <para> OLAP Properties.</para> <para>Represents the element tag in schema: x:olapPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.WebQueryProperties"> <summary> <para> Web Query Properties.</para> <para>Represents the element tag in schema: x:webPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.TextProperties"> <summary> <para> Text Import Settings.</para> <para>Represents the element tag in schema: x:textPr </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.Parameters"> <summary> <para> Query Parameters.</para> <para>Represents the element tag in schema: x:parameters </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Connection.ConnectionExtensionList"> <summary> <para> Future Feature Data Storage.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Tables"> <summary> <para>Tables.</para> <para>When the object is serialized out as xml, its qualified name is x:tables.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MissingTable <x:m></description></item> <item><description>CharacterValue <x:s></description></item> <item><description>FieldItem <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tables.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tables.#ctor"> <summary> Initializes a new instance of the Tables class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tables.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Tables class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tables.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Tables class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tables.#ctor(System.String)"> <summary> Initializes a new instance of the Tables class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tables.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tables.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tables.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tables.Count"> <summary> <para> Count of Tables.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Parameter"> <summary> <para>Parameter Properties.</para> <para>When the object is serialized out as xml, its qualified name is x:parameter.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Parameter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Parameter.#ctor"> <summary> Initializes a new instance of the Parameter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Parameter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.Name"> <summary> <para> Parameter Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.SqlType"> <summary> <para> SQL Data Type.</para> <para>Represents the attribte in schema: sqlType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.ParameterType"> <summary> <para> Parameter Type.</para> <para>Represents the attribte in schema: parameterType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.RefreshOnChange"> <summary> <para> Refresh on Change.</para> <para>Represents the attribte in schema: refreshOnChange </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.Prompt"> <summary> <para> Parameter Prompt String.</para> <para>Represents the attribte in schema: prompt </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.Boolean"> <summary> <para> Boolean.</para> <para>Represents the attribte in schema: boolean </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.Double"> <summary> <para> Double.</para> <para>Represents the attribte in schema: double </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.Integer"> <summary> <para> Integer.</para> <para>Represents the attribte in schema: integer </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.String"> <summary> <para> String.</para> <para>Represents the attribte in schema: string </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Parameter.Cell"> <summary> <para> Cell Reference.</para> <para>Represents the attribte in schema: cell </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.MissingTable"> <summary> <para>No Value.</para> <para>When the object is serialized out as xml, its qualified name is x:m.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingTable.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingTable.#ctor"> <summary> Initializes a new instance of the MissingTable class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingTable.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingTable.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingTable.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CharacterValue"> <summary> <para>Character Value.</para> <para>When the object is serialized out as xml, its qualified name is x:s.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CharacterValue.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CharacterValue.#ctor"> <summary> Initializes a new instance of the CharacterValue class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CharacterValue.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CharacterValue.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CharacterValue.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CharacterValue.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.FieldItem"> <summary> <para>Index.</para> <para>When the object is serialized out as xml, its qualified name is x:x.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FieldItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FieldItem.#ctor"> <summary> Initializes a new instance of the FieldItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FieldItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FieldItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FieldItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FieldItem.Val"> <summary> <para> Shared Items Index.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.TextFields"> <summary> <para>Fields.</para> <para>When the object is serialized out as xml, its qualified name is x:textFields.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TextField <x:textField></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextFields.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextFields.#ctor"> <summary> Initializes a new instance of the TextFields class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextFields.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TextFields class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextFields.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TextFields class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextFields.#ctor(System.String)"> <summary> Initializes a new instance of the TextFields class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextFields.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TextFields.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TextFields.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TextFields.Count"> <summary> <para> Count of Fields.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.TextField"> <summary> <para>Text Import Field Settings.</para> <para>When the object is serialized out as xml, its qualified name is x:textField.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextField.#ctor"> <summary> Initializes a new instance of the TextField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TextField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TextField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TextField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TextField.Type"> <summary> <para> Field Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TextField.Position"> <summary> <para> Position.</para> <para>Represents the attribte in schema: position </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CacheField"> <summary> <para>PivotCache Field.</para> <para>When the object is serialized out as xml, its qualified name is x:cacheField.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>SharedItems <x:sharedItems></description></item> <item><description>FieldGroup <x:fieldGroup></description></item> <item><description>MemberPropertiesMap <x:mpMap></description></item> <item><description>CacheFieldExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheField.#ctor"> <summary> Initializes a new instance of the CacheField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheField.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CacheField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheField.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CacheField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheField.#ctor(System.String)"> <summary> Initializes a new instance of the CacheField class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.Name"> <summary> <para> PivotCache Field Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.Caption"> <summary> <para> PivotCache Field Caption.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.PropertyName"> <summary> <para> Property Name.</para> <para>Represents the attribte in schema: propertyName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.ServerField"> <summary> <para> Server-based Field.</para> <para>Represents the attribte in schema: serverField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.UniqueList"> <summary> <para> Unique List Retrieved.</para> <para>Represents the attribte in schema: uniqueList </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.NumberFormatId"> <summary> <para> Number Format Id.</para> <para>Represents the attribte in schema: numFmtId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.Formula"> <summary> <para> Calculated Field Formula.</para> <para>Represents the attribte in schema: formula </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.SqlType"> <summary> <para> SQL Data Type.</para> <para>Represents the attribte in schema: sqlType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.Hierarchy"> <summary> <para> Hierarchy.</para> <para>Represents the attribte in schema: hierarchy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.Level"> <summary> <para> Hierarchy Level.</para> <para>Represents the attribte in schema: level </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.DatabaseField"> <summary> <para> Database Field.</para> <para>Represents the attribte in schema: databaseField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.MappingCount"> <summary> <para> Member Property Count.</para> <para>Represents the attribte in schema: mappingCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.MemberPropertyField"> <summary> <para> Member Property Field.</para> <para>Represents the attribte in schema: memberPropertyField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.SharedItems"> <summary> <para> Shared Items.</para> <para>Represents the element tag in schema: x:sharedItems </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheField.FieldGroup"> <summary> <para> Field Group Properties.</para> <para>Represents the element tag in schema: x:fieldGroup </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Pages"> <summary> <para>Page Item Values.</para> <para>When the object is serialized out as xml, its qualified name is x:pages.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Page <x:page></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Pages.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Pages.#ctor"> <summary> Initializes a new instance of the Pages class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Pages.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Pages class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Pages.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Pages class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Pages.#ctor(System.String)"> <summary> Initializes a new instance of the Pages class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Pages.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Pages.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Pages.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Pages.Count"> <summary> <para> Page Item String Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.RangeSets"> <summary> <para>Range Sets.</para> <para>When the object is serialized out as xml, its qualified name is x:rangeSets.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>RangeSet <x:rangeSet></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSets.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSets.#ctor"> <summary> Initializes a new instance of the RangeSets class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSets.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RangeSets class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSets.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RangeSets class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSets.#ctor(System.String)"> <summary> Initializes a new instance of the RangeSets class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSets.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSets.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSets.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSets.Count"> <summary> <para> Reference and Page Item Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Page"> <summary> <para>Page Items.</para> <para>When the object is serialized out as xml, its qualified name is x:page.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PageItem <x:pageItem></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Page.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Page.#ctor"> <summary> Initializes a new instance of the Page class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Page.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Page class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Page.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Page class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Page.#ctor(System.String)"> <summary> Initializes a new instance of the Page class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Page.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Page.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Page.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Page.Count"> <summary> <para> Page Item String Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PageItem"> <summary> <para>Page Item.</para> <para>When the object is serialized out as xml, its qualified name is x:pageItem.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageItem.#ctor"> <summary> Initializes a new instance of the PageItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageItem.Name"> <summary> <para> Page Item Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.RangeSet"> <summary> <para>Range Set.</para> <para>When the object is serialized out as xml, its qualified name is x:rangeSet.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSet.#ctor"> <summary> Initializes a new instance of the RangeSet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeSet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.FieldItemIndexPage1"> <summary> <para> Field Item Index Page 1.</para> <para>Represents the attribte in schema: i1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.FieldItemIndexPage2"> <summary> <para> Field Item Index Page 2.</para> <para>Represents the attribte in schema: i2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.FieldItemIndexPage3"> <summary> <para> Field Item index Page 3.</para> <para>Represents the attribte in schema: i3 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.FieldItemIndexPage4"> <summary> <para> Field Item Index Page 4.</para> <para>Represents the attribte in schema: i4 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.Reference"> <summary> <para> Reference.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.Name"> <summary> <para> Named Range.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.Sheet"> <summary> <para> Sheet Name.</para> <para>Represents the attribte in schema: sheet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeSet.Id"> <summary> <para> Relationship Id.</para> <para>Represents the attribte in schema: r:id </para> </summary> <remark> xmlns:r=http://schemas.openxmlformats.org/officeDocument/2006/relationships </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.MissingItem"> <summary> <para>No Value.</para> <para>When the object is serialized out as xml, its qualified name is x:m.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuples <x:tpls></description></item> <item><description>MemberPropertyIndex <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingItem.#ctor"> <summary> Initializes a new instance of the MissingItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the MissingItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the MissingItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingItem.#ctor(System.String)"> <summary> Initializes a new instance of the MissingItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MissingItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.Unused"> <summary> <para> Unused Item.</para> <para>Represents the attribte in schema: u </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.Calculated"> <summary> <para> Calculated Item.</para> <para>Represents the attribte in schema: f </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.Caption"> <summary> <para> Caption.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.PropertyCount"> <summary> <para> Member Property Count.</para> <para>Represents the attribte in schema: cp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.FormatIndex"> <summary> <para> Format Index.</para> <para>Represents the attribte in schema: in </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.BackgroundColor"> <summary> <para> background Color.</para> <para>Represents the attribte in schema: bc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.ForegroundColor"> <summary> <para> Foreground Color.</para> <para>Represents the attribte in schema: fc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.Italic"> <summary> <para> Italic.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.Underline"> <summary> <para> Underline.</para> <para>Represents the attribte in schema: un </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.Strikethrough"> <summary> <para> Strikethrough.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MissingItem.Bold"> <summary> <para> Bold.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.NumberItem"> <summary> <para>Numeric.</para> <para>When the object is serialized out as xml, its qualified name is x:n.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuples <x:tpls></description></item> <item><description>MemberPropertyIndex <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.NumberItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.NumberItem.#ctor"> <summary> Initializes a new instance of the NumberItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.NumberItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the NumberItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.NumberItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the NumberItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.NumberItem.#ctor(System.String)"> <summary> Initializes a new instance of the NumberItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.NumberItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.Unused"> <summary> <para> Unused Item.</para> <para>Represents the attribte in schema: u </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.Calculated"> <summary> <para> Calculated Item.</para> <para>Represents the attribte in schema: f </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.Caption"> <summary> <para> Caption.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.PropertyCount"> <summary> <para> Member Property Count.</para> <para>Represents the attribte in schema: cp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.FormatIndex"> <summary> <para> Format Index.</para> <para>Represents the attribte in schema: in </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.BackgroundColor"> <summary> <para> Background Color.</para> <para>Represents the attribte in schema: bc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.ForegroundColor"> <summary> <para> Foreground Color.</para> <para>Represents the attribte in schema: fc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.Italic"> <summary> <para> Italic.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.Underline"> <summary> <para> Underline.</para> <para>Represents the attribte in schema: un </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.Strikethrough"> <summary> <para> Strikethrough.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.NumberItem.Bold"> <summary> <para> Bold.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.BooleanItem"> <summary> <para>Boolean.</para> <para>When the object is serialized out as xml, its qualified name is x:b.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MemberPropertyIndex <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.#ctor"> <summary> Initializes a new instance of the BooleanItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the BooleanItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the BooleanItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.#ctor(System.String)"> <summary> Initializes a new instance of the BooleanItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.Unused"> <summary> <para> Unused Item.</para> <para>Represents the attribte in schema: u </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.Calculated"> <summary> <para> Calculated Item.</para> <para>Represents the attribte in schema: f </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.Caption"> <summary> <para> Caption.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.BooleanItem.PropertyCount"> <summary> <para> Member Property Count.</para> <para>Represents the attribte in schema: cp </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.ErrorItem"> <summary> <para>Error Value.</para> <para>When the object is serialized out as xml, its qualified name is x:e.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuples <x:tpls></description></item> <item><description>MemberPropertyIndex <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.#ctor"> <summary> Initializes a new instance of the ErrorItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ErrorItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ErrorItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.#ctor(System.String)"> <summary> Initializes a new instance of the ErrorItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Unused"> <summary> <para> Unused Item.</para> <para>Represents the attribte in schema: u </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Calculated"> <summary> <para> Calculated Item.</para> <para>Represents the attribte in schema: f </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Caption"> <summary> <para> Item Caption.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.PropertyCount"> <summary> <para> Member Property Count.</para> <para>Represents the attribte in schema: cp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.FormatIndex"> <summary> <para> Format Index.</para> <para>Represents the attribte in schema: in </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.BackgroundColor"> <summary> <para> background Color.</para> <para>Represents the attribte in schema: bc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.ForegroundColor"> <summary> <para> Foreground Color.</para> <para>Represents the attribte in schema: fc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Italic"> <summary> <para> Italic.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Underline"> <summary> <para> Underline.</para> <para>Represents the attribte in schema: un </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Strikethrough"> <summary> <para> Strikethrough.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Bold"> <summary> <para> Bold.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ErrorItem.Tuples"> <summary> <para> Tuples.</para> <para>Represents the element tag in schema: x:tpls </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.StringItem"> <summary> <para>Character Value.</para> <para>When the object is serialized out as xml, its qualified name is x:s.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuples <x:tpls></description></item> <item><description>MemberPropertyIndex <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.StringItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.StringItem.#ctor"> <summary> Initializes a new instance of the StringItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.StringItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the StringItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.StringItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the StringItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.StringItem.#ctor(System.String)"> <summary> Initializes a new instance of the StringItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.StringItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.Unused"> <summary> <para> Unused Item.</para> <para>Represents the attribte in schema: u </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.Calculated"> <summary> <para> Calculated Item.</para> <para>Represents the attribte in schema: f </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.Caption"> <summary> <para> Item Caption.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.PropertyCount"> <summary> <para> Member Property Count.</para> <para>Represents the attribte in schema: cp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.FormatIndex"> <summary> <para> Format Index.</para> <para>Represents the attribte in schema: in </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.BackgroundColor"> <summary> <para> Background Color.</para> <para>Represents the attribte in schema: bc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.ForegroundColor"> <summary> <para> Foreground Color.</para> <para>Represents the attribte in schema: fc </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.Italic"> <summary> <para> Italic.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.Underline"> <summary> <para> Underline.</para> <para>Represents the attribte in schema: un </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.Strikethrough"> <summary> <para> Strikethrough.</para> <para>Represents the attribte in schema: st </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.StringItem.Bold"> <summary> <para> Bold.</para> <para>Represents the attribte in schema: b </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem"> <summary> <para>Date Time.</para> <para>When the object is serialized out as xml, its qualified name is x:d.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MemberPropertyIndex <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.#ctor"> <summary> Initializes a new instance of the DateTimeItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DateTimeItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DateTimeItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.#ctor(System.String)"> <summary> Initializes a new instance of the DateTimeItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.Unused"> <summary> <para> Unused Item.</para> <para>Represents the attribte in schema: u </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.Calculated"> <summary> <para> Calculated Item Value.</para> <para>Represents the attribte in schema: f </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.Caption"> <summary> <para> Caption.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DateTimeItem.PropertyCount"> <summary> <para> Member Property Count.</para> <para>Represents the attribte in schema: cp </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Tuples"> <summary> <para>Tuples.</para> <para>When the object is serialized out as xml, its qualified name is x:tpls.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuple <x:tpl></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.TuplesType"> <summary> Defines the TuplesType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuple <x:tpl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TuplesType.#ctor"> <summary> Initializes a new instance of the TuplesType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TuplesType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TuplesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TuplesType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TuplesType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TuplesType.#ctor(System.String)"> <summary> Initializes a new instance of the TuplesType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TuplesType.MemberNameCount"> <summary> <para> Member Name Count.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuples.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuples.#ctor"> <summary> Initializes a new instance of the Tuples class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuples.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Tuples class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuples.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Tuples class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuples.#ctor(System.String)"> <summary> Initializes a new instance of the Tuples class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuples.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tuples.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tuples.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.SortByTuple"> <summary> <para>Sort By Tuple.</para> <para>When the object is serialized out as xml, its qualified name is x:sortByTuple.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuple <x:tpl></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortByTuple.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortByTuple.#ctor"> <summary> Initializes a new instance of the SortByTuple class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortByTuple.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SortByTuple class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortByTuple.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SortByTuple class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortByTuple.#ctor(System.String)"> <summary> Initializes a new instance of the SortByTuple class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SortByTuple.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SortByTuple.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SortByTuple.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.MemberPropertyIndex"> <summary> <para>Member Property Indexes.</para> <para>When the object is serialized out as xml, its qualified name is x:x.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.XType"> <summary> Defines the XType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.XType.#ctor"> <summary> Initializes a new instance of the XType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.XType.Val"> <summary> <para> Shared Items Index.</para> <para>Represents the attribte in schema: v </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberPropertyIndex.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberPropertyIndex.#ctor"> <summary> Initializes a new instance of the MemberPropertyIndex class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberPropertyIndex.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberPropertyIndex.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberPropertyIndex.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.MemberPropertiesMap"> <summary> <para>Member Properties Map.</para> <para>When the object is serialized out as xml, its qualified name is x:mpMap.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberPropertiesMap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberPropertiesMap.#ctor"> <summary> Initializes a new instance of the MemberPropertiesMap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberPropertiesMap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberPropertiesMap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberPropertiesMap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord"> <summary> <para>PivotCache Record.</para> <para>When the object is serialized out as xml, its qualified name is x:r.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MissingItem <x:m></description></item> <item><description>NumberItem <x:n></description></item> <item><description>BooleanItem <x:b></description></item> <item><description>ErrorItem <x:e></description></item> <item><description>StringItem <x:s></description></item> <item><description>DateTimeItem <x:d></description></item> <item><description>FieldItem <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord.#ctor"> <summary> Initializes a new instance of the PivotCacheRecord class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotCacheRecord class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotCacheRecord class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord.#ctor(System.String)"> <summary> Initializes a new instance of the PivotCacheRecord class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotCacheRecord.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Kpi"> <summary> <para>OLAP KPI.</para> <para>When the object is serialized out as xml, its qualified name is x:kpi.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Kpi.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Kpi.#ctor"> <summary> Initializes a new instance of the Kpi class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Kpi.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.UniqueName"> <summary> <para> KPI Unique Name.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.Caption"> <summary> <para> KPI Display Name.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.DisplayFolder"> <summary> <para> KPI Display Folder.</para> <para>Represents the attribte in schema: displayFolder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.MeasureGroup"> <summary> <para> KPI Measure Group Name.</para> <para>Represents the attribte in schema: measureGroup </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.ParentKpi"> <summary> <para> Parent KPI.</para> <para>Represents the attribte in schema: parent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.Value"> <summary> <para> KPI Value Unique Name.</para> <para>Represents the attribte in schema: value </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.Goal"> <summary> <para> KPI Goal Unique Name.</para> <para>Represents the attribte in schema: goal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.Status"> <summary> <para> KPI Status Unique Name.</para> <para>Represents the attribte in schema: status </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.Trend"> <summary> <para> KPI Trend Unique Name.</para> <para>Represents the attribte in schema: trend </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Kpi.Weight"> <summary> <para> KPI Weight Unique Name.</para> <para>Represents the attribte in schema: weight </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.FieldUsage"> <summary> <para>PivotCache Field Id.</para> <para>When the object is serialized out as xml, its qualified name is x:fieldUsage.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FieldUsage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FieldUsage.#ctor"> <summary> Initializes a new instance of the FieldUsage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.FieldUsage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FieldUsage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FieldUsage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.FieldUsage.Index"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.GroupLevel"> <summary> <para>OLAP Grouping Levels.</para> <para>When the object is serialized out as xml, its qualified name is x:groupLevel.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Groups <x:groups></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.#ctor"> <summary> Initializes a new instance of the GroupLevel class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupLevel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupLevel class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.#ctor(System.String)"> <summary> Initializes a new instance of the GroupLevel class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.UniqueName"> <summary> <para> Unique Name.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.Caption"> <summary> <para> Grouping Level Display Name.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.User"> <summary> <para> User-Defined Group Level.</para> <para>Represents the attribte in schema: user </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.CustomRollUp"> <summary> <para> Custom Roll Up.</para> <para>Represents the attribte in schema: customRollUp </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.Groups"> <summary> <para> OLAP Level Groups.</para> <para>Represents the element tag in schema: x:groups </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupLevel.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Groups"> <summary> <para>OLAP Level Groups.</para> <para>When the object is serialized out as xml, its qualified name is x:groups.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Group <x:group></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Groups.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Groups.#ctor"> <summary> Initializes a new instance of the Groups class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Groups.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Groups class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Groups.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Groups class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Groups.#ctor(System.String)"> <summary> Initializes a new instance of the Groups class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Groups.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Groups.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Groups.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Groups.Count"> <summary> <para> Level Group Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Group"> <summary> <para>OLAP Group.</para> <para>When the object is serialized out as xml, its qualified name is x:group.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GroupMembers <x:groupMembers></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Group.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Group.#ctor"> <summary> Initializes a new instance of the Group class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Group.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Group class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Group.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Group class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Group.#ctor(System.String)"> <summary> Initializes a new instance of the Group class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Group.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Group.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Group.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Group.Name"> <summary> <para> Group Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Group.UniqueName"> <summary> <para> Unique Group Name.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Group.Caption"> <summary> <para> Group Caption.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Group.UniqueParent"> <summary> <para> Parent Unique Name.</para> <para>Represents the attribte in schema: uniqueParent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Group.Id"> <summary> <para> Group Id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Group.GroupMembers"> <summary> <para> OLAP Group Members.</para> <para>Represents the element tag in schema: x:groupMembers </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.GroupMembers"> <summary> <para>OLAP Group Members.</para> <para>When the object is serialized out as xml, its qualified name is x:groupMembers.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>GroupMember <x:groupMember></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.#ctor"> <summary> Initializes a new instance of the GroupMembers class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupMembers class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupMembers class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.#ctor(System.String)"> <summary> Initializes a new instance of the GroupMembers class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupMembers.Count"> <summary> <para> Group Member Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.GroupMember"> <summary> <para>OLAP Group Member.</para> <para>When the object is serialized out as xml, its qualified name is x:groupMember.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMember.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMember.#ctor"> <summary> Initializes a new instance of the GroupMember class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupMember.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupMember.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupMember.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupMember.UniqueName"> <summary> <para> Group Member Unique Name.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupMember.Group"> <summary> <para> Group.</para> <para>Represents the attribte in schema: group </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Entries"> <summary> <para>Entries.</para> <para>When the object is serialized out as xml, its qualified name is x:entries.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MissingItem <x:m></description></item> <item><description>NumberItem <x:n></description></item> <item><description>ErrorItem <x:e></description></item> <item><description>StringItem <x:s></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Entries.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Entries.#ctor"> <summary> Initializes a new instance of the Entries class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Entries.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Entries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Entries.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Entries class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Entries.#ctor(System.String)"> <summary> Initializes a new instance of the Entries class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Entries.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Entries.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Entries.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Entries.Count"> <summary> <para> Tuple Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Sets"> <summary> <para>Sets.</para> <para>When the object is serialized out as xml, its qualified name is x:sets.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>TupleSet <x:set></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Sets.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Sets.#ctor"> <summary> Initializes a new instance of the Sets class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Sets.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Sets class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Sets.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Sets class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Sets.#ctor(System.String)"> <summary> Initializes a new instance of the Sets class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Sets.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Sets.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Sets.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Sets.Count"> <summary> <para> Tuple Set Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.QueryCache"> <summary> <para>OLAP Query Cache.</para> <para>When the object is serialized out as xml, its qualified name is x:queryCache.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Query <x:query></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryCache.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryCache.#ctor"> <summary> Initializes a new instance of the QueryCache class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryCache.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QueryCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryCache.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QueryCache class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryCache.#ctor(System.String)"> <summary> Initializes a new instance of the QueryCache class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryCache.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryCache.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryCache.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryCache.Count"> <summary> <para> Cached Query Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.ServerFormats"> <summary> <para>Server Formats.</para> <para>When the object is serialized out as xml, its qualified name is x:serverFormats.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ServerFormat <x:serverFormat></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.#ctor"> <summary> Initializes a new instance of the ServerFormats class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ServerFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ServerFormats class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.#ctor(System.String)"> <summary> Initializes a new instance of the ServerFormats class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ServerFormats.Count"> <summary> <para> Format Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.ServerFormat"> <summary> <para>Server Format.</para> <para>When the object is serialized out as xml, its qualified name is x:serverFormat.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormat.#ctor"> <summary> Initializes a new instance of the ServerFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ServerFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ServerFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ServerFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ServerFormat.Culture"> <summary> <para> Culture.</para> <para>Represents the attribte in schema: culture </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ServerFormat.Format"> <summary> <para> Format.</para> <para>Represents the attribte in schema: format </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Tuple"> <summary> <para>Tuple.</para> <para>When the object is serialized out as xml, its qualified name is x:tpl.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuple.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuple.#ctor"> <summary> Initializes a new instance of the Tuple class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Tuple.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tuple.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tuple.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tuple.Field"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: fld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tuple.Hierarchy"> <summary> <para> Hierarchy Index.</para> <para>Represents the attribte in schema: hier </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Tuple.Item"> <summary> <para> Item Index.</para> <para>Represents the attribte in schema: item </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.TupleSet"> <summary> <para>OLAP Set.</para> <para>When the object is serialized out as xml, its qualified name is x:set.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuples <x:tpls></description></item> <item><description>SortByTuple <x:sortByTuple></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TupleSet.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TupleSet.#ctor"> <summary> Initializes a new instance of the TupleSet class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TupleSet.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the TupleSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TupleSet.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the TupleSet class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TupleSet.#ctor(System.String)"> <summary> Initializes a new instance of the TupleSet class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.TupleSet.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TupleSet.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TupleSet.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TupleSet.Count"> <summary> <para> Number of Tuples.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TupleSet.MaxRank"> <summary> <para> Maximum Rank Requested.</para> <para>Represents the attribte in schema: maxRank </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TupleSet.SetDefinition"> <summary> <para> MDX Set Definition.</para> <para>Represents the attribte in schema: setDefinition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TupleSet.SortType"> <summary> <para> Set Sort Order.</para> <para>Represents the attribte in schema: sortType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.TupleSet.QueryFailed"> <summary> <para> Query Failed.</para> <para>Represents the attribte in schema: queryFailed </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Query"> <summary> <para>Query.</para> <para>When the object is serialized out as xml, its qualified name is x:query.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Tuples <x:tpls></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Query.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Query.#ctor"> <summary> Initializes a new instance of the Query class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Query.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Query class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Query.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Query class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Query.#ctor(System.String)"> <summary> Initializes a new instance of the Query class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Query.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Query.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Query.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Query.Mdx"> <summary> <para> MDX Query String.</para> <para>Represents the attribte in schema: mdx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Query.Tuples"> <summary> <para> Tuples.</para> <para>Represents the element tag in schema: x:tpls </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem"> <summary> <para>Calculated Item.</para> <para>When the object is serialized out as xml, its qualified name is x:calculatedItem.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotArea <x:pivotArea></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.#ctor"> <summary> Initializes a new instance of the CalculatedItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CalculatedItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CalculatedItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.#ctor(System.String)"> <summary> Initializes a new instance of the CalculatedItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.Field"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: field </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.Formula"> <summary> <para> Calculated Item Formula.</para> <para>Represents the attribte in schema: formula </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.PivotArea"> <summary> <para> Calculated Item Location.</para> <para>Represents the element tag in schema: x:pivotArea </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedItem.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotArea"> <summary> <para>Calculated Item Location.</para> <para>When the object is serialized out as xml, its qualified name is x:pivotArea.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotAreaReferences <x:references></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotArea.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotArea.#ctor"> <summary> Initializes a new instance of the PivotArea class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotArea.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotArea class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotArea.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotArea class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotArea.#ctor(System.String)"> <summary> Initializes a new instance of the PivotArea class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotArea.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.Field"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: field </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.Type"> <summary> <para> Rule Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.DataOnly"> <summary> <para> Data Only.</para> <para>Represents the attribte in schema: dataOnly </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.LabelOnly"> <summary> <para> Labels Only.</para> <para>Represents the attribte in schema: labelOnly </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.GrandRow"> <summary> <para> Include Row Grand Total.</para> <para>Represents the attribte in schema: grandRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.GrandColumn"> <summary> <para> Include Column Grand Total.</para> <para>Represents the attribte in schema: grandCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.CacheIndex"> <summary> <para> Cache Index.</para> <para>Represents the attribte in schema: cacheIndex </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.Outline"> <summary> <para> Outline.</para> <para>Represents the attribte in schema: outline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.Offset"> <summary> <para> Offset Reference.</para> <para>Represents the attribte in schema: offset </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.CollapsedLevelsAreSubtotals"> <summary> <para> Collapsed Levels Are Subtotals.</para> <para>Represents the attribte in schema: collapsedLevelsAreSubtotals </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.Axis"> <summary> <para> Axis.</para> <para>Represents the attribte in schema: axis </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.FieldPosition"> <summary> <para> Field Position.</para> <para>Represents the attribte in schema: fieldPosition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.PivotAreaReferences"> <summary> <para> References.</para> <para>Represents the element tag in schema: x:references </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotArea.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember"> <summary> <para>Calculated Member.</para> <para>When the object is serialized out as xml, its qualified name is x:calculatedMember.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>CalculatedMemberExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.#ctor"> <summary> Initializes a new instance of the CalculatedMember class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CalculatedMember class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CalculatedMember class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.#ctor(System.String)"> <summary> Initializes a new instance of the CalculatedMember class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.Name"> <summary> <para> Calculated Member Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.Mdx"> <summary> <para> Calculated Member MDX Formula.</para> <para>Represents the attribte in schema: mdx </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.MemberName"> <summary> <para> OLAP Calculated Member Name.</para> <para>Represents the attribte in schema: memberName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.Hierarchy"> <summary> <para> Hierarchy Name.</para> <para>Represents the attribte in schema: hierarchy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.ParentName"> <summary> <para> Parent Name.</para> <para>Represents the attribte in schema: parent </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.SolveOrder"> <summary> <para> Calculated Members Solve Order.</para> <para>Represents the attribte in schema: solveOrder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.Set"> <summary> <para> Set.</para> <para>Represents the attribte in schema: set </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CalculatedMember.CalculatedMemberExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotField"> <summary> <para>PivotTable Field.</para> <para>When the object is serialized out as xml, its qualified name is x:pivotField.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Items <x:items></description></item> <item><description>AutoSortScope <x:autoSortScope></description></item> <item><description>PivotFieldExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotField.#ctor"> <summary> Initializes a new instance of the PivotField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotField.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotField.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotField.#ctor(System.String)"> <summary> Initializes a new instance of the PivotField class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.Name"> <summary> <para> Field Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.Axis"> <summary> <para> Axis.</para> <para>Represents the attribte in schema: axis </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DataField"> <summary> <para> Data Field.</para> <para>Represents the attribte in schema: dataField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.SubtotalCaption"> <summary> <para> Custom Subtotal Caption.</para> <para>Represents the attribte in schema: subtotalCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ShowDropDowns"> <summary> <para> Show PivotField Header Drop Downs.</para> <para>Represents the attribte in schema: showDropDowns </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.HiddenLevel"> <summary> <para> Hidden Level.</para> <para>Represents the attribte in schema: hiddenLevel </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.UniqueMemberProperty"> <summary> <para> Unique Member Property.</para> <para>Represents the attribte in schema: uniqueMemberProperty </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.Compact"> <summary> <para> Compact.</para> <para>Represents the attribte in schema: compact </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.AllDrilled"> <summary> <para> All Items Expanded.</para> <para>Represents the attribte in schema: allDrilled </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.NumberFormatId"> <summary> <para> Number Format Id.</para> <para>Represents the attribte in schema: numFmtId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.Outline"> <summary> <para> Outline Items.</para> <para>Represents the attribte in schema: outline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.SubtotalTop"> <summary> <para> Subtotals At Top.</para> <para>Represents the attribte in schema: subtotalTop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DragToRow"> <summary> <para> Drag To Row.</para> <para>Represents the attribte in schema: dragToRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DragToColumn"> <summary> <para> Drag To Column.</para> <para>Represents the attribte in schema: dragToCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.MultipleItemSelectionAllowed"> <summary> <para> Multiple Field Filters.</para> <para>Represents the attribte in schema: multipleItemSelectionAllowed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DragToPage"> <summary> <para> Drag Field to Page.</para> <para>Represents the attribte in schema: dragToPage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DragToData"> <summary> <para> Field Can Drag to Data.</para> <para>Represents the attribte in schema: dragToData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DragOff"> <summary> <para> Drag Off.</para> <para>Represents the attribte in schema: dragOff </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ShowAll"> <summary> <para> Show All Items.</para> <para>Represents the attribte in schema: showAll </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.InsertBlankRow"> <summary> <para> Insert Blank Row.</para> <para>Represents the attribte in schema: insertBlankRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ServerField"> <summary> <para> Server-based Page Field.</para> <para>Represents the attribte in schema: serverField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.InsertPageBreak"> <summary> <para> Insert Item Page Break.</para> <para>Represents the attribte in schema: insertPageBreak </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.AutoShow"> <summary> <para> Auto Show.</para> <para>Represents the attribte in schema: autoShow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.TopAutoShow"> <summary> <para> Top Auto Show.</para> <para>Represents the attribte in schema: topAutoShow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.HideNewItems"> <summary> <para> Hide New Items.</para> <para>Represents the attribte in schema: hideNewItems </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.MeasureFilter"> <summary> <para> Measure Filter.</para> <para>Represents the attribte in schema: measureFilter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.IncludeNewItemsInFilter"> <summary> <para> Inclusive Manual Filter.</para> <para>Represents the attribte in schema: includeNewItemsInFilter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ItemPageCount"> <summary> <para> Items Per Page Count.</para> <para>Represents the attribte in schema: itemPageCount </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.SortType"> <summary> <para> Auto Sort Type.</para> <para>Represents the attribte in schema: sortType </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DataSourceSort"> <summary> <para> Data Source Sort.</para> <para>Represents the attribte in schema: dataSourceSort </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.NonAutoSortDefault"> <summary> <para> Auto Sort.</para> <para>Represents the attribte in schema: nonAutoSortDefault </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.RankBy"> <summary> <para> Auto Show Rank By.</para> <para>Represents the attribte in schema: rankBy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DefaultSubtotal"> <summary> <para> Show Default Subtotal.</para> <para>Represents the attribte in schema: defaultSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.SumSubtotal"> <summary> <para> Sum Subtotal.</para> <para>Represents the attribte in schema: sumSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.CountASubtotal"> <summary> <para> CountA.</para> <para>Represents the attribte in schema: countASubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.AverageSubTotal"> <summary> <para> Average.</para> <para>Represents the attribte in schema: avgSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.MaxSubtotal"> <summary> <para> Max Subtotal.</para> <para>Represents the attribte in schema: maxSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.MinSubtotal"> <summary> <para> Min Subtotal.</para> <para>Represents the attribte in schema: minSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ApplyProductInSubtotal"> <summary> <para> Product Subtotal.</para> <para>Represents the attribte in schema: productSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.CountSubtotal"> <summary> <para> Count.</para> <para>Represents the attribte in schema: countSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ApplyStandardDeviationInSubtotal"> <summary> <para> StdDev Subtotal.</para> <para>Represents the attribte in schema: stdDevSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ApplyStandardDeviationPInSubtotal"> <summary> <para> StdDevP Subtotal.</para> <para>Represents the attribte in schema: stdDevPSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ApplyVarianceInSubtotal"> <summary> <para> Variance Subtotal.</para> <para>Represents the attribte in schema: varSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ApplyVariancePInSubtotal"> <summary> <para> VarP Subtotal.</para> <para>Represents the attribte in schema: varPSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ShowPropCell"> <summary> <para> Show Member Property in Cell.</para> <para>Represents the attribte in schema: showPropCell </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ShowPropertyTooltip"> <summary> <para> Show Member Property ToolTip.</para> <para>Represents the attribte in schema: showPropTip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.ShowPropAsCaption"> <summary> <para> Show As Caption.</para> <para>Represents the attribte in schema: showPropAsCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.DefaultAttributeDrillState"> <summary> <para> Drill State.</para> <para>Represents the attribte in schema: defaultAttributeDrillState </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.Items"> <summary> <para> Field Items.</para> <para>Represents the element tag in schema: x:items </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.AutoSortScope"> <summary> <para> AutoSort Scope.</para> <para>Represents the element tag in schema: x:autoSortScope </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotField.PivotFieldExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Item"> <summary> <para>PivotTable Field Item.</para> <para>When the object is serialized out as xml, its qualified name is x:item.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Item.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Item.#ctor"> <summary> Initializes a new instance of the Item class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Item.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.ItemName"> <summary> <para> Item User Caption.</para> <para>Represents the attribte in schema: n </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.ItemType"> <summary> <para> Item Type.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: h </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.HasStringVlue"> <summary> <para> Character.</para> <para>Represents the attribte in schema: s </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.HideDetails"> <summary> <para> Hide Details.</para> <para>Represents the attribte in schema: sd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.Calculated"> <summary> <para> Calculated Member.</para> <para>Represents the attribte in schema: f </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.Missing"> <summary> <para> Missing.</para> <para>Represents the attribte in schema: m </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.ChildItems"> <summary> <para> Child Items.</para> <para>Represents the attribte in schema: c </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.Index"> <summary> <para> Item Index.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.Expanded"> <summary> <para> Expanded.</para> <para>Represents the attribte in schema: d </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Item.DrillAcrossAttributes"> <summary> <para> Drill Across Attributes.</para> <para>Represents the attribte in schema: e </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.DataField"> <summary> <para>Data Field Item.</para> <para>When the object is serialized out as xml, its qualified name is x:dataField.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DataFieldExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataField.#ctor"> <summary> Initializes a new instance of the DataField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataField.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DataField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataField.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DataField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataField.#ctor(System.String)"> <summary> Initializes a new instance of the DataField class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DataField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.Name"> <summary> <para> Data Field Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.Field"> <summary> <para> Field.</para> <para>Represents the attribte in schema: fld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.Subtotal"> <summary> <para> Subtotal.</para> <para>Represents the attribte in schema: subtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.ShowDataAs"> <summary> <para> Show Data As Display Format.</para> <para>Represents the attribte in schema: showDataAs </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.BaseField"> <summary> <para> 'Show Data As' Base Field.</para> <para>Represents the attribte in schema: baseField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.BaseItem"> <summary> <para> 'Show Data As' Base Setting.</para> <para>Represents the attribte in schema: baseItem </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.NumberFormatId"> <summary> <para> Number Format Id.</para> <para>Represents the attribte in schema: numFmtId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DataField.DataFieldExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.RowItem"> <summary> <para>Row Items.</para> <para>When the object is serialized out as xml, its qualified name is x:i.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MemberPropertyIndex <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowItem.#ctor"> <summary> Initializes a new instance of the RowItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RowItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RowItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowItem.#ctor(System.String)"> <summary> Initializes a new instance of the RowItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RowItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RowItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RowItem.ItemType"> <summary> <para> Item Type.</para> <para>Represents the attribte in schema: t </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RowItem.RepeatedItemCount"> <summary> <para> Repeated Items Count.</para> <para>Represents the attribte in schema: r </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RowItem.Index"> <summary> <para> Data Field Index.</para> <para>Represents the attribte in schema: i </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Field"> <summary> <para>Row Items.</para> <para>When the object is serialized out as xml, its qualified name is x:field.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Field.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Field.#ctor"> <summary> Initializes a new instance of the Field class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Field.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Field.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Field.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Field.Index"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: x </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Format"> <summary> <para>PivotTable Format.</para> <para>When the object is serialized out as xml, its qualified name is x:format.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotArea <x:pivotArea></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Format.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Format.#ctor"> <summary> Initializes a new instance of the Format class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Format.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the Format class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Format.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the Format class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Format.#ctor(System.String)"> <summary> Initializes a new instance of the Format class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Format.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Format.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Format.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Format.Action"> <summary> <para> Format Action.</para> <para>Represents the attribte in schema: action </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Format.FormatId"> <summary> <para> Format Id.</para> <para>Represents the attribte in schema: dxfId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Format.PivotArea"> <summary> <para> Pivot Table Location.</para> <para>Represents the element tag in schema: x:pivotArea </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Format.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat"> <summary> <para>Conditional Formatting.</para> <para>When the object is serialized out as xml, its qualified name is x:conditionalFormat.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotAreas <x:pivotAreas></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.#ctor"> <summary> Initializes a new instance of the ConditionalFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ConditionalFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ConditionalFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.#ctor(System.String)"> <summary> Initializes a new instance of the ConditionalFormat class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.Scope"> <summary> <para> Conditional Formatting Scope.</para> <para>Represents the attribte in schema: scope </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.Type"> <summary> <para> Conditional Formatting Rule Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.Priority"> <summary> <para> Priority.</para> <para>Represents the attribte in schema: priority </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.PivotAreas"> <summary> <para> Pivot Areas.</para> <para>Represents the element tag in schema: x:pivotAreas </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ConditionalFormat.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotAreas"> <summary> <para>Pivot Areas.</para> <para>When the object is serialized out as xml, its qualified name is x:pivotAreas.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotArea <x:pivotArea></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.#ctor"> <summary> Initializes a new instance of the PivotAreas class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotAreas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotAreas class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.#ctor(System.String)"> <summary> Initializes a new instance of the PivotAreas class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreas.Count"> <summary> <para> Pivot Area Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.ChartFormat"> <summary> <para>PivotChart Format.</para> <para>When the object is serialized out as xml, its qualified name is x:chartFormat.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotArea <x:pivotArea></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.#ctor"> <summary> Initializes a new instance of the ChartFormat class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the ChartFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the ChartFormat class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.#ctor(System.String)"> <summary> Initializes a new instance of the ChartFormat class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.Chart"> <summary> <para> Chart Index.</para> <para>Represents the attribte in schema: chart </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.Format"> <summary> <para> Pivot Format Id.</para> <para>Represents the attribte in schema: format </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.Series"> <summary> <para> Series Format.</para> <para>Represents the attribte in schema: series </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ChartFormat.PivotArea"> <summary> <para> Pivot Table Location Rule.</para> <para>Represents the element tag in schema: x:pivotArea </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy"> <summary> <para>OLAP Hierarchy.</para> <para>When the object is serialized out as xml, its qualified name is x:pivotHierarchy.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MemberProperties <x:mps></description></item> <item><description>Members <x:members></description></item> <item><description>PivotHierarchyExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.#ctor"> <summary> Initializes a new instance of the PivotHierarchy class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotHierarchy class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotHierarchy class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.#ctor(System.String)"> <summary> Initializes a new instance of the PivotHierarchy class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.Outline"> <summary> <para> Outline New Levels.</para> <para>Represents the attribte in schema: outline </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.MultipleItemSelectionAllowed"> <summary> <para> Multiple Field Filters.</para> <para>Represents the attribte in schema: multipleItemSelectionAllowed </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.SubtotalTop"> <summary> <para> New Levels Subtotals At Top.</para> <para>Represents the attribte in schema: subtotalTop </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.ShowInFieldList"> <summary> <para> Show In Field List.</para> <para>Represents the attribte in schema: showInFieldList </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.DragToRow"> <summary> <para> Drag To Row.</para> <para>Represents the attribte in schema: dragToRow </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.DragToColumn"> <summary> <para> Drag To Column.</para> <para>Represents the attribte in schema: dragToCol </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.DragToPage"> <summary> <para> Drag to Page.</para> <para>Represents the attribte in schema: dragToPage </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.DragToData"> <summary> <para> Drag To Data.</para> <para>Represents the attribte in schema: dragToData </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.DragOff"> <summary> <para> Drag Off.</para> <para>Represents the attribte in schema: dragOff </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.IncludeNewItemsInFilter"> <summary> <para> Inclusive Manual Filter.</para> <para>Represents the attribte in schema: includeNewItemsInFilter </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.Caption"> <summary> <para> Hierarchy Caption.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotHierarchy.MemberProperties"> <summary> <para> OLAP Member Properties.</para> <para>Represents the element tag in schema: x:mps </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.RowHierarchyUsage"> <summary> <para>Row OLAP Hierarchies.</para> <para>When the object is serialized out as xml, its qualified name is x:rowHierarchyUsage.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.HierarchyUsageType"> <summary> Defines the HierarchyUsageType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.HierarchyUsageType.#ctor"> <summary> Initializes a new instance of the HierarchyUsageType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.HierarchyUsageType.Value"> <summary> <para> Hierarchy Usage.</para> <para>Represents the attribte in schema: hierarchyUsage </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowHierarchyUsage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowHierarchyUsage.#ctor"> <summary> Initializes a new instance of the RowHierarchyUsage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RowHierarchyUsage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RowHierarchyUsage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RowHierarchyUsage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.ColumnHierarchyUsage"> <summary> <para>Column OLAP Hierarchies.</para> <para>When the object is serialized out as xml, its qualified name is x:colHierarchyUsage.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ColumnHierarchyUsage.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ColumnHierarchyUsage.#ctor"> <summary> Initializes a new instance of the ColumnHierarchyUsage class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.ColumnHierarchyUsage.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ColumnHierarchyUsage.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.ColumnHierarchyUsage.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.MemberProperty"> <summary> <para>OLAP Member Property.</para> <para>When the object is serialized out as xml, its qualified name is x:mp.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.#ctor"> <summary> Initializes a new instance of the MemberProperty class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.Name"> <summary> <para> OLAP Member Property Unique Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.ShowCell"> <summary> <para> Show Cell.</para> <para>Represents the attribte in schema: showCell </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.ShowTip"> <summary> <para> Show Tooltip.</para> <para>Represents the attribte in schema: showTip </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.ShowAsCaption"> <summary> <para> Show As Caption.</para> <para>Represents the attribte in schema: showAsCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.NameLength"> <summary> <para> Name Length.</para> <para>Represents the attribte in schema: nameLen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.PropertyNamePosition"> <summary> <para> Property Name Character Index.</para> <para>Represents the attribte in schema: pPos </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.PropertyNameLength"> <summary> <para> Property Name Length.</para> <para>Represents the attribte in schema: pLen </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.Level"> <summary> <para> Level Index.</para> <para>Represents the attribte in schema: level </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MemberProperty.Field"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: field </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Member"> <summary> <para>Member.</para> <para>When the object is serialized out as xml, its qualified name is x:member.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Member.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Member.#ctor"> <summary> Initializes a new instance of the Member class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Member.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Member.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Member.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Member.Name"> <summary> <para> Hidden Item Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Dimension"> <summary> <para>OLAP Dimension.</para> <para>When the object is serialized out as xml, its qualified name is x:dimension.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Dimension.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Dimension.#ctor"> <summary> Initializes a new instance of the Dimension class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Dimension.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Dimension.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Dimension.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Dimension.Measure"> <summary> <para> Measure.</para> <para>Represents the attribte in schema: measure </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Dimension.Name"> <summary> <para> Dimension Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Dimension.UniqueName"> <summary> <para> Dimension Unique Name.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Dimension.Caption"> <summary> <para> Dimension Display Name.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.MeasureGroup"> <summary> <para>OLAP Measure Group.</para> <para>When the object is serialized out as xml, its qualified name is x:measureGroup.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MeasureGroup.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MeasureGroup.#ctor"> <summary> Initializes a new instance of the MeasureGroup class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MeasureGroup.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MeasureGroup.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MeasureGroup.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MeasureGroup.Name"> <summary> <para> Measure Group Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MeasureGroup.Caption"> <summary> <para> Measure Group Display Name.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.MeasureDimensionMap"> <summary> <para>OLAP Measure Group.</para> <para>When the object is serialized out as xml, its qualified name is x:map.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MeasureDimensionMap.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MeasureDimensionMap.#ctor"> <summary> Initializes a new instance of the MeasureDimensionMap class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.MeasureDimensionMap.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MeasureDimensionMap.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MeasureDimensionMap.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MeasureDimensionMap.MeasureGroup"> <summary> <para> Measure Group Id.</para> <para>Represents the attribte in schema: measureGroup </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.MeasureDimensionMap.Dimension"> <summary> <para> Dimension Id.</para> <para>Represents the attribte in schema: dimension </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotFilter"> <summary> <para>PivotTable Advanced Filter.</para> <para>When the object is serialized out as xml, its qualified name is x:filter.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>AutoFilter <x:autoFilter></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.#ctor"> <summary> Initializes a new instance of the PivotFilter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotFilter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotFilter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.#ctor(System.String)"> <summary> Initializes a new instance of the PivotFilter class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.Field"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: fld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.MemberPropertyFieldId"> <summary> <para> Member Property Field Id.</para> <para>Represents the attribte in schema: mpFld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.Type"> <summary> <para> Pivot Filter Type.</para> <para>Represents the attribte in schema: type </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.EvaluationOrder"> <summary> <para> Evaluation Order.</para> <para>Represents the attribte in schema: evalOrder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.Id"> <summary> <para> Pivot Filter Id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.MeasureHierarchy"> <summary> <para> Measure Index.</para> <para>Represents the attribte in schema: iMeasureHier </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.MeasureField"> <summary> <para> Measure Field Index.</para> <para>Represents the attribte in schema: iMeasureFld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.Name"> <summary> <para> Pivot Filter Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.Description"> <summary> <para> Pivot Filter Description.</para> <para>Represents the attribte in schema: description </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.StringValue1"> <summary> <para> Label Pivot.</para> <para>Represents the attribte in schema: stringValue1 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.StringValue2"> <summary> <para> Label Pivot Filter String Value 2.</para> <para>Represents the attribte in schema: stringValue2 </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.AutoFilter"> <summary> <para> Auto Filter.</para> <para>Represents the element tag in schema: x:autoFilter </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotFilter.ExtensionList"> <summary> <para> ExtensionList.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.AutoFilter"> <summary> <para>Auto Filter.</para> <para>When the object is serialized out as xml, its qualified name is x:autoFilter.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FilterColumn <x:filterColumn></description></item> <item><description>SortState <x:sortState></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.#ctor"> <summary> Initializes a new instance of the AutoFilter class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the AutoFilter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the AutoFilter class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.#ctor(System.String)"> <summary> Initializes a new instance of the AutoFilter class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.AutoFilter.Reference"> <summary> <para> Cell or Range Reference.</para> <para>Represents the attribte in schema: ref </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy"> <summary> <para>PivotCache Hierarchy.</para> <para>When the object is serialized out as xml, its qualified name is x:cacheHierarchy.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FieldsUsage <x:fieldsUsage></description></item> <item><description>GroupLevels <x:groupLevels></description></item> <item><description>CacheHierarchyExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.#ctor"> <summary> Initializes a new instance of the CacheHierarchy class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CacheHierarchy class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CacheHierarchy class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.#ctor(System.String)"> <summary> Initializes a new instance of the CacheHierarchy class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.UniqueName"> <summary> <para> Hierarchy Unique Name.</para> <para>Represents the attribte in schema: uniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Caption"> <summary> <para> Hierarchy Display Name.</para> <para>Represents the attribte in schema: caption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Measure"> <summary> <para> Measure Hierarchy.</para> <para>Represents the attribte in schema: measure </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Set"> <summary> <para> Set.</para> <para>Represents the attribte in schema: set </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.ParentSet"> <summary> <para> Parent Set.</para> <para>Represents the attribte in schema: parentSet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.IconSet"> <summary> <para> KPI Icon Set.</para> <para>Represents the attribte in schema: iconSet </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Attribute"> <summary> <para> Attribute Hierarchy.</para> <para>Represents the attribte in schema: attribute </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Time"> <summary> <para> Time.</para> <para>Represents the attribte in schema: time </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.KeyAttribute"> <summary> <para> Key Attribute Hierarchy.</para> <para>Represents the attribte in schema: keyAttribute </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.DefaultMemberUniqueName"> <summary> <para> Default Member Unique Name.</para> <para>Represents the attribte in schema: defaultMemberUniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.AllUniqueName"> <summary> <para> Unique Name of 'All'.</para> <para>Represents the attribte in schema: allUniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.AllCaption"> <summary> <para> Display Name of 'All'.</para> <para>Represents the attribte in schema: allCaption </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.DimensionUniqueName"> <summary> <para> Dimension Unique Name.</para> <para>Represents the attribte in schema: dimensionUniqueName </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.DisplayFolder"> <summary> <para> Display Folder.</para> <para>Represents the attribte in schema: displayFolder </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.MeasureGroup"> <summary> <para> Measure Group Name.</para> <para>Represents the attribte in schema: measureGroup </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Measures"> <summary> <para> Measures.</para> <para>Represents the attribte in schema: measures </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Count"> <summary> <para> Levels Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.OneField"> <summary> <para> One Field.</para> <para>Represents the attribte in schema: oneField </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.MemberValueDatatype"> <summary> <para> Member Value Data Type.</para> <para>Represents the attribte in schema: memberValueDatatype </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Unbalanced"> <summary> <para> Unbalanced.</para> <para>Represents the attribte in schema: unbalanced </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.UnbalancedGroup"> <summary> <para> Unbalanced Group.</para> <para>Represents the attribte in schema: unbalancedGroup </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.Hidden"> <summary> <para> Hidden.</para> <para>Represents the attribte in schema: hidden </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.FieldsUsage"> <summary> <para> Fields Usage.</para> <para>Represents the element tag in schema: x:fieldsUsage </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.GroupLevels"> <summary> <para> OLAP Grouping Levels.</para> <para>Represents the element tag in schema: x:groupLevels </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CacheHierarchy.CacheHierarchyExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.RangeProperties"> <summary> <para>Range Grouping Properties.</para> <para>When the object is serialized out as xml, its qualified name is x:rangePr.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.#ctor"> <summary> Initializes a new instance of the RangeProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.AutoStart"> <summary> <para> Source Data Set Beginning Range.</para> <para>Represents the attribte in schema: autoStart </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.AutoEnd"> <summary> <para> Source Data Ending Range.</para> <para>Represents the attribte in schema: autoEnd </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.GroupBy"> <summary> <para> Group By.</para> <para>Represents the attribte in schema: groupBy </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.StartNumber"> <summary> <para> Numeric Grouping Start Value.</para> <para>Represents the attribte in schema: startNum </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.EndNum"> <summary> <para> Numeric Grouping End Value.</para> <para>Represents the attribte in schema: endNum </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.StartDate"> <summary> <para> Date Grouping Start Value.</para> <para>Represents the attribte in schema: startDate </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.EndDate"> <summary> <para> Date Grouping End Value.</para> <para>Represents the attribte in schema: endDate </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RangeProperties.GroupInterval"> <summary> <para> Grouping Interval.</para> <para>Represents the attribte in schema: groupInterval </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties"> <summary> <para>Discrete Grouping Properties.</para> <para>When the object is serialized out as xml, its qualified name is x:discretePr.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FieldItem <x:x></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.#ctor"> <summary> Initializes a new instance of the DiscreteProperties class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the DiscreteProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the DiscreteProperties class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.#ctor(System.String)"> <summary> Initializes a new instance of the DiscreteProperties class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DiscreteProperties.Count"> <summary> <para> Mapping Index Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.GroupItems"> <summary> <para>OLAP Group Items.</para> <para>When the object is serialized out as xml, its qualified name is x:groupItems.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>MissingItem <x:m></description></item> <item><description>NumberItem <x:n></description></item> <item><description>BooleanItem <x:b></description></item> <item><description>ErrorItem <x:e></description></item> <item><description>StringItem <x:s></description></item> <item><description>DateTimeItem <x:d></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupItems.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupItems.#ctor"> <summary> Initializes a new instance of the GroupItems class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupItems.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the GroupItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupItems.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the GroupItems class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupItems.#ctor(System.String)"> <summary> Initializes a new instance of the GroupItems class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.GroupItems.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupItems.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupItems.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.GroupItems.Count"> <summary> <para> Items Created Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PageField"> <summary> <para>Page Field.</para> <para>When the object is serialized out as xml, its qualified name is x:pageField.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageField.#ctor"> <summary> Initializes a new instance of the PageField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageField.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PageField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageField.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PageField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageField.#ctor(System.String)"> <summary> Initializes a new instance of the PageField class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PageField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageField.Field"> <summary> <para> Field.</para> <para>Represents the attribte in schema: fld </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageField.Item"> <summary> <para> Item Index.</para> <para>Represents the attribte in schema: item </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageField.Hierarchy"> <summary> <para> OLAP Hierarchy Index.</para> <para>Represents the attribte in schema: hier </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageField.Name"> <summary> <para> Hierarchy Unique Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageField.Caption"> <summary> <para> Hierarchy Display Name.</para> <para>Represents the attribte in schema: cap </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PageField.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences"> <summary> <para>References.</para> <para>When the object is serialized out as xml, its qualified name is x:references.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>PivotAreaReference <x:reference></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.#ctor"> <summary> Initializes a new instance of the PivotAreaReferences class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotAreaReferences class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotAreaReferences class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.#ctor(System.String)"> <summary> Initializes a new instance of the PivotAreaReferences class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReferences.Count"> <summary> <para> Pivot Filter Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference"> <summary> <para>Reference.</para> <para>When the object is serialized out as xml, its qualified name is x:reference.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>FieldItem <x:x></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.#ctor"> <summary> Initializes a new instance of the PivotAreaReference class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the PivotAreaReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the PivotAreaReference class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.#ctor(System.String)"> <summary> Initializes a new instance of the PivotAreaReference class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.Field"> <summary> <para> Field Index.</para> <para>Represents the attribte in schema: field </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.Count"> <summary> <para> Item Index Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.Selected"> <summary> <para> Selected.</para> <para>Represents the attribte in schema: selected </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.ByPosition"> <summary> <para> Positional Reference.</para> <para>Represents the attribte in schema: byPosition </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.Relative"> <summary> <para> Relative Reference.</para> <para>Represents the attribte in schema: relative </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.DefaultSubtotal"> <summary> <para> Include Default Filter.</para> <para>Represents the attribte in schema: defaultSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.SumSubtotal"> <summary> <para> Include Sum Filter.</para> <para>Represents the attribte in schema: sumSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.CountASubtotal"> <summary> <para> Include CountA Filter.</para> <para>Represents the attribte in schema: countASubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.AverageSubtotal"> <summary> <para> Include Average Filter.</para> <para>Represents the attribte in schema: avgSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.MaxSubtotal"> <summary> <para> Include Maximum Filter.</para> <para>Represents the attribte in schema: maxSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.MinSubtotal"> <summary> <para> Include Minimum Filter.</para> <para>Represents the attribte in schema: minSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.ApplyProductInSubtotal"> <summary> <para> Include Product Filter.</para> <para>Represents the attribte in schema: productSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.CountSubtotal"> <summary> <para> Include Count Subtotal.</para> <para>Represents the attribte in schema: countSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.ApplyStandardDeviationInSubtotal"> <summary> <para> Include StdDev Filter.</para> <para>Represents the attribte in schema: stdDevSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.ApplyStandardDeviationPInSubtotal"> <summary> <para> Include StdDevP Filter.</para> <para>Represents the attribte in schema: stdDevPSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.ApplyVarianceInSubtotal"> <summary> <para> Include Var Filter.</para> <para>Represents the attribte in schema: varSubtotal </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.PivotAreaReference.ApplyVariancePInSubtotal"> <summary> <para> Include VarP Filter.</para> <para>Represents the attribte in schema: varPSubtotal </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh"> <summary> <para>QueryTable Refresh Information.</para> <para>When the object is serialized out as xml, its qualified name is x:queryTableRefresh.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>QueryTableFields <x:queryTableFields></description></item> <item><description>QueryTableDeletedFields <x:queryTableDeletedFields></description></item> <item><description>SortState <x:sortState></description></item> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.#ctor"> <summary> Initializes a new instance of the QueryTableRefresh class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QueryTableRefresh class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QueryTableRefresh class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.#ctor(System.String)"> <summary> Initializes a new instance of the QueryTableRefresh class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.PreserveSortFilterLayout"> <summary> <para> Preserve Sort and Filter Layout.</para> <para>Represents the attribte in schema: preserveSortFilterLayout </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.FieldIdWrapped"> <summary> <para> Next Field Id Wrapped.</para> <para>Represents the attribte in schema: fieldIdWrapped </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.HeadersInLastRefresh"> <summary> <para> Headers In Last Refresh.</para> <para>Represents the attribte in schema: headersInLastRefresh </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.MinimumVersion"> <summary> <para> Minimum Refresh Version.</para> <para>Represents the attribte in schema: minimumVersion </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.NextId"> <summary> <para> Next field id.</para> <para>Represents the attribte in schema: nextId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.UnboundColumnsLeft"> <summary> <para> Columns Left.</para> <para>Represents the attribte in schema: unboundColumnsLeft </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.UnboundColumnsRight"> <summary> <para> Columns Right.</para> <para>Represents the attribte in schema: unboundColumnsRight </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.QueryTableFields"> <summary> <para> Query table fields.</para> <para>Represents the element tag in schema: x:queryTableFields </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.QueryTableDeletedFields"> <summary> <para> Deleted Fields.</para> <para>Represents the element tag in schema: x:queryTableDeletedFields </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.SortState"> <summary> <para> Sort State.</para> <para>Represents the element tag in schema: x:sortState </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableRefresh.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields"> <summary> <para>Query table fields.</para> <para>When the object is serialized out as xml, its qualified name is x:queryTableFields.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>QueryTableField <x:queryTableField></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.#ctor"> <summary> Initializes a new instance of the QueryTableFields class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QueryTableFields class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QueryTableFields class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.#ctor(System.String)"> <summary> Initializes a new instance of the QueryTableFields class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableFields.Count"> <summary> <para> Column Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields"> <summary> <para>Deleted Fields.</para> <para>When the object is serialized out as xml, its qualified name is x:queryTableDeletedFields.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>DeletedField <x:deletedField></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.#ctor"> <summary> Initializes a new instance of the QueryTableDeletedFields class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QueryTableDeletedFields class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QueryTableDeletedFields class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.#ctor(System.String)"> <summary> Initializes a new instance of the QueryTableDeletedFields class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableDeletedFields.Count"> <summary> <para> Deleted Fields Count.</para> <para>Represents the attribte in schema: count </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.DeletedField"> <summary> <para>Deleted Field.</para> <para>When the object is serialized out as xml, its qualified name is x:deletedField.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DeletedField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DeletedField.#ctor"> <summary> Initializes a new instance of the DeletedField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.DeletedField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DeletedField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DeletedField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.DeletedField.Name"> <summary> <para> Deleted Fields Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.QueryTableField"> <summary> <para>QueryTable Field.</para> <para>When the object is serialized out as xml, its qualified name is x:queryTableField.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>ExtensionList <x:extLst></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.#ctor"> <summary> Initializes a new instance of the QueryTableField class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the QueryTableField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the QueryTableField class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.#ctor(System.String)"> <summary> Initializes a new instance of the QueryTableField class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.Id"> <summary> <para> Field Id.</para> <para>Represents the attribte in schema: id </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.Name"> <summary> <para> Name.</para> <para>Represents the attribte in schema: name </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.DataBound"> <summary> <para> Data Bound Column.</para> <para>Represents the attribte in schema: dataBound </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.RowNumbers"> <summary> <para> Row Numbers.</para> <para>Represents the attribte in schema: rowNumbers </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.FillFormulas"> <summary> <para> Fill This Formula On Refresh.</para> <para>Represents the attribte in schema: fillFormulas </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.Clipped"> <summary> <para> Clipped Column.</para> <para>Represents the attribte in schema: clipped </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.TableColumnId"> <summary> <para> Table Column Id.</para> <para>Represents the attribte in schema: tableColumnId </para> </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.QueryTableField.ExtensionList"> <summary> <para> Future Feature Data Storage Area.</para> <para>Represents the element tag in schema: x:extLst </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem"> <summary> <para>String Item.</para> <para>When the object is serialized out as xml, its qualified name is x:si.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Text <x:t></description></item> <item><description>Run <x:r></description></item> <item><description>PhoneticRun <x:rPh></description></item> <item><description>PhoneticProperties <x:phoneticPr></description></item> </list> </remarks> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.RstType"> <summary> Defines the RstType class. </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Text <x:t></description></item> <item><description>Run <x:r></description></item> <item><description>PhoneticRun <x:rPh></description></item> <item><description>PhoneticProperties <x:phoneticPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RstType.#ctor"> <summary> Initializes a new instance of the RstType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RstType.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the RstType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RstType.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the RstType class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.RstType.#ctor(System.String)"> <summary> Initializes a new instance of the RstType class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.RstType.Text"> <summary> <para> Text.</para> <para>Represents the element tag in schema: x:t </para> </summary> <remark> xmlns:x = http://schemas.openxmlformats.org/spreadsheetml/2006/main </remark> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem.#ctor"> <summary> Initializes a new instance of the SharedStringItem class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the SharedStringItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the SharedStringItem class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem.#ctor(System.String)"> <summary> Initializes a new instance of the SharedStringItem class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.SharedStringItem.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.InlineString"> <summary> <para>Rich Text Inline.</para> <para>When the object is serialized out as xml, its qualified name is x:is.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Text <x:t></description></item> <item><description>Run <x:r></description></item> <item><description>PhoneticRun <x:rPh></description></item> <item><description>PhoneticProperties <x:phoneticPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.InlineString.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.InlineString.#ctor"> <summary> Initializes a new instance of the InlineString class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.InlineString.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the InlineString class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.InlineString.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the InlineString class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.InlineString.#ctor(System.String)"> <summary> Initializes a new instance of the InlineString class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.InlineString.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.InlineString.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.InlineString.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.CommentText"> <summary> <para>Comment Text.</para> <para>When the object is serialized out as xml, its qualified name is x:text.</para> </summary> <remarks> The following table lists the possible child types: <list type="bullet"> <item><description>Text <x:t></description></item> <item><description>Run <x:r></description></item> <item><description>PhoneticRun <x:rPh></description></item> <item><description>PhoneticProperties <x:phoneticPr></description></item> </list> </remarks> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentText.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentText.#ctor"> <summary> Initializes a new instance of the CommentText class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentText.#ctor(System.Collections.Generic.IEnumerable{DocumentFormat.OpenXml.OpenXmlElement})"> <summary> Initializes a new instance of the CommentText class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentText.#ctor(DocumentFormat.OpenXml.OpenXmlElement[])"> <summary> Initializes a new instance of the CommentText class with the specified child elements. </summary> <param name="childElements">Specifies the child elements.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentText.#ctor(System.String)"> <summary> Initializes a new instance of the CommentText class from outer XML. </summary> <param name="outerXml">Specifies the outer XML of the element.</param> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.CommentText.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CommentText.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.CommentText.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Bold"> <summary> <para>Bold.</para> <para>When the object is serialized out as xml, its qualified name is x:b.</para> </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.BooleanPropertyType"> <summary> Defines the BooleanPropertyType class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.BooleanPropertyType.#ctor"> <summary> Initializes a new instance of the BooleanPropertyType class. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.BooleanPropertyType.Val"> <summary> <para> Value.</para> <para>Represents the attribte in schema: val </para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Bold.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Bold.#ctor"> <summary> Initializes a new instance of the Bold class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Bold.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Bold.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Bold.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Italic"> <summary> <para>Italic.</para> <para>When the object is serialized out as xml, its qualified name is x:i.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Italic.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Italic.#ctor"> <summary> Initializes a new instance of the Italic class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Italic.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Italic.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Italic.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Strike"> <summary> <para>Strike Through.</para> <para>When the object is serialized out as xml, its qualified name is x:strike.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Strike.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Strike.#ctor"> <summary> Initializes a new instance of the Strike class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Strike.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Strike.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Strike.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Condense"> <summary> <para>Condense.</para> <para>When the object is serialized out as xml, its qualified name is x:condense.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Condense.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Condense.#ctor"> <summary> Initializes a new instance of the Condense class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Condense.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Condense.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Condense.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Extend"> <summary> <para>Extend.</para> <para>When the object is serialized out as xml, its qualified name is x:extend.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extend.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extend.#ctor"> <summary> Initializes a new instance of the Extend class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Extend.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Extend.LocalName"> <summary> Gets the local name of the element. </summary> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Extend.ElementTypeId"> <summary> Gets the type ID of the element. </summary> </member> <member name="T:DocumentFormat.OpenXml.Spreadsheet.Outline"> <summary> <para>Outline.</para> <para>When the object is serialized out as xml, its qualified name is x:outline.</para> </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Outline.IsInVersion(DocumentFormat.OpenXml.FileFormatVersions)"> <summary> Whether this element is available in a specific version of Office Application. </summary> <param name="version">The Office file format version.</param> <returns>Returns true if the element is defined in the specified version.</returns> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Outline.#ctor"> <summary> Initializes a new instance of the Outline class. </summary> </member> <member name="M:DocumentFormat.OpenXml.Spreadsheet.Outline.CloneNode(System.Boolean)"> <summary> Creates a duplicate of this node. </summary> <param name="deep">true to recursively clone the subtree under the specified node; false to clone only the node itself. </param> <returns>Returns the cloned node. </returns> </member> <member name="P:DocumentFormat.OpenXml.Spreadsheet.Outline.LocalName"> <summary>